Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7995861
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:32:55+00:00 2026-06-04T14:32:55+00:00

As part of my homework I have the following code: ArrayList <Integer> marks =

  • 0

As part of my homework I have the following code:

  ArrayList <Integer> marks = new ArrayList();

  Collections.addAll(marks, (Integer.parseInt(markInput.getText())));

  private void analyzeButtonActionPerformed(java.awt.event.ActionEvent evt) 
  {
      analyzeTextArea.setText("Number at level R:" + calculateLevelR());
  }

  private int calculateLevelR() {
      int sum = 0;
      for (Integer mark: marks) {
          if(mark < 50)
              sum += mark;
          sum = marks.size();
      }
      return sum;
  }

When a user enters a set of grades, I’m trying to calculate and display the amount of grades that are “level R” (under 50) but the above code does not work properly, instead it calculates the size of the whole array.

How can I get it to calculate just the amount of grades at “level R”?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T14:32:58+00:00Added an answer on June 4, 2026 at 2:32 pm

    Other answers have already pointed out the exact problem, looking at your comments may be a code snippet can explain better. See below

      private int calculateLevelR() {
          int sum = 0;
          for (Integer mark: marks) {
              if(mark < 50)
                  sum += mark;
              sum = marks.size(); // If mark is less than 50 add mark to sum else sum = size of arrayList
          }
          return sum;
      }
    

    What you need is :

      private int calculateLevelR() {
          int sum = 0;
          for (Integer mark: marks) {
              if(mark < 50)
                  sum++; // If mark is less than 50 increment sum
          }
          return sum; // finally when check all marks return sum, this sum will represent total number of marks less than 50.
      }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So I have the following code: import java.lang.Thread; import java.lang.Integer; class MyThread extends Thread
(this is indirectly a part of a much larger homework assignment) I have something
I have the following code: ... int n; cin >> n; int numbers[n]; ...
As part of a homework assignment, I have to program a simple chess game
I am a student, this is part of my homework. I have to Update
For a homework assignment in linear algebra, I have solved the following equation using
I have this block of code (functions omitted as the logic is part of
As part of a homework assignment, I have to write a C program in
This is part of a homework assignment. What we have to do is write
I have developed a java program as a part of my homework and have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.