Explain the start-up process of a computer clearly indicating the purpose of the POST, BIOS, and CMOS
With aid of a diagram, give a brief explanation on the type of busses available on modern computer system and the purpose of the North bridge and south bridge
Define an abstract class Human comprising the following members- name and age (with appropriate data types, a parameterized constructor and a pure virtual function printDetails().
The program also defines two concrete classes- Adult and Child inheriting publicly from the class Human.
Class Adult has a data member- voterID (with appropriate data type).
Class Child has a data member- schoolName (with appropriate data type).
Define parameterized constructors for both the classes Adult and Child. The constructors should also have following validation check for the age input.
Override printDetails() function for both the derived classes.
Define main() function to declare one object each for classes Adult and Child respectively and print the details of the objects.
Write a program in C++ that reads some text entered through the keyboard till the end of file (eof) character is entered. The words in the text are written to different text files as per the following conditions:
Sample input: Buy 1 Kg apples And 17 oranges immediately ^Z
Sample output:
fileV.txt: apples oranges immediately
fileD.txt: 1 17
fileRest.txt: Buy Kg And
Write a program in C++ that defines an m x n two dimensional array containing integer elements, where m and n represent the numbers of rows and columns respectively. The numbers of rows and columns should be defined as constants. The program should provide the following user-defined functions with appropriate parameters:
Write a program in C++ that provides a user-defined class NewFloat with a data member
floatData of type float. The class also comprises the following members:
Write a program whose inputs are three integers, and whose output is the smallest of the three values.
Write a program in C++ to display the cube of the lowest integer up to the number the user will enter. You may use any type of loop that suits to solve the problem.
Create a C++ program that allows user to enter a maximum number from 20-40. From the number entered by the user, print the even numbers using for loop, and do while loop for the odd numbers.
Display the cube of the numbers up to a given intiger using any types of loop the suits to solve problem.