what is data Abstraction? and give example
Answer Posted / soumitra
It is the process pf showing the essential features of
class by hiding the background details.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Tell me an example where stacks are useful?
What is encapsulation in c++?
an integer constant must have atleast one a) character b) digit c) decimal point
Differentiate between a constructor and a method in C++.
Explain differences between alloc() and free()?
Which operations are permitted on pointers?
How to demonstrate the use of a variable?
Why is c++ so fast?
What are the 2 main types of data structures?
Can we specify variable field width in a scanf() format string? If possible how?
Why do we use templates?
What is a tuple c++?
Define a nested class. Explain how it can be useful.
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
Tell me difference between constant pointer and pointer to a constant.