Answers were Sorted based on User's Feedback



what is data Abstraction? and give example..

Answer / tamilarasan

A data abstraction is a simplified view of an object that includes only features one is interested in while hides away the unnecessary details.
eg: creation of object from its class.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / kiribati

Abstraction is the process of capturing the essential or
distinguishing features of
something while suppressing or ignoring the detail.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / santosh kumar

Abstraction is one of the most powerful and vital features provided by object-oriented programming language. Modularity is very important in any programming language, it provides flexibility to users for using the programming language. This aspect is well achieved with high performance by the concept of abstraction. In object-oriented programming language the programmer can abstract both data and code when needed.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / mansi

In this we hide the complexity of data from being used,
only useful and authorized information is made visible to
the users.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / rohit shori

data abstraction
3 types:-

Physical level describes how a record (e.g., customer) is
stored.
Logical level: describes data stored in database, and the
relationships among the data.
type customer = record
name : string; street :
string; city : integer; end;
View level: application programs hide details of data
types. Views can also hide information (e.g., salary) for
security purposes.

Is This Answer Correct ?    3 Yes 2 No

what is data Abstraction? and give example..

Answer / sunny verma

abstraction means act of represeting essential features
without including background detail and explanation.
The classes uses the concept of data abstraction called
Abstract data Type(ADT)

Clases defines the list of abstract attribute may be
size,weight,cost and function to operate on these
attributes.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / lucky

Absraction is the process of hiding certain details of how
the data is stored and maintained, and representing
essential features :)

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / afjal ansari & shekhar ya

Abstraction is about reducing complexity and ignoring
unneccesary details.

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / deepak

data abstaction is process of hiding the datamambers of one
class by using private access spcifier from other class

Is This Answer Correct ?    1 Yes 0 No

what is data Abstraction? and give example..

Answer / prasenjit chatterjee

Abstraction means that just represents the essential
feature of some thing without including much details.
So the data abstraction means that does't define the
internal structure of the data, but allows difference
operations on it. Such data types are called abstract data
type or (ADT), like stack queues are the example of an
abstract data type

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More C++ General Interview Questions

How will you call C functions from C ++ and vice-versa?

0 Answers   Agilent, Tavant Technologies, Thomson Reuters, Verifone,


Can union be self referenced?

0 Answers  


What is an accessor in c++?

0 Answers  


write a program that reads in a file and counts the number of lines, words, and characters. Your program should ask the user to input a filename. Open the file and report an error if the file does not exist or cannot be opened for some other reason. Then read in the contents of the file and count the number of lines, words, and characters in the file. Also print additional information about the file, such as the longest and shortest words, and longest and shortest lines. For simplicity, we define a word to be one or more characters ending with white space (a space, tab, carriage return, etc.). Functions for checking the types of characters can be found in the ctype.h header file, so you want to include this header file in your program. For example, the sentence below could be all that is in a file. This sentence IT 104 is taught in C++. has 32 characters, one line, and six words. The shortest line is 32 characters. The longest line is 32 characters. The shortest word is 2 characters. The longest word is 6 characters

0 Answers  


Difference between overloaded functions and overridden functions

0 Answers  






How can you quickly find the number of elements stored in a static array? Why is it difficult to store linked list in an array?

0 Answers  


Define inline function

1 Answers  


How do I tokenize a string in c++?

0 Answers  


What are c++ storage classes?

0 Answers  


Floating point representation and output seems to be compiler dependent?

1 Answers  


What are abstract data types in c++?

0 Answers  


Explain about Garbage Collector?

0 Answers  


Categories