what is data abstraction in C++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

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.

0 Answers  


Explain mutable storage class specifier.

0 Answers  


Tell me can a pure virtual function have an implementation?

0 Answers  


Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be

0 Answers  


Program to check whether a word is a sub-string or not of a string typed

0 Answers  






Why can templates only be implemented in the header file?

0 Answers  


What is difference between c++ and c ++ 14?

0 Answers  


What does it mean to declare a member function as static?

0 Answers  


What is a virtual destructor?

2 Answers  


How do you show the declaration of a virtual constructor?

0 Answers  


What is the type of 'this' pointer?

0 Answers  


What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what is the output for arr[2][1][0]?

6 Answers   HCL, Integra, IPMC, ORG,


Categories