Answer Posted / dee
Multiplae inheritance is used when we want to reuse the
code from 2 ro 3 classes.
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
How would you use the functions randomize() and random()?
How do you remove an element from a set in c++?
What is a forward referencing and when should it be used?
What are the basic data types used in c++?
Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
What is difference between class and structure in c++?
How the endl and setw manipulator works?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
What is a local reference?
What are c++ redistributables?
What is nested class in c++?
What are associate containers?
what is data encapsulation in C++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.