BirlaSoft Technical Questions
Question :
What is the function of the modulus operator in most languages ?
Answer : a) Sets a system environmental value to either base 10, base 8 or base 16
b) Returns the remainder after dividing one number by another
c) Returns the first argument raised to the second argument power
d) Prints out the actual code written to standard output rather than executing the code
Question : class professor{}
class teacher: public virtual professor{};
class researcher: public virtual professor {}
class myprofessor :public teacher, public researcher {};
Referring to the sample code above ,if an object of class “myprofessor” were created ,how many instances of professor will it contain?
Answer : a) 0
b) 1
c) 2
d) 3
Question : Modern RDBMS perform the following the following function except ___________.
Answer : a) Force column values in one table to match any of the values in a column of another table
b) Automatically replicate data on another server
c) Automatically create new indexes based on query history
d) Prevent unauthorized users from accessing data at the first level
Question : Which is not the characteristic of a view ?
Answer : a) Consumes Disk space for data
b) Multiple tables
c) Multiple rows
d) Updateable
Question : RDBMS triggers are typically bound to a _____________and one or more _____________
Answer : a) Table, SQL statement types
b) SQL statement type, user
c) Column, rows
d) User, tables
Updated: 07/18/2005
|