what's the basic's in dot net
No Answer is Posted For this Question
Be the First to Post Answer
What is namespace?
what is different between oops and c++
Why multiple inheritance is not allowed?
What is destructor example?
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
The expansion of GNU
What is the main feature of oop?
What is virtual constructors/destructors?
create a class complex having real and imaginary part of a complex no. as a data member. overload the binary operators(+,- and *) to perform the operations on complex no. objects. overload binary operator using friend function.
2 Answers CTS, Delhi University,
What are the 3 pillars of oop?
Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.
What is virtual Function.