Answer Posted / raghul

IT IS A PROCESS OF SEPARATING ESSENTIAL AND NON-ESSENTIAL INFORMATION ABOUT A CLASS OR OBJECT.
A CLASS OR OBJECT MAY HAVE NUMBER OF INFORMATION ASSOCIATED WITH IT.
FOR DIFFERENT USERS DIFFERENT SET OF INFORMATION
EXAMPLE:- #INCLUDE <IOSTREAM>
USING NAMESPACE STD

INT MAIN()
{
COUT<<"HELLO C++"<<END1;
RETURN 0;
}

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is capacity in vector in c++?

551


What is format for defining a structure?

594


What is algorithm in c++ programming?

591


How do you master coding?

569


What are the rules for naming an identifier?

563






Will this c++ program execute or not?

607


What is the hardest coding language to learn?

607


What is pure virtual function?

633


There are 100 students in a class. The management keep information in two tables. Those two tables are given like Roll no Name Age 001 ABC 15 002 XYZ 14 and Roll No Subject Marks 001 Math 75 001 Physics 55 002 Math 68 001 Hindi 69 They want the information like this Roll No Name Hindi Physics Math Total 001 ABC 69 55 75 199 002 XYZ 68 74 84 226 And Roll No Suject Highest 001 Math 98 007 Physics 84 021 Hindi 74 All 275 All information is kept in structure in main memory. You have to find last two tables.

2535


What is the main purpose of overloading operators?

592


What is iterator in c++?

621


What are the 2 main types of data structures?

590


What is implicit pointer in c++?

604


What is data abstraction? How is it different from data encapsulation?

539


Define upcasting.

594