|
INTERVIEW QUESTIONS
PROGRAMMING LANGUAGES
C++
DETAILS
Question: What is C++?
Answer: Released in 1985, C++ is an object-oriented programming language created by Bjarne Stroustrup. C++ maintains almost all aspects of the C language, while simplifying memory management and adding several features - including a new datatype known as a class (you will learn more about these later) - to allow object-oriented programming. C++ maintains the features of C which allowed for low-level memory access but also gives the programmer new tools to simplify memory management.
C++ used for:
C++ is a powerful general-purpose programming language. It can be used to create small programs or large applications. It can be used to make CGI scripts or console-only DOS programs. C++ allows you to create programs to do almost anything you need to do. The creator of C++, Bjarne Stroustrup, has put together a partial list of applications written in C++.
|
|
|
Category |
C++ Interview Questions & Answers -
Exam Mode /
Learning Mode
|
Rating |
(0.2) By 8014 users |
Added on |
7/16/2015 |
Views |
69999 |
Rate it! |
|
|
Question:
What is C++?
Answer:
Released in 1985, C++ is an object-oriented programming language created by Bjarne Stroustrup. C++ maintains almost all aspects of the C language, while simplifying memory management and adding several features - including a new datatype known as a class (you will learn more about these later) - to allow object-oriented programming. C++ maintains the features of C which allowed for low-level memory access but also gives the programmer new tools to simplify memory management.
C++ used for:
C++ is a powerful general-purpose programming language. It can be used to create small programs or large applications. It can be used to make CGI scripts or console-only DOS programs. C++ allows you to create programs to do almost anything you need to do. The creator of C++, Bjarne Stroustrup, has put together a partial list of applications written in C++. Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
- There should not be any Spelling Mistakes.
- There should not be any Gramatical Errors.
- Answers must not contain any bad words.
- Answers should not be the repeat of same answer, already approved.
- Answer should be complete in itself.
|
|
Related Questions |
View Answer |
|
What is the difference between declaration and definition?
|
View Answer
|
|
What are the advantages of inheritance?
|
View Answer
|
|
Tell how to check whether a linked list is circular.
|
View Answer
|
|
What is public, protected, private?
|
View Answer
|
|
Write a program that ask for user input from 5 to 9 then calculate the average
|
View Answer
|
|
What do you mean by inline function?
|
View Answer
|
|
What is the difference between class and structure?
|
View Answer
|
|
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. new() and malloc()
|
View Answer
|
|
What is a template?
|
View Answer
|
|
What is the difference between an ARRAY and a LIST?
|
View Answer
|
|
What do you mean by inheritance?
|
View Answer
|
|
What is an object?
|
View Answer
|
|
Explain term POLIMORPHISM and give an example using eg. SHAPE object: If I have a base class SHAPE, how would I define DRAW methods for two objects CIRCLE and SQUARE
|
View Answer
|
|
What is encapsulation?
|
View Answer
|
|
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function? virtual
|
View Answer
|
|
What is a COPY CONSTRUCTOR and when is it called?
|
View Answer
|
|
Describe PRIVATE, PROTECTED and PUBLIC – the differences and give examples.
|
View Answer
|
|
What is polymorphism? Explain with an example?
|
View Answer
|
|
What do you mean by pure virtual functions?
|
View Answer
|
|
What is the difference between an external iterator and an internal iterator? Describe an
|
View Answer
|