wht is ditch
No Answer is Posted For this Question
Be the First to Post Answer
What is destructor example?
why reinterpret cast is considered dangerous?
explain sub-type and sub class? atleast u have differ it into 4 points?
what is the difference between inter class and abstract class...?
Whats is abstraction in oops?
Why is static class not inherited?
What is the real time example of encapsulation?
What is OOPS and How it is different from Procedural Programming ?
23 Answers HP, Infosys, Thyrocare,
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
You attempt to query the data base with this command: SELECT name, salary FROM employee WHERE salary=(SELECT salary FROM employee WHERE last name='Wagner' OR dept no=233) Choose most appropriate option from the following: 1)Sub-queries are not allowed in the where clause. 2)a multiple row sub-query used with a single row comparison operator. 3)a single row query is used with a multiple row comparison operator.
difference between overloading and overridding
design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }