Question
Select the option that is related to the third
letter-cluster in the same way as the second letter-cluster is related to the first letter cluster. QLWE: TIZB :: OLHN: ?Solution
The pattern followed here is: The 1st and 3rd alphabets are replaced by the 3rd succeeding letters and the 2nd and 4th alphabets are replaced by the 3rd preceding letters as per the English Alphabetical series. 'QLWE : TIZB' β Q + 3 = T, L - 3 = I, W + 3 = Z, E - 3 = B Similarly 'OLHN' β O + 3 = R, L - 3 = I, H + 3 = K, N - 3 = K
Which of the following is the correct definition of 'polymorphism' in Object-Oriented Programming?
Which SQL keyword is used to sort the result set?
Which of the following prevents inheritance in C++?
Which of the following is used to eliminate redundancy and anomalies in a database?
Which OOP principle allows a single interface to represent different underlying forms or data types?
The concept of "data hiding" is primarily achieved through which OOP principle?
Which of the following correctly describes the concept of 'encapsulation' in OOP?
A primary key in a table:
The result of a Cartesian product of two relations R and S will have:
In C++, if a base class has a virtual function, and a derived class overrides that function, which mechanism ensures that the correct derived class func...