Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (2 votes)
1K views2 pages

Flow of Control 2

This document contains 15 questions related to flow of control in C++ programming. The questions cover topics like writing programs to calculate sum of digits, check if a number is prime, calculate HCF, find maximum and minimum of user-entered numbers, calculate employee gross salary based on salary, print patterns using loops, use of break and continue statements, and conditional calculation of simple interest.

Uploaded by

Niti Arora
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (2 votes)
1K views2 pages

Flow of Control 2

This document contains 15 questions related to flow of control in C++ programming. The questions cover topics like writing programs to calculate sum of digits, check if a number is prime, calculate HCF, find maximum and minimum of user-entered numbers, calculate employee gross salary based on salary, print patterns using loops, use of break and continue statements, and conditional calculation of simple interest.

Uploaded by

Niti Arora
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

FLOW OF CONTROL

Class XI

Question 1 Write a program to sum of digits of given integer number.
Question 2 Write a program to check given number is prime or not.
Question 3 Write a program to calculate HCF of Two given number.
Question 4 Write a program to enter the numbers till the user wants and at the end it should
display the maximum and minimum number entered.
Question 5 In a company an employee is paid as under:
If his basic salary is less than Rs. 1500, then HRA = 10% of basic salary
and DA = 90% of basic salary.
If his salary is either equal to or above Rs. 1500, then HRA = Rs. 500
and DA = 98% of basic salary.
If the employee's salary is input by the user write a program to find his gross
salary.
Question 6
1
222
33333
4444444
555555555
Question 7 Write a program to compute sum of the following sum series. The user should
supply x and a positive integer n. We compute the sine of x using the series and
the computation should use all terms in the series up through the term involving
x
n

sum = x - x
3
/3! + x
5
/5! - x
7
/7! + x
9
/9! ........
Question 8 Write a program to compute sum of following series. The user should supply x
and a positive integer n. We compute the cosine of x using the series and the
computation should use all terms in the series up through the term involving x
n

sum = 1 - x
2
/2! + x
4
/4! - x
6
/6! .....
Question 9: Find the output
#include <iostream.h>
void main( )
{
int i = 0, x = 0;
do
{
if(i % 5 = = 0)
{ cout<<x;
x++;
}
++ i;
}while(i<10);
cout<<\n<<x; }
Question 10 How many times the following code will be executed
int i = 1 ;
i= i - 1 ;
while(i)
{
cout<<its a while loop;
i++ ; }
Question 11 identify the error(s) in the following code fragment
char ch; int v=0,o=0;
cout<<enter character;
while ((ch>=A && ch<=Z)||( ch>=a && ch<=z))
{
switch(ch) {
case a:
case e:
case i:
case o:
case u:
case U: ++v; break;
default : ++o;
}cout<<v;<< <<o; }
Question 12 Find syntax error(s) if any in following program ( Assume all header files are
present) 2
main<>
{ int c;
switch( c );
case 1.5: { cout<< India is great\n;
} break;
case 2: { cout<< hello\n;
} break;
} // end of main
} // end of switch
Question 13 Give the output of the following program segment:
for (int i=1;i<=5; i++)
{ for(int j=6-i ; j>=1; j--)
{
cout<<*;
}
cout<<endl;
}
Question 14 Explain Break and Continue statement in C++ with example.
Question 15 Write a c++ program to compute the simple interest on a given amount and
time. If the time is 2 years or more calculate it with 3% rate of interest and 5% otherwise.

You might also like