Friday, May 31, 2013

Computer Organization & Architecture CSE-209 (Suggestion)

Computer Organization & Architecture CSE-209 (Suggestion for Final Exam)
Exam Date: 02-June-2013, Sunday. Time: 7.00PM to 9.30PM

1. Winchester Disk Format
2. Magnetic Disk
3. Hamming Error Correcting Code
4. Booth's Algorithm
these topics are very important & will be given in the exam.

All topics Before MID are also needed for exam. Most of the Questions will be given from the MID syllabus.

Hope you will enjoy the exam.

Created by Shawon, Posted by Moni

Post Comment

Friday, May 24, 2013

Principle of Management GED-202 (Suggestion)


Principle of Management GED-202 (Suggestion for Final Exam)
Exam Date: 26-May-2013, Sunday. Time: 7.00PM to 9.30PM



Planning:
1. Definition of planning.
2. Nature of planning.
3. Types of planning.
4. Steps of planning.

International Business:
1. Nature and purpose of international business.
2. Different orientation (page: 58).
3. Five dimensions of behavior.

Introduction:
1. Definition of management.
2. Function of management.
3. Managerial skills and levels.
4. Scientific management.
5. Managerial roles.

Motivation:
1. Definition of Motivation.
2. Theory X and Y.
3. Maslow’s Theory.
4. Herzberg Theory.

Leadership:
1. Definition of leadership.
2. Charismatic leadership.
3. Style base leadership.
4. Managerial grid.
5. Fielder’s leadership.
6. Path goal leadership.

Created by Moni, Special thanks to Shawon                           For more updates: diucse27e.blogspot.com  

Post Comment

Thursday, May 16, 2013

Programs for C++ Final Exam.


Here are some programs given by Sir in the class and important for the Exam.

01.  Even and Odd finding program:
#include <iostream.h>

int main ()
{
for(int i=0; i<=100; i++)
{
if(i%2==0)
cout<<i<<" is even"<<endl;
else
cout<<i<<" is odd"<<endl;
}
return 0;
}

02.  Program for finding Factorial:
#include<iostream.h>

int main()
{
    int i=1, f=1, num;

    cout<<"Enter a number: ";
    cin>>num;

    while(i<=num)
        {
            f=f*i;
            i++;
        }

    cout<<endl<<"Factorial of "<<num<<" is: "<<f<<endl<<endl;
    return 0;
}

03.  Prime finding program:
#include<iostream.h>

void prime(int i)
{
for(int j=2; j<i; j++)
{
if(i%j==0)
break;
else if(i==j+1)
cout<<i<<endl;
}
}
void main()
{
for(int i=0; i<=100; i++)
{
prime(i);
}
}

Post Comment

Tuesday, May 14, 2013

Semester Final Exam Routine 2013

Dhaka International University
Department of CSE (Evening)
Semester Final Exam-2013
6th Semester (Batch-E27th)


Venue: 66, Green Road                                                                                   Time: 07.00-09.30PM
Date & Day
Course No
Course Name
19-05-2013
Sunday
CSE-207
Object Oriented Programming
26-05-2013
Sunday
GED-202
Principle of Management
30-05-2013
Thursday
MATH-203
Complex Variables and Transforms
02-06-2013
Sunday
CSE-209
Computer Organization & Architecture


Created by Moni                                                                               For more updates: diucse27e.blogspot.com    

Post Comment