what uses of c++ language?
Answers were Sorted based on User's Feedback
Answer / iravi
by using c++,we can increase security level and increase the access option by using class, access specifiers like private,protected and public,and this is object oriented programming system so its a real time programming system.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / bithal mohanty
First of all it is a object oriented language..So in real life world this language would provides a good platform to develop application as it supports many features like encapsulation which would bind our data and increases the security level next is here we are using inheritance which helps us to code re-usability so indirectly it reduces our work load to duplicate the code in larger programs in various sub-classes like this it has too many features which c don't have..So it is considered as super set of c.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saroj
To devlop a program it is easy to use
There are many features which is our program is safe for un
authorise acess
| Is This Answer Correct ? | 1 Yes | 6 No |
What is this interview room ? Is it a class or an object.
Example for 4 pillar of oops like, Inheritance,Poly,Abstraction,Encabsulation ?
Write a program to get the binary tree.
what type of question are asked in thoughtworks pair programming round ?
Write a program to find out the number of palindromes in a sentence.
Can you inherit a private class?
What is the example of polymorphism?
What does the keyword "static" mean?
diff between Virtual mathod and abstract method?
what is difference b/w object based and object oriented programming language?
18 Answers Chaitanya, College School Exams Tests, Educomp, IBM, Infosys, Telko,
#include <iostream> using namespace std; int main() { int a = 3; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][2]; }
Who invented oop?