programming languages Online Quiz - 27
Description: programming languages Online Quiz - 27 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Attempted
0/20
Correct 0
Score 0
‹
›
Default layout for frame
Check whether the syntax of the piece of code is correct: text.setBackGround(color.Yellow);
Code: #include int i; void increment( int i ) { i++; } int main() { for( i = 0; i < 10; increment( i ) ) { } printf("i=%d\n", i); return 0; } What will happen when the program above is compiled and executed?
int z,x=5,y=-10,a=4,b=2; z = x++ - --y * b / a; What number will z in the sample code above contain?
Find out the odd one.
Which compiler directive controls whether the reserved word 'string' represents a short string or a long string?
Ultimate base class of all Objects and Components.
Property can be pass as a var parameters. Judge the statement.
TButton caption can be left aligned. Judge the comment.