STL (140)
OOPS (873)
C++ General (2409) 1. Strong name 2. how to prevent a class from being inherited 3. delegates 4. default modifier for interface 5. default modifier for class 6. base class for exception 7. diff bet trigger and view in sql 8. how to exchange values from one page to another page 9. can multiple catch block ll be executed at same time 10. can u store different data types in an array & array list 11. when we ll use trigger 12. try,catch,finally usage
2 5012I hv a same function name,arguments in both base class and dervied class, but the return type is different. Can we call this as a function overloading? Explain?
3 6477WHAT IS THE ACTUAL DEFINATION OF OBJECT AND THE CLASS IN ONE SINGLE LINE WHICH THE INTERVIEWER WANT TO LISTEN.
11 16611sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
NIIT,
1 3614
What are namespaces in c++?
What do you mean by function and operator overloading in c++?
Can we use this pointer inside static member function?
What is the difference between a "copy constructor" and an "assignment operator" in C++?
What is array in c++ example?
What is the difference between set and map in c++?
What are the different types of stl containers?
What is c++ virtual inheritance?
What is polymorphism what is it for and how is it used?
Why struct is used in c++?
What are the 3 pillars of oop?
Explain the static member function.
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
Is it possible to write a c++ template to check for a function's existence?
What is class and object in oops?