Tag: programming languages
Questions Related to programming languages
-
enumeration
-
iteration
-
culmination
-
pass through
-
for
-
while
-
do-while
-
no looping process checks the test condition at the end
-
the next iteration of the loop
-
the first statement after the loop
-
the statement following the continue statement
-
the return 0; statement
-
the outermost loop
-
the innermost loop
-
all loops are executed the same number of times
-
cannot be determined without knowing the size of the loops
-
i = i + i;
-
i = i - 1;
-
i = i + 1;
-
i --;
-
for
-
while
-
do-while
-
all looping processes require that the iterations be known
-
the increment should always be ++k
-
the variable must always be the letter i when using a for loop
-
there should be a semicolon at the end of the statement
-
the commas should be semicolons
-
the logical operator && cannot be used in a test condition
-
the while loop is an exit-condition loop
-
the test condition is always false
-
the test condition is always true
-
parentheses ( )
-
braces { }
-
brackets [ ]
-
arrows < >
-
the question mark should be an equal sign
-
the first semicolon should be a colon
-
there are too many variables in the statement
-
the conditional operator is only used with apstrings