Write a C++ program that will accept an input for the array size. Store the user input and sort array elements in ascending order.
Sample Output:
Enter array size( Max:50 ) :: 8
Enter array elements ::
Enter arr[0] Element :: 4
Enter arr[1] Element :: 1
Enter arr[2] Element :: 5
Enter arr[3] Element :: 8
Enter arr[4] Element :: 0
Enter arr[5] Element :: 9
Enter arr[6] Element :: 4
Enter arr[7] Element :: 1
Stored Data Before Sorting In Array ::
4 1 5 8 0 9 4 1
Stored Data After Sorting In Array ::
0 1 1 4 4 5 8 9
A 4-stage pipeline has the stage delays as 150, 120, 160 and 140
nanoseconds respectively. Registers that are used between the stages have a
delay of 5 nanoseconds each.
Question: Assuming constant clock rate, calculate the total time taken to
process 1000 data items on this pipeline.
Suppose we introduce pipelining on this machine. Assume that when
introducing pipelining, the clock skew adds 5ns of overhead to each
execution stage.
i. What is the instruction latency on the pipelined machine?
ii. How much time does it take to execute 100 instructions?
Consider a nonpipelined machine with 6 execution stages of lengths 50 ns,
50 ns, 60 ns, 60 ns, 50 ns, and 50 ns.
i. Find the instruction latency on this machine.
ii. How much time does it take to execute 100 instructions?
Given a list of different right and left foot shoes, write a python code to return the exact number of shoe pairs which can be formed from the given list. Also, return how many number of shoes of which foot are required to form pairs with the unpaired shoes.
Input Format
Input_list = ['R','L','L','R','R',R','R,'L']
Constraints
.
Output Format
Paired: 3
Unpaired: 2
Required left Shoes
Sample Input 0
8
L R L L R L R L
Sample Output 0
Paired: 3
Unpaired: 2
Required right shoes
Sample Input 1
Write a program which takes a 9-digit number input from user, converts it into its reverse
and then display one of the following statements:
• Original number is x steps bigger (where x is the difference between the two)
• Reversed number is x steps bigger
• Both numbers are equal; hence it is a palindrome.
create class calculation with an abstract method area().Create Rectangle and Triangle subclasses of calculation and find area of rectangle and triangle.
COMPUTE GRADE PROGRAM
Create a function named StudeInfo that will accept the following values from the user:
StudentID, StudentName, Course, Age, PrelimGrade, MidtermGrade, FinalTermGrade.
Create a function named ComputeGrade that will compute Final Average which is computed as the sum of PrelimGrade, MidtermGrade and FinalTermGrade divided by 3.
Display the output with the following format: (sample output)
*************************************************************************************
Student ID : 00-00-01
Student Name : FERNAN W. AMMAQUI
____________________________________________________________________________________
PRELIM GRADE : 90.0
MIDTERM GRADE : 90.0
FINAL GRADE : 90.0
AVERAGE : 90.0
*************************************************************************************
Color the Student ID and Name values with green. Failing average will be colored with red. Otherwise, color it with blue.
Perfect squares In a range
COMPUTE GRADE PROGRAM
Create a function named StudeInfo that will accept the following values from the user:
StudentID, StudentName, Course, Age, PrelimGrade, MidtermGrade, FinalTermGrade.
Create a function named ComputeGrade that will compute Final Average which is computed as the sum of PrelimGrade, MidtermGrade and FinalTermGrade divided by 3.
Display the output with the following format: (sample output)
*************************************************************************************
Student ID : 00-00-01
Student Name : FERNAN W. AMMAQUI
____________________________________________________________________________________
PRELIM GRADE : 90.0
MIDTERM GRADE : 90.0
FINAL GRADE : 90.0
AVERAGE : 90.0
*************************************************************************************
Color the Student ID and Name values with green. Failing average will be colored with red. Otherwise, color it with blue.