Advertisements
Advertisements
Question
What is a selection statement? write its types?
Solution
The selection statement means the statements are executed depends – upon a condition. If a condition is true, a true block (a set of statements) is executed, otherwise, a false block is executed. This statement is also called a decision statement or selection statement because it helps in making decisions about which set of statements are to be executed.
Types:
- Two-way branching
- Multiway branching
APPEARS IN
RELATED QUESTIONS
The multi-way branch statement ______
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2000?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2003?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2010?
What is the output of the following code?
for (int i=2; i<=10 ; i+=2)
cout << i;
Convert the following if-else to a single conditional statement:
if (x >= 10)
a = m + 5;
else
a = m;
Rewrite the following code so that it is functional:
v = 5;
do;
{
total += v;
cout << total;
while v <= 10
Write a C++ program to print the multiplication table of a given number.
Write the syntax and purpose of the switch statement.
Write a short program to print the following series:
(a) 1 4 7 10...... 40