Write a C++ instruction that declares and initializes a string variable name student name.
An ordinary colored printer can print 12 pages per minute. Make a program that will input number of pages, and compute the time to complete the print out. Consider the minutes and hour of your display. Your program will terminate if you input zero in the number of pages.
(minutes =no.pages/12)
Ex: Input pages: 720
Minutes = 60
Hour = 1
Write a function by using priority queue to merge two sorted arrays. The function will accept two integer
arrays and their sizes as arguments and then will merge them in ascending order and display the three
arrays.
Make use of stack data structure to reverse a string. The user will enter a string that may have several words and then print the string in reverse.
Write a C++ program to check for the balancing symbols in C++, the symbols can be /* */, [],
{}, and ().
Write a program that would print the information (nume, year of joining. salary, address) of three employees by creating a class named 'Employee
The output should be as follows:
Name Year of joining Address
Roma. 1994. 64C, Jaipur
Ramya. 2000. 68D-Udaipur
Teena. 1999. 26B-Kota
WAP to calculate and display the volume of sphere and cylinder
demonstrating the concept of function overloading
WAP to calculate and display the perimeter of triangle, rectangle and square
demonstrating the concept of function overloading
WAP to calculate and display the surface area of sphere and cylinder demonstrating the concept of function overloading
WAP to calculate and display the area of triangle, rectangle, square and
circle demonstrating the concept of function overloading.