Computer Science, asked by himanshiparihar2000, 1 day ago

A new employee has joined a company. He is allocated projects during his probation. He is given a score for each project he finishes. Assume that the number of projects will not exceed 10. The project manager who is notified every project score, checks for the average of scores. If the average is above 80 he is allocated with the real project, else he is given more assignments. Write an algorithm for the same.

Answers

Answered by jyotirmayg97
8

Answer:

Start

int project = input("Enter no of project")

FOR(project<=10)

IF(avg>=80)

Allocated with real project

ELSE

Given more assignment

End

Explanation:

Answered by Jasleen0599
0

Algorithm

Start

int project = input(“Enter no of project”)

FOR(project<=10)

IF(avg>=80)

Allocated with real project

ELSE

Given more assignment

End

  • An algorithm is a process used to carry out a computation or solve a problem. In either hardware-based or software-based routines, algorithms function as a detailed sequence of instructions that carry out predetermined operations sequentially.
  • The formula for baking a cake, the strategy we employ to solve a long division puzzle, the act of doing laundry, and the operation of a search engine are all common instances of algorithms.
  • What Applications in Computer Science Use Algorithms? Every aspect of computer science employs algorithms. The field is supported by them. An algorithm is a collection of instructions given to a computer in computer science that enables it to perform any task, such as controlling a rocket or a calculator.

#SPJ2

Similar questions