C Programming Multiple Choice Single Answer
C Programming Multiple Choice Single Answer
C Programming Multiple Choice Single Answer
Question The simple logic for system specifications is provided by a languages named :-
Correct Answer OCL [ Object Constraint Language ]
Your Answer OOPL [ Object oriented Programming Language ]
Question The method for industrial development of software based on use-case-driven design is
Correct Answer OOSE [ Object Oriented Software Engineering ]
Your Answer OOD [ Object Oriented Design ]
Question When the method is chosen and performed on the data, the object status changes. The static object assumes :-
Correct Answer Dynamic state
Your Answer Dynamic state
Question In exponential form range of real constant the part that appears before 'e' is called
Correct Answer mantissa
Your Answer exponent and mantissa
Question Which of the following is a unformatted console I/O function to get a string input?
Correct Answer gets
Your Answer gets
Question Though the names of formal and actual arguments are similar, they are treated as different variables because they are :-
Correct Answer in different functions
Your Answer in different functions
Question Which of the following is a unformatted console I/O function to display a string?
Correct Answer puts
Your Answer puts
Question The collaboration diagram shows interaction between objects and sequence of activities denoted by :-
Correct Answer Members
Your Answer Methods
Question Which type of I/O functions are used to perform I/O operations on various ports?
Correct Answer Port
Your Answer Port
Question If 'return' statement is written without any value, which of the following is used for empty value?
Correct Answer nothing, only 'return;' has to be written
Your Answer nothing, only 'return;' has to be written
Question Two statements are written within if block without any braces, if condition is true it will :-
Correct Answer execute the first statement in the block and the 2nd will get executed irrespictive of the condition is true or false
Your Answer execute the first statement in the block and the 2nd will get executed irrespictive of the condition is true or false
Question When you pass an array as an argument to a function, what actually gets passed?
Correct Answer Address of the first element of the array [base address]
Your Answer Address of the first element of the array [base address]
Question An array 'num' of integer type for 3 rows and 5 columns should be declared as
Correct Answer int num[3][5]
Your Answer int num[3][5]
Question An _expression contains relational operators, assignement operators, and arithmatic operators. In the absence of
parentheses, they will be evaluated in which of the following order?
Correct Answer Arithmetic, relational, assignment
Your Answer Arithmetic, relational, assignment