Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Do the necessary planning (IPO) and write an algorithm in pseudo code for the following:


1 An unknown number of toddlers are taking part in a competition. 5 adjudicators will give each competitor a mark out of 10. These marks are added together to get a mark out of 100. Write a complete C++ program to do the following

 Enter the competitor’s number. ( -1 is entered to terminate the input).

 Enter 10 marks out of 10 for each competitor.

 Calculate the total mark.

 Compare it to the marks of previous competitors to obtain the highest mark.

 Enter the number of the following competitor.

 When all data have been processed, display the number of the competitor with the highest mark as well as the current competitor’s mark.


Write a C++ program that will read in, for 20 employees, their employee number and the number of days absent for the year. You must then determine and display the following:


1. The employee numbers of all the employees who were not absent at all during the year.

2. The average number of days of absence for the year, and

3. The employee number of the person with the most days absent.


Write an application that ask the user for a letter grade A, B, C, D, E, or Q to quit. When the user types the user Q the program must end. Display the following using the information on the table below. Use a switch statement for the selection. When the loop terminates display how many A, B, C, D, or E were entered.


Grade Message

A Excellent

B Very Good

C Good

D Fair

E Poor


Do the necessary planning (IPO) and write an algorithm in pseudo code for the following:


1 An unknown number of toddlers are taking part in a competition. 5 adjudicators will give each competitor a mark out of 10. These marks are added together to get a mark out of 100. Write a complete C++ program to do the following

 Enter the competitor’s number. (-1 is entered to terminate the input.)

 Enter 10 marks out of 10 for each competitor.

 Calculate the total mark.

 Compare it to the marks of previous competitors to obtain the highest mark.

 Enter the number of the following competitor.

 When all data have been processed, display the number of the competitor with the highest mark as well as the current competitor’s mark.


Do the necessary planning (IPO) and write an algorithm in pseudo code for the following


The user must enter a positive integer between 5 and 15. If this number is valid, the user must also choose between a triangle (T or t) and a square (S or s). Display suitable error messages if necessary; otherwise, the program must use an asterisk to draw a triangle or a square of the chosen size and display. Use a Select Case structure to make the decision. Display appropriate error messages where applicable.


  1. Write an algorithm that will accept the following for 100 students: The students’ name (studName) and 3 test marks (marks), as well as one exam mark (examMark). The program must calculate the final mark (finMark) for every student. The final mark comprises of 50% of the exam mark added to 50% of the average (agv) of the 3 tests.

Display the final mark for every student.


1.1 Mix the for loop with a do-while


Do the necessary planning (IPO) and write an algorithm in pseudo code for the following:


  1. Write an algorithm that will accept the following for 100 students: The students’ name (studName) and 3 test marks (marks), as well as one exam mark (examMark). The program must calculate the final mark (finMark) for every student. The final mark comprises of 50% of the exam mark added to 50% of the average (agv) of the 3 tests.

Display the final mark for every student.


1.1 Use a nested for loop to determine the answer.


Do the necessary planning (IPO) and write an algorithm in pseudo code for the following:


Write an algorithm that will accept the following for 100 students: The students’ name (studName) and 3 test marks (marks), as well as one exam mark (examMark). The program must calculate the final mark (finMark) for every student. The final mark comprises of 50% of the exam mark added to 50% of the average (agv) of the 3 tests.

Display the final mark for every student.

1. Use a simple for-loop to determine the answer.


Accessing Nested Lists


Write a program to create a list with the values at the given Indexes.


Sample Input 1

3

1  2

0 3

0 1

Sample Output 1

['hockey','grapes','banana']


Write an algorithm to allow users to enter a quantity of numbers until a negative number is entered. Then display the highest and lowest number entered.

  1. Use a do-loop-until to determine the answer.
LATEST TUTORIALS
APPROVED BY CLIENTS