Is c++ still being used?



Is c++ still being used?..

Answer / Raju Paswan

Yes, C++ is still widely used for a variety of applications, including game development, system programming, and high-performance computing. It is also commonly used in financial trading systems due to its efficiency and flexibility.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Write about the access privileges in c++ and also mention about its default access level?

1 Answers  


why and when we can declar member fuction as a private in the class?

1 Answers  


What is general form of pure virtual function? Explain?

1 Answers  


Explain friend class?

1 Answers  


What is public, protected, private in c++?

1 Answers  


Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].

1 Answers  


Explain the concept of inheritance in C++.

3 Answers  


What is namespace & why it is used in c++?

1 Answers  


why is iostream::eof inside a loop condition considered wrong?

1 Answers  


If dog is a friend of boy, and terrier derives from dog, is terrier a friend of boy?

1 Answers  


Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.

1 Answers  


What is the use of object in c++?

1 Answers  


Categories