answer.
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
Snezhnost [94]
2 years ago
6

Write a program that does the following: 1. Uses a menu system 2. Creates an array with 25 rows and an unknow number of columns

3. You can assume that the row index represents one individual student 4. Each column represents an exam score for that individual student (the number of exams will vary by student) 5. Enter at least 10 students along with a varying number of exam scores for each different student. 6. Display the Average for all exams by each Student Id 7. Display the Average for each exam by Exam Number 8. Display the class average 9. Everything needs to be a written in Static Method 10. Do not forget your design tool The menu system will have an option to input grades for the next student. Once pressed the user will then enter how many exams that student has taken. The program will then ask the user to enter each of those exam scores. Menu will have an option to display the exam average by student. Menu will have an option to display the exam average by exam. Menu will have an option to display the current class average for all exams.
Computers and Technology
1 answer:
Vilka [71]2 years ago
8 0

Answer:

import java.util.Scanner;

/**

*

* @author pc

*/

public class JaggedARrayAssignment {

private static int students[][] = new int[25][];//create a jagged array having 25 rows and unknown columns

public static void menu()

{

int index=0;//intitalize number of students to zero intially

Scanner sc=new Scanner(System.in);// create scanner for taking input from user

int choice;//choice

int maxExams=0;//maximum number of exams taken by any student

do

{

//print the menu

System.out.println("1-Input grades for next student");

System.out.println("2-Display the exam Average by student");

System.out.println("3-Display the exam Average by exam");

System.out.println("4-Display the current class average for all exams");

System.out.println("5-Exit");

choice=sc.nextInt();

//if choice is 1

if(choice==1)

{//ask how many xams

System.out.println("Please enter how many exams this student has taken?");

int noOfExams=sc.nextInt();//take input

students[index]=new int[noOfExams];//intialize array index by no of exams

System.out.println("Please enter the each of those exam scores one by one");//enter scores

if(maxExams<noOfExams)//if this noofexams is greater then update maxexams

maxExams=noOfExams;

//take scores from user

for(int i=0;i<noOfExams;i++)

{

students[index][i]=sc.nextInt();

}

index++;//increase index

}

else if(choice==2)

{

//calculate avregage by student and print it

System.out.println("*** Average by Student Id ***");

System.out.println("Student Id\tAverage Score");

for(int i=0;i<index;i++)

{

System.out.print((i+1)+"\t");//print student id

int sum=0;

//calculate sum

for(int j=0;j<students[i].length;j++)

{

sum=sum+students[i][j];

}

double avg=sum*1.0/students[i].length;//find average

System.out.printf("%.2f",avg);//print average by precison of two

System.out.println();

}

}

else if(choice==3)

{//caculate averag eby exams and print it

System.out.println("*** Average by Exam Number ***");

System.out.println("Exam Number\tAverage Score");

for(int i=0;i<maxExams;i++)

{

int sum=0,total=0;

for(int j=0;j<index;j++)

{

if(students[j].length>=i+1)

{

total++;

sum=sum+students[j][i];

}

}

double avg=sum*1.0/total;

System.out.print((i+1)+"\t");

System.out.printf("%.2f",avg);

System.out.println();

}

}

else if(choice ==4)

{//find iverall average

int sumtotal=0;

for(int i=0;i<index;i++)

{

int sum=0;

for(int j=0;j<students[i].length;j++)

{

sum=sum+students[i][j];

}

double avg=sum*1.0/students[i].length;

sumtotal+=avg;

}

double avgTotal=sumtotal*1.0/index;

System.out.println("Current class Average for all exams - "+avgTotal);

}

}while(choice!=5);

}

public static void main(String[] args) {

menu();

}

}

You might be interested in
When an author produce an index for his or her book, the first step in this process is to decide which words should go into the
Igoryamba

Answer:

import string

dic = {}

book=open("book.txt","r")

# Iterate over each line in the book

for line in book.readlines():

   tex = line

   tex = tex.lower()

   tex=tex.translate(str.maketrans('', '', string.punctuation))

   new = tex.split()

   for word in new:

       if len(word) > 2:

           if word not in dic.keys():

               dic[word] = 1

           else:

               dic[word] = dic[word] + 1

for word in sorted(dic):

   print(word, dic[word], '\n')

                 

book.close()

Explanation:

The code above was written in python 3.

<em>import string </em>

Firstly, it is important to import all the modules that you will need. The string module was imported to allow us carry out special operations on strings.

<em>dic = {} </em>

<em>book=open("book.txt","r") </em>

<em> </em>

<em># Iterate over each line in the book</em>

<em>for line in book.readlines(): </em>

<em> </em>

<em>    tex = line </em>

<em>    tex = tex.lower() </em>

<em>    tex=tex.translate(str.maketrans('', '', string.punctuation)) </em>

<em>    new = tex.split() </em>

<em />

An empty dictionary is then created, a dictionary is needed to store both the word and the occurrences, with the word being the key and the occurrences being the value in a word : occurrence format.

Next, the file you want to read from is opened and then the code iterates over each line, punctuation and special characters are removed from the line and it is converted into a list of words that can be iterated over.

<em />

<em> </em><em>for word in new: </em>

<em>        if len(word) > 2: </em>

<em>            if word not in dic.keys(): </em>

<em>                dic[word] = 1 </em>

<em>            else: </em>

<em>                dic[word] = dic[word] + 1 </em>

<em />

For every word in the new list, if the length of the word is greater than 2 and the word is not already in the dictionary, add the word to the dictionary and give it a value 1.

If the word is already in the dictionary increase the value by 1.

<em>for word in sorted(dic): </em>

<em>    print(word, dic[word], '\n') </em>

<em>book.close()</em>

The dictionary is arranged alphabetically and with the keys(words) and printed out. Finally, the file is closed.

check attachment to see code in action.

7 0
2 years ago
I can't imagine any reason _______ he should have behaved in such an extraordinary way. for that why how
professor190 [17]
<span>I can't imagine any reason "why" he should have behaved in such an extraordinary way. If we were to use "how" in that sentence it would contradict the context. We are obviously talking about a situation that has happened so we know that "he" has in fact acted in an extraordinary way but we don't know "why" he acted that way. Therefore "why" is the correct term to use.</span>
4 0
2 years ago
Suppose that each row of an n×n array A consists of 1’s and 0’s such that, in any row i of A, all the 1’s come before any 0’s in
Anna71 [15]

Answer:

Check the explanation

Explanation:

  •    Each row of nxn array A consists of 1’s and 0’s such that , in any row of A, all the 1’s come before any 0’s in that row.
  •    Use binary search algorithm to find the index of the last 1 in a row.
  •    Perform this process for each row.
  •    Now, searching for last occurrence of 1 in a row will take O (log n) time.
  •    There are n such rows, therefore total time will be O (n log n).

Complexity analysis:

   The method would be to use binary search for each row to find the first zero starting with index of A[i][n/2+1].

   Let’s say j=n/2.

   The number of 1’s in a row would be j+1.

   This would take O (log n).

   An algorithm that divides by 2 until the number gets sufficiently small then it terminates in O (log n) steps.

   As there are n rows the complexity would be O (n log n).

Pseudo-code:

A = [[1,0,0,0],[0,0,0,0],[1,1,1,1],[1,1,0,0]]

n=4

c=0

for i in range(n): # Loop in rows

  j = n/2 # Search from middle index

  while j>0: # Loop in column

      if(A[i][j]==0): # search for first zero

          if(A[i][j-1]==1): # confirm first zero

              c = c+j # add 1's count to c

              break

          else: # reduce index by 1 or j/2

              if(j/2 == 0):

                  j = j-1

              else:

                  j = j - j/2

      else: # increase index by 1 or j/2

      if(j/2 == 0):

      j = j+1

      else:

          j = j + j/2

      if(j==n): # For all 1's

      c = c+n

      break  

print c

8 0
2 years ago
Mitchell is assisting her teacher in a project by entering data into the spreadsheet. Which types of data can Michelle enter in
Rainbow [258]

Hello, Paper, types of data that Michelle can enter into a cell is,

• Data – values, usually numbers but can be letters or a combination of both.

• Labels – headings and descriptions to make the spreadsheet easier to understand.

• Formulas – calculations that update automatically if referenced data changes.

Hope this helped!

4 0
2 years ago
Read 2 more answers
How many bits would be needed to count all of the students in class today? There are 5 children in the class.
zavuch27 [327]

Answer:

You would need 8 bits.

Explanation:

If your refer back to the binary system, the exponent 2^3 would equal 8, and since there are only 5 children, this would be more reasonable. It's better to have a little bits left over than too many. Hope this helps!

4 0
2 years ago
Other questions:
  • Into which of these files would you paste copied information to create an integrated document?
    13·2 answers
  • Henry is creating a firewall rule that will allow inbound mail to the organization. what tcp port must he allow through the fire
    10·2 answers
  • Splunk uses ________ to categorize the type of data being indexed..
    11·2 answers
  • Which of the following best describes open-source web browsers?
    11·2 answers
  • 2. Because technology is always changing, there are new applications being developed constantly. (1 point)
    9·2 answers
  • Adrian has decided to create a website to catalog all the books he has in his personal library. He wants to store this informati
    11·2 answers
  • Create a program to deteate a program to determine whether a user-specified altitude [meters] is in the troposphere, lower strat
    11·1 answer
  • Write a program that reads an integer and displays, using asterisks a filled and hollow square, placed next to each other. for e
    9·1 answer
  • You’re trying to cast a video presentation from your tablet to a projector for a training session with some new hires. Although
    5·1 answer
  • Which argument forces a writer to return to and change the input before resolving a “UnicodeError”?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!