programming languages Online Quiz - 27
Description: programming languages Online Quiz - 27 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: programming languages |
Default layout for frame
Check whether the syntax of the piece of code is correct: text.setBackGround(color.Yellow);
Code: FILE *f = fopen( fileName, "r" ); readData( f ); if( ???? ) { puts( "End of file was reached" ); } Which one of the following can replace the ???? in the code above to determine if the end of a file has been reached?
Which one of the following C operators is right associative?
char ** array [12][12][12]; Consider array, defined above. Which one of the following definitions and initializations of p is valid?
Code: char *ptr; char myString[] = "abcdefg"; ptr = myString; ptr += 5; What string does ptr point to in the sample code above?
time_t t; Which one of the following statements will properly initialize the variable t with the current time from the sample above
What number is equivalent to -4e3?
Which one of the following is not written in Delphi?
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.
Components can only be allocated on the -----
Property can be pass as a var parameters. Judge the statement.
What is the ordinal value of 'nodefault' storage specifier of a property?
TButton caption can be left aligned. Judge the comment.