[{"id":190351,"question":"A Matrix can be composed of ints, floats or doubles as their elements. Best way is to handle this _______________","choices":[{"text":"Write a separate class to handle each","value":"A"},{"text":"Use templates","value":"B"},{"text":"Use strings to store all types","value":"C"},{"text":"None of the given options","value":"D"},{"value":"E"}],"correctAnswer":2},{"id":190350,"question":"Structured Query Language is used for ______________","choices":[{"text":"Databases Management","value":"A"},{"text":"Networks","value":"B"},{"text":"Writing Operating System","value":"C"},{"text":"none of the given options","value":"D"},{"value":"E"}],"correctAnswer":1},{"id":190349,"question":"A template function must have","choices":[{"text":"One or more than one arguments","value":"A"},{"text":"Only one argument","value":"B"},{"text":"Zero arguments","value":"C"},{"text":"None of the given options","value":"D"},{"value":"E"}],"correctAnswer":1},{"id":190348,"question":"Every class contains _______________.","choices":[{"text":"Constructor","value":"A"},{"text":"Destructor","value":"B"},{"text":"Both a constructor and a destructor","value":"C"},{"text":"None of the given options","value":"D"},{"value":"E"}],"correctAnswer":3},{"id":190347,"question":"Which value is returned by the destructor of a class?","choices":[{"text":"A pointer to the class","value":"A"},{"text":"An object of the class","value":"B"},{"text":"A status code determining whether the class was destructed correctly","value":"C"},{"text":"Destructors do not return a value.","value":"D"},{"value":"E"}],"correctAnswer":4},{"id":190346,"question":"Classes defined inside other classes are called ________ classes.","choices":[{"text":"looped","value":"A"},{"text":"nested","value":"B"},{"text":"overloaded","value":"C"},{"text":"none of the given options","value":"D"},{"value":"E"}],"correctAnswer":2},{"id":190345,"question":"While calling function, the arguments are assigned to the parameters from _____________.","choices":[{"text":"left to right","value":"A"},{"text":"right to left","value":"B"},{"text":"no specific order is followed","value":"C"},{"text":"none of the given options","value":"D"},{"value":"E"}],"correctAnswer":1},{"id":190344,"question":"The first parameter of operator function for &lt;&lt; operator,","choices":[{"text":"Must be passed by value","value":"A"},{"text":"Must be passed by reference","value":"B"},{"text":"Can be passed by value or reference","value":"C"},{"text":"Must be object of class","value":"D"},{"value":"E"}],"correctAnswer":2},{"id":190343,"question":"What will be the correct syntax to declare two-dimensional array of float data type?","choices":[{"text":"float arr{2}{2} ;","value":"A"},{"text":"float arr[2][2] ;","value":"B"},{"text":"float arr[2,2] ;","value":"C"},{"text":"float[2][2] arr ;","value":"D"},{"value":"E"}],"correctAnswer":2},{"id":190342,"question":"Consider the following code segment. What will be the output of the following program? int func(int) ; int num = 10 ; int main(){ int num ; num = 5 ; cout &lt;&lt; num ; cout &lt;&lt; func(num) ; } int func(int x){ return num ; }","choices":[{"text":"5, 5","value":"A"},{"text":"10, 5","value":"B"},{"text":"5, 10","value":"C"},{"text":"10, 10","value":"D"},{"value":"E"}],"correctAnswer":3}]