Advertisements
Advertisements
Question
Compare an if and a ? : operator.
Solution
The if statement evaluates a condition, if the condition is true then a true-block is executed, otherwise false-block will be executed! Block may consist of one or more statements. The conditional operator (or Ternary operator). is an alternative for the ‘if-else statement’. Here if the condition is true one statement otherwise another statement will be executed.
APPEARS IN
RELATED QUESTIONS
What is the alternate name of the null statement?
In C++, the group of statements should be enclosed within: ______
Identify the odd one from the keywords of jump statements?
What are a null statement and compound statement?
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
Write a program to find the LCM and GCD of two numbers.
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn