Latest News

Kinds Of Function ( Reflexive, Symmetric , Transitive Antisymmetric ) By Ishrat Hayat MalikKinds Of Function ( Reflexive, Symmetric , Transitive Antisymmetric ) By Ishrat Hayat Malik

Kinds Of Function ( Reflexive, Symmetric , Transitive Antisymmetric ) By Ishrat Hayat Malik Kinds Of Function In Discrete Structure 1) Reflexive2) Symmetric3) Transitive4) Anti-Symmetric • Reflexive: The relation R on {1,2,3} given by R = {(1,1), (2,2), (2,3), (3,3)} is reflexive. (Allloops are pre…

Read more »
27Apr2017

How to print the leap years of 20th centuries in for Loop c++ By Munavar AhmadHow to print the leap years of 20th centuries in for Loop c++ By Munavar Ahmad

How to print the leap years of 20th centuries in for Loop c++ By Munavar Ahmad #include using namespace std; int main() { int i; for(i=1901;i { if(i%4==0) cout } return 0; } …

Read more »
23Apr2017

How to print the sum of a Number of 4 digit  for loop c++ By Munavar AhmadHow to print the sum of a Number of 4 digit for loop c++ By Munavar Ahmad

How to print the sum of a Number of 4 digit  for loop c++ By Munavar Ahmad #include using namespace std; int main() { int num,a,b,c,d,e,f,sum; cout cin>>num; a=num%10; b=num/10; c=b%10; d=b/10; e=d%10; f=d/10; sum=a+c+e+f; cout return 0; } …

Read more »
23Apr2017

How to print the series 1 3  5 9 17 33 For Loop C++ By Manavar AhmadHow to print the series 1 3 5 9 17 33 For Loop C++ By Manavar Ahmad

How to print the series 1 3  5 9 17 33 For Loop C++ By Manavar Ahmad #include using namespace std; int main() { int i; for(i=3;i { cout } return 0; } …

Read more »
23Apr2017

How to print 1 3 6 10 15 21 in c++ By Sir Munavar AhmadHow to print 1 3 6 10 15 21 in c++ By Sir Munavar Ahmad

How to print 1 3 6 10 15 21 in c++ By Sir Munavar Ahmad #include using namespace std; int main() { int i,inc; inc=2; for(i=1;i { cout } return 0; } …

Read more »
23Apr2017

Good Listening and Bad Listening & Purpose Of Listening & Pitfalls Of Listening (Bussiness Communication) Mam NajibaGood Listening and Bad Listening & Purpose Of Listening & Pitfalls Of Listening (Bussiness Communication) Mam Najiba

Purpose Of Listening (Bussiness Communication) Mam Najiba Listening is an important aspect of business communication. It stands third after writing and speaking. A business communicator has to listen to various customer, employees, officer, suppliers, financiers etc. Obviously, it is an unavoidable…

Read more »
21Apr2017

Structure Report (Technical and Bussiness Writing) Mam NajibaStructure Report (Technical and Bussiness Writing) Mam Najiba

Structure Report ( Bussiness Writing) Mam Najiba 1) Title Page → Subject matter 2) Acknowlegdement → who help you receiving and collecting Data 3) Content → Main section with page number Number 4) Abstruct Summay → main task used 5) Introduction → Object clear define outline 6) Methedology → what F…

Read more »
20Apr2017

Induction In Discrete Structure By Ishrat Hayat MalikInduction In Discrete Structure By Ishrat Hayat Malik

Induction In Discrete Structure By (Ishrat Hayat Malik) Define:  Induction is a mathematical method which is used to show a statement, a system or a theorem is real for each natural number. The method entails two steps to prove a statement, as mentioned beneath − Example Problem 1 3n−13n−1 is a mul…

Read more »
15Apr2017

Program No 9 C++ ( Sir Munawar Ahmed )Program No 9 C++ ( Sir Munawar Ahmed )

The policy followed via a employer to system purchaser orders is given through the following rules: (a) If a client order is much less than or equal to that in stock and has savings is OK, grant has  equirement. (b) If has credit score is now not OK do now not supply. Send him intimation. (c) If ha…

Read more »
09Apr2017

Program No 8 C++ ( Sir Munawar Ahmed )Program No 8 C++ ( Sir Munawar Ahmed )

A university has the following guidelines for a scholar to qualify for a diploma with A as the principal subject and B as the subsidiary subject: (a) He have to get 55 percentage or more in A and forty five percentage or more in B. (b) If he gets than fifty five percent in A he need to get fifty fi…

Read more »
09Apr2017

Program No 7 C++ ( Sir Munawar Ahmed )Program No 7 C++ ( Sir Munawar Ahmed )

In a company, employee effectivity is decided on the basis of the time required for a worker to complete a specific job. If the time taken by way of the employee is between 2 – three hours, then the worker is said to be noticeably efficient. If the time required by the worker is between 3 – 4 hours…

Read more »
09Apr2017

Program No 6 C++ ( Sir Munawar Ahmed )Program No 6 C++ ( Sir Munawar Ahmed )

If the three facets of a triangle are entered via the keyboard, write a program to test whether the triangle is valid or not. The triangle is legitimate if the sum of two aspects is greater than the largest of the three sides. If the three facets of a triangle are entered via the keyboard, write a …

Read more »
09Apr2017

Program No 5 C++ ( Sir Munawar Ahmed )Program No 5 C++ ( Sir Munawar Ahmed )

A library fees a pleasant for each and every e book again late. For first 5 days the first-rate is 50 paise, for 6-10 days high-quality is one rupee and above 10 days fantastic is 5 rupees. If you return the e book after 30 days your membership will be cancelled. Write a application to be given the…

Read more »
09Apr2017

Program No 4 C++ ( Sir Munawar Ahmed )Program No 4 C++ ( Sir Munawar Ahmed )

four A positive grade of metal is graded in accordance to the following conditions: (i) Hardness must be increased than 50 (ii) Carbon content material ought to be much less than 0.7 (iii) Tensile energy must be larger than 5600 The grades are as follows: Grade is 10 if all three conditions are met…

Read more »
02Apr2017

Program No 3 C++ ( Sir Munawar Ahmed ) Program No 3 C++ ( Sir Munawar Ahmed )

An Insurance corporation follows following policies to calculate premium. (1) If a person’s health is remarkable and the individual is between 25 and 35 years of age and lives in a metropolis and is a male then the premium is Rs. four per thousand and his policy quantity cannot exceed Rs. 2 lakhs. …

Read more »
02Apr2017

Program No 2 C++ (Sir Munawar Ahmed) Program No 2 C++ (Sir Munawar Ahmed)

.Any character is entered via the keyboard, write a program to decide whether or not the character entered is a capital letter, a small case letter, a digit or a exclusive symbol. Please seek advice from ASCII Chart. #include using namespace std; int main () { char ch; cout cin>>ch; if (ch>=65 …

Read more »
02Apr2017

Program No 1 C++ ( Sir Munawar Ahmed ) Program No 1 C++ ( Sir Munawar Ahmed )

Any year is entered through the keyboard, write a program to determine whether the year is leap or not. Use the logical operators && and ||. #include using namespace std; int main() { int year; cout << "Enter year: " << endl; cin >> year; if(year % 4 == 0 && year % 2 == 0) { cout << "Leap y…

Read more »
01Apr2017
 
Top