information like name and roll number and read that file and print the content on screen WAP using which you will able to create file student info in which you need to provide necessary.
Write a program to implement an AVL Tree having following functionalities.
Insert (): This function inserts a new node to an AVL tree. The node contains an integer type of data.
BF(): This function returns the balance factor of a given node.
LL(): This function performs LL rotation.
RR(): This function performs RR rotation.
LR(): This function performs LR rotation.
RL(): This function performs RL rotation.
Display (): This function displays inorder traversal sequence of the AVL tree.
After inserting a new node, if the resulting tree is not AVL then insert function calls appropriated rotation function
to make the tree an AV
DO THIS PROGRAM AND TAKE PHOTOS OF CODES AND OUTPUT':
1.
Create a Class and initialize attribute of the following:
Class name: Student
Attribute: First Name
Last Name
Sex
Age
2.
From the created class, create 5 objects, and display it using
pretty table.
Write a function that, when you call it, displays a message telling how many times it has
been called: “I have been called 3 times”, for instance. Write a main() program that calls
this function at least 10 times. Try implementing this function in two different ways.
First, use a global variable to store the count. Second, use a local static variable. Which
is more appropriate? Why can’t you use a local variable? (
Define a class called vehicle that will store two items of information about a vehicle: The fuel capacity and the fuel consumption in kilometers per litre and prototype of four functions a default constructor and a parameterized constructor that initializes the Taxi fuel capacity to 20 litres and Taxi consumption to 10 kpl , a destructor and a friend function that uses the values from the constructors to calculates the taxi range (the maximum distance it would travel if its fuel tank is full without refueling) NB. Show only the prototype of the function in the class
Create a user-defined function that will accept a 3 x 3 matrix (2D Array), set it as a parameter. Say mad [3][3]; feel free to use your initials.
Function name should InitialsMatrix (ie. MadMatrix)
The function should store 9 values to the array; it only accept values 0 and 1.
It should be outputted in a table format
0 1 1
1 1 1
1 0 0
Display the sum of values if it is an even value
Use a double for loop to implement this
Screen Layout
Input 0's and 1's to the mad [3][3] matrix
mad[0][0]:0
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:0
mad[0][1]:0
Output Table Format
0 1 1
1 1 1
1 0 1
Sum is 6
mad[0][0]:0
mad[0][1]:0
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:1
mad[0][1]:0
mad[0][1]:0
Output Table Format
0 0 1
1 1 1
1 0 0
(Sum is not displayed because it is an odd value)
Sample Run 1:
Enter 10 integers: 1 2 3 4 5 6 7 8 9 10
2 4 6 8 10
1 3 5 7 9
Sample Run 2:
Enter 10 grades: 78 79 80 81 82 83 67 66 65 90
The highest is 90.
The average is 77.10!
Sample Run 3:
Enter 10 integers: 1 2 3 4 5 6 7 8 9 10
Sum of even: 30
Sum of odd: 25
C++ code and sample runs
1. Write a program that accepts 10 integers saves them in an array, seperates the even. Integers from the odd ones by saving them in seperate arrays, and prints the even one on the first line followed by the odd ones on the second line.
Sample Run:
Enter 10 integers: 1 2 3 4 5 6 7 8 9 10
2 4 6 8 10
1 3 5 7 9
2. Write a program that accepts up to 10 grades (double) and determines the highest grade and their average.A
Sample Run
Enter 10 grades: 78 79 80 81 82 83 67 66 65 90
The highest is 90.
The average is 77.10!
3. Write a program that accepts 10 integers, saves them in an arrays, and prints the sums of even integers and odd integers
Sample Run:
Enter 10 integers: 1 2 3 4 5 6 7 8 9 10
Sum of even: 30
Sum of odd: 25
A bag of cookies holds 40 cookies. The calorie information on the bag claims that the bag contains 300 calories. Write a program that asks the user to input that how many cookies he or she actually ate and then report how many calories were consumed
Define a class called vehicle that will store two items of information about a vehicle: The fuel capacity and the fuel consumption in kilometers per litre and prototype of four functions a default constructor and a parameterized constructor that initializes the Taxi fuel capacity to 20 litres and Taxi consumption to 10 kpl , a destructor and a friend function that uses the values from the constructors to calculates the taxi range (the maximum distance it would travel if its fuel tank is full without refueling) NB. Show only the prototype of the function in the class