C#.net Interview Question
A=10
B=5
C=A+B
Print C
The above will be given in a multiline textbox. You need to
parse the above input, store values for A,B&c. And you have
to display the value of C.
What is Iteration Hierarchy? What is what is Object behavioral concept?
difference between structure and union.
What are the advantanges of modularity
What is the full form of oops?
can inline function declare in private part of class?
#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]; }
monkey starts climbing up a tree 20ft tall,each hour ,it hops 3ft and slips back by 2ft .how much time it wil tak to reach top of the tree?
What does sksksk mean in text slang?
What is the types of inheritance?
Plese get me a perfect C++ program for railway/airway reservation with all details.
What is the output of the following code: int v() { int m=0; return m++; } int main() { cout<<v(); } 1) 1 2) 0 3) Code cannot compile
What is difference between new and malloc?