What type of programming techniques does C++ provide that the C language does not?

What will be an ideal response?


C++ has the ability to write classes, use inheritance (also provide virtual functions, overload functions and operators, and all basic object-oriented language capabilities.)

Computer Science & Information Technology

You might also like to view...

When you want to read data from a text file, you create a file object using the ____________.

a. Stream Reader class b. Text Reader class c. Buffered Reader class d. Input Reader class

Computer Science & Information Technology

Many people contact their television service provider for a ________ to be able to record large videos for later playback

A) PSTN B) PBX C) VOD D) DVR

Computer Science & Information Technology

What structure is used for the file system for a SIM card?

a. Volatile b. Circular c. Hierarchical d. Linear

Computer Science & Information Technology

Suppose a loop should execute while x is less than the sum of two integers, a and b. The loop could be written as:while(x < a + b)// loop bodyAlthough this code fragment will run, it is not particularly efficient. In what way is it inefficient, and how could you improve the loop's performance?

What will be an ideal response?

Computer Science & Information Technology