Saturday, 30 May 2015
Thursday, 28 May 2015
Date Sheet of Finals
Date sheet of Final Examination BSCS - II
09 06 2015 Tuesday PROBABILITY AND STATISTIC 2:30 4:30
11 06 2015 Thursday Tech & Report Writing 10:00 -12:00
15 06 2015 Monday Discrete Structure. 2:30 - 4:30
16 06 2015. Tuesday Multi Variate Calculus. 10:00 - 12:00
17 06-2015. Wesnesday OOP. 2:30 - 4:30
Saturday, 23 May 2015
Lec 9 and 10 of OOP
Lecture can be downloaded by downloading following hyperlink :
Definitions - Lec 9
Programming Task Lec 9
Lec 10 - Object Classes
Lec 10 - Pointers
NOTE : OOP Class on 30th May, 2015 will be from 9:00 am to 03:30 pm
Definitions - Lec 9
Programming Task Lec 9
Lec 10 - Object Classes
Lec 10 - Pointers
NOTE : OOP Class on 30th May, 2015 will be from 9:00 am to 03:30 pm
Tuesday, 19 May 2015
Lectures of OOP
Following lecture can be downloaded by clicking on Hyperlinks Below:
Lecture 6 OOP
Lecture 7 OOP
Lecture 7 Structures
Lecture 8 OOP
Lecture 8 Functions
Lecture 8 Tasks
Lecture 6 OOP
Lecture 7 OOP
Lecture 7 Structures
Lecture 8 OOP
Lecture 8 Functions
Lecture 8 Tasks
English Graded Assignment # 3
Q#1 : Define Bad News . Explain Direct and Indirect Plan?
Q#2 : What is AIDA in persuasive message ? Explain With Examples.
Q#3 : Define Informational Memorandum reports with suitable examples?
Q#4: Explain letter reports - Informational and Analytical
Saturday, 16 May 2015
OOP Lecture 16th May 2015
Program 1 :
#include <iostream>
using namespace std;
int max(int, int); // Function Decleration
int main()
{
int num1, num2, answer;
int c;
do
{
cout << "Enter the First number :";
cin >> num1;
cout << "Enter the second number :";
cin >> num2;
answer = max(num1, num2); // Function Call
cout << "The Answer is =" << answer << endl;
cout << "Do You want to Continue ? (1/0) :";
cin >> c;
} while (c == 1);
return 0;
}
int max(int num1, int num2) // Function Defination
{
int result;
if (num1 > num2)
result = num1;
else
result = num2;
return result;
}
Program 2:
#include<iostream>
using namespace std;
struct height
{
int feet, inches;
};
int main()
{
height ff_1;
height fi_1;
height ff_2;
height fi_2;
height ft;
height it;
cout << "Enter the Measurments of Floor 1 in ft :" << endl;
cin >> ff_1.feet;
cout << "Enter the Measurments of Floor 1 in inches :" << endl;
cin >> fi_1.inches;
cout << "Enter the Measurments of Floor 2 in ft :" << endl;
cin >> ff_2.feet;
cout << "Enter the Measurments of Floor 2 in inches :" << endl;
cin >> fi_2.inches;
ft.feet = ff_1.feet + ff_2.feet;
it.inches = fi_1.inches + fi_2.inches;
if (it.inches >= 12)
{
ft.feet++;
it.inches -= 12;
}
cout << "Height of Both floors is :" << ft.feet << "`" << "-" << it.inches << "``" <<endl;
getchar();
return 0;
}
#include <iostream>
using namespace std;
int max(int, int); // Function Decleration
int main()
{
int num1, num2, answer;
int c;
do
{
cout << "Enter the First number :";
cin >> num1;
cout << "Enter the second number :";
cin >> num2;
answer = max(num1, num2); // Function Call
cout << "The Answer is =" << answer << endl;
cout << "Do You want to Continue ? (1/0) :";
cin >> c;
} while (c == 1);
return 0;
}
int max(int num1, int num2) // Function Defination
{
int result;
if (num1 > num2)
result = num1;
else
result = num2;
return result;
}
Program 2:
#include<iostream>
using namespace std;
struct height
{
int feet, inches;
};
int main()
{
height ff_1;
height fi_1;
height ff_2;
height fi_2;
height ft;
height it;
cout << "Enter the Measurments of Floor 1 in ft :" << endl;
cin >> ff_1.feet;
cout << "Enter the Measurments of Floor 1 in inches :" << endl;
cin >> fi_1.inches;
cout << "Enter the Measurments of Floor 2 in ft :" << endl;
cin >> ff_2.feet;
cout << "Enter the Measurments of Floor 2 in inches :" << endl;
cin >> fi_2.inches;
ft.feet = ff_1.feet + ff_2.feet;
it.inches = fi_1.inches + fi_2.inches;
if (it.inches >= 12)
{
ft.feet++;
it.inches -= 12;
}
cout << "Height of Both floors is :" << ft.feet << "`" << "-" << it.inches << "``" <<endl;
getchar();
return 0;
}
Subscribe to:
Posts (Atom)