-
Classes
Why should you generally pass an object of the class to a friend function as a reference parameter?Choose one answer. a. if the friend function changes the values of the data member(s) b. if the friend function will not change the values of the data member(s) c. It is more efficient to pass the object by reference. d. A and B e. A and C
-
What is out put of C++ code?
cclass base
{
public:
virtual void display(int i = 10)
{
cout -
Inheritance in C++
While doing inheritance in C++, one thing that is not inherited is what?
-
Static and friend function in a class
Use of static and friend function in a class
-
C++ Interface
Is it possible to create an interface in C++? If Yes, how?
-
Static Polymorphism
What is Static Polymorphism? Give its syntax and simple example.
-
-
C++ conversion program
How can I write a program that convert a given number of millimeters into the equivalent length in meters and meters into the equivalent length in millimeters?Also draw flowchart,algorithm,output.
Write c++ program that read 10 numbers
Write c++ program that read 10 numbers using while statement and print their sum, average, maximum and minimum ?
Write c++ program that read 10 numbers
1-write c++ program that read 10 numbers and print their sum, average, maximum, and minimum.
2-write a program that finds all number, dividable by 3 or 4 ranges from 1 to n .
3- write a program to calculate n! where n! =n * (n-1) * (n-2) * ...*(2) * (1).
Private Members
How can we access private members of classs?
Binary
Write a program that continues to ask the user to enter any decimal number and calculate it’s binary,octal and hexadecimal equivalent.
Write a program that calculates and prints the bill ?
write a program that calculates and prints the bill for Viti Telephone Company. The company offers two types of services: regular and premium: its rate very depending on the type of service.
The rates are computed as follows:
Regular Service
$10.00 plus first 50 minutes are free.
Charges for over 50 minutes are $0.20 per minute
Premium ServiceC++ without Header files
How we can run our c++ program without header files?
What is virtual constructors/destructors?
Virtual destructors: If an object (with a non-virtual destructor) is destroyed explicitly by applying the delete operator to a base-class pointer to the object, the base-class destructor function (matching the pointer type) is called on the object. There is a simple solution to this problem – declare a virtual base-class destructor. This makes all derived-class destructors virtual even...
What is public, protected, private?
Public, protected and private are three access specifiers in C++. 1. Public data members and member functions are accessible outside the class.2. Protected data members and member functions are only available to derived classes.3. Private data members and member functions can’t be accessed outside the class. However there is an exception can be using friend classes.
C++ Program to output the sum of positive numbers
WAP to output the sum of positive numbers, sum of negative numbers, sum of even numbers,
sum of odd numbers from a list of numbers entered by the user. The list terminates when the
number entered is zero.
Ans