1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Debora [2.8K]
3 years ago
8

Grading on the curve is a method of grading that is based on the belief that letter grades for any given class should be distrib

uted along a bell curve. Typically, after a test is marked, the average score becomes an "average" grade, possibly a C- or B . Scores falling above and below this average are graded accordingly. While this method of grading has both proponents and opponents, we are going tp (pretend to) apply this form of marking to a set of assignments. You will receive a set of integer scores for a particular assignment. As grades are determined by where they lie on the bell curve, we are interested in finding the minimum grade needed to be in the top X % of marks. For example, if we grade on the bell curve, the top 20% of these marks will receive the grade 'A'. You are to determine the minimum grade required for a student to be in the top X % on the assignment. Write the body of the program.
Computers and Technology
1 answer:
maks197457 [2]3 years ago
6 0

Answer:

A=input("Enter Number of Marks:")

b=[]

sum=0

i=0

for i in range(0,int(A)):

   b.append(input("Enter Marks"))

   sum+=int(b[i])

percentage1= (sum/int(A))*100

if percentage1>=20:

   print("Grade A")

elif percentage1<=30 & percentage1>=20:

   print("Grade B")

else:

   print("Grade C")

Explanation:

The above program is in Python. And we are using here a dynamic list. And we are storing A marks in it. And then we are finding its average, and finally assigning the Grade as mentioned.

You might be interested in
Nina's grades could be better. She gets about five hours of sleep every weeknight and ten hours per night on weekends. How much
aliya0001 [1]

Answer:

a research paper

Explanation:

8 0
3 years ago
Read 2 more answers
Will mark brainliest! What does this code do? What kind of code is this called?
gavmur [86]

Answer:

lol u can barly call this a code

Explanation:

its just a type error code i think

3 0
3 years ago
A(n) _____ is a combination of a transmitter and a receiver in a single package that may share some circuits. modulator oscillat
erma4kov [3.2K]
The combination of a transmitter and a receiver in a single cell package is a transceiver 
4 0
3 years ago
What is one example of an emerging class of software?
olchik [2.2K]
. "Push" model web browsers
7 0
3 years ago
Read 2 more answers
This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by
kompoz [17]

Answer:

The modified program in Java is as follows:

import java.util.*;

public class Main{

public static void main(String[] args) {

    Scanner input = new Scanner(System.in);

 int arrowHeadWidth, arrowBaseWidth, arrowBaseHeight;

 System.out.print("Head Width: "); arrowHeadWidth = input.nextInt();

 System.out.print("Base Width: "); arrowBaseWidth = input.nextInt();

 System.out.print("Base Height: "); arrowBaseHeight = input.nextInt();

 while (arrowHeadWidth <= arrowBaseWidth) {

       System.out.print("Head Width: "); arrowHeadWidth = input.nextInt();

 System.out.print("Base Width: "); arrowBaseWidth = input.nextInt();      }

 for(int i = 0; i<arrowBaseHeight; i++){

     for(int j = 0; j<arrowBaseWidth;j++){

         System.out.print("*");        }

         System.out.println();    }

 for(int i = arrowHeadWidth; i>0;i--){

     for(int j = 0; j<i;j++){

         System.out.print("*");        }

         System.out.println();    }

}

}

Explanation:

This declares the arrow dimensions

 int arrowHeadWidth, arrowBaseWidth, arrowBaseHeight;

This get input for the head width

 System.out.print("Head Width: "); arrowHeadWidth = input.nextInt();

This get input for the base width

 System.out.print("Base Width: "); arrowBaseWidth = input.nextInt();

This get input for the base height

 System.out.print("Base Height: "); arrowBaseHeight = input.nextInt();

This loop is repeated until the head width is greater than the base width

<em>  while (arrowHeadWidth <= arrowBaseWidth) {</em>

<em>        System.out.print("Head Width: "); arrowHeadWidth = input.nextInt();</em>

<em>  System.out.print("Base Width: "); arrowBaseWidth = input.nextInt();      }</em>

This iterates through the base height

 for(int i = 0; i<arrowBaseHeight; i++){

This iterates through the base width

     for(int j = 0; j<arrowBaseWidth;j++){

This fills the base

         System.out.print("*");        }

This prints a new line

         System.out.println();    }

These iterate through the arrow head

<em>  for(int i = arrowHeadWidth; i>0;i--){</em>

<em>      for(int j = 0; j<i;j++){</em>

This fills the arrow head

         System.out.print("*");        }

This prints a new line

         System.out.println();    }

5 0
3 years ago
Other questions:
  • Manufacturing technology examples
    8·1 answer
  • Which of the following processes should angel use to merge cells a1:d4 to create a title
    15·1 answer
  • For which product would the producer keep a high profit margin and offer after-sales service?
    6·1 answer
  • What is the value of the variable index after the Python code below is executed? word = 'bAnana' index = word.find('a')
    10·1 answer
  • In remote areas,your gps device may lose reception. its good idea to have a
    13·1 answer
  • Describing the One-to-Many Relationship
    13·2 answers
  • Describe an example of a very poorly implemented database that you've encountered (or read about) that illustrates the potential
    12·1 answer
  • What are the examples of computer software​
    8·2 answers
  • In 2008, researchers at Princeton University demonstrated techniques to retrieve RAM contents after the computer had been powere
    8·1 answer
  • A computer-based information system that keeps track of the transactions needed to conduct business is a(n) ________ system.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!