Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

complete the method named countdown (method stub provided) so that it accepts an int countFrom as its parameter and prints each number from countFrom to 1 on a single line separated by a space. Thi

complete the method named countdown (method  stub provided) so that it accepts an int countFrom as its parameter and  prints each number from countFrom to 1 on a single line separated by a  space. This method should not return anything (void return type).

Hint:  Use a loop and think about the starting value you want to print, the  ending value that will print, and how you want to update the value  between iterations.

Example: countdown(5) should print: 5 4 3 2 1  Example2: countdown(-1) should not print anything. Example3: countdown(9) should print: 9 8 7 6 5 4 3 2 1  

Ensure you are thoroughly calling and testing your methods before submitting to zyBooks.

Problem 2 – Arrays as Parameters

Complete  the curve method (method stub provided for you) so that it loops  through the int[] grades, incrementing each non-zero grade by 2. Grades  of 0 should not be changed. This method should not print or return  anything, but should modify the contents of the grades array.

Hint – you can test that your method works in main by printing the values in grades both before and after this method is called.

Example: Passing in an int[] containing: {95, 80} should modify the array to {97,82} Example2: Passing in a int[] containing: {70, 0, 99} should modify the array to {72, 0, 101}  

Problem 3 – Returning Arrays, Arrays as Parameters, String methods

Write  a method named acronyms that accepts an array of type String as its  parameter and returns an array of type char. This method stub is not  provided for you. Method name, return type, and parameter(s) should  match exactly to receive credit. You should not use the keyword static  in the method header.

Your method should  create a new char array the same size as the String array passed in.  You should then use a loop to populate the char array with the first  letter of each individual String stored in the array.

Hint – the charAt method in the String class retrieves a single char from a specified index.

Example:  Passing in an String[] containing: {“tiger”, “king”} should return a  char[] of size 2 containing {‘t’, ‘k’} Example2: Passing in an String[] containing: {“go dawgs”, “uga”, “java”}  should return a char[] of size 3 containing {‘g’, ‘u’, ‘j’} 

Problem 4 – Scanner in methods, String methods, Algorithm design, Return Statements

Write  a method named setPassword that accepts a Scanner object as its  parameter and returns a boolean. This method stub is not provided for  you. Method name, return type, and parameter(s) should match exactly to  receive credit. You should not use the keyword static in the method  header.

Your method should read in a  String password using the nextLine method and the the Scanner object  passed in as the method parameter. Your method should then return either  true or false depending on if all criteria of a password is met.

A valid password (returning true) would have the following criteria:

  • The password contains at least 8 characters
  • The password contains at least 1 capital letter/char
  • The password contains at least 1 lowercase letter/char

If  ALL of the above conditions are met, your method should return true. If  any of the above conditions are NOT met, your method should return  false.

Example: a user input of “Coding99” or “Java12345” would return true Example2: a user input of “Java123” would return false //only 7 characters Example3: a user input of “JAVA12345” would return false //no lowercase Example4: a user input of “java12345” would return false //no uppercase

import java.util.Scanner; //imported for you!

public class Exam2{//Problem 1   public void countdown(int countFrom)   {       //YOUR CODE HERE   } 

   //Problem 2   public void curve(int[] grades)   {       //YOUR CODE HERE   } 

//Problem 3   //method stub not provided – YOUR CODE HERE 

   //Problem 4   //method stub not provided – YOUR CODE HERE

}

import java.util.*; //All items in java.util package (Scanner, ArrayList, HashSet, etc.) imported for youpublic class Main{  public static void main(String[] args)  {        //You can test your code here.         //This file is not graded.  } 

}

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

In Units V, VI, and VII, you learned about the components of a computer, how a computer works, the internet, networks and network communications, cloud computing, web development, digital identity, so

In Units V, VI, and VII, you learned about the components of a computer, how a computer works, the internet, networks and network communications, cloud computing, web development, digital identity, social media, e-commerce, ethical behavior, databases, and explored two Microsoft Office applications, PowerPoint and Access.  In this assignment, you will

In the previous assignment, the annotated bibliography, you collected 15 – 20 references. Now, you are to craft an analytical research paper. Using the same themes assigned for the previous assignment

In the previous assignment, the annotated bibliography, you collected 15 – 20 references. Now, you are to craft an analytical research paper. Using the same themes assigned for the previous assignment.  GROUP 1: Context-Aware Computing  Prepare a ten (10) page research paper. In the paper, you are to cover the

This week, you will submit the second project, the Desktop Migration Proposal. Using the requirements analysis your manager provided and the Internet research you conducted, submit your recommendation

This week, you will submit the second project, the Desktop Migration Proposal. Using the requirements analysis your manager provided and the Internet research you conducted, submit your recommendation to the assignment folder. As you are writing your recommendation, ensure your analysis and recommendations align with your manager’s priorities and concerns.

In Units I, II, and III, you learned about the history of computers, application and system software, blockchain, cryptocurrency, computer ethics, and explored two Microsoft Office applications, Word

In Units I, II, and III, you learned about the history of computers, application and system software, blockchain, cryptocurrency, computer ethics, and explored two Microsoft Office applications, Word and Excel.  In this assignment you will demonstrate what you have learned in these three units. This assignment will have five parts. 

Research and brainstorm three (3) proposals for a mobile computing solution. Write up a half-page (double-spaced, approx. 250 words) description of each mobile computing solution proposal. Provide an

Research and brainstorm three (3) proposals for a mobile computing solution.  Write up a half-page (double-spaced, approx. 250 words) description of each mobile computing solution proposal. Provide answers to the following questions: 1) What is the 1 sentence summary of the mobile computing solution? 2) Who and how big is

Creating and Submitting your Portfolio Overview Creating a professional cybersecurity portfolio is essential for showcasing your skills, achievements, and growth. This portfolio will serve as a valuab

Creating and Submitting your Portfolio Overview Creating a professional cybersecurity portfolio is essential for showcasing your skills, achievements, and growth. This portfolio will serve as a valuable tool for presenting yourself to universities, scholarship committees, employers, and beyond. Objective:: To design a professional cybersecurity portfolio that markets your academic and

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. Y

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. You will create three HTML pages: a résumé, a cover letter, and a career goals page. As you make your website, you

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. Y

IntroductionFor this project, you will create a personal portfolio website to demonstrate your ability to use HTML, CSS, and JavaScript and resolve software problems in web development environments. You will create three HTML pages: a résumé, a cover letter, and a career goals page. As you make your website, you

Need to report 1 You will submit two reports generated from your developed database. These reports should be meaningful to your database. The report(s) resolve one of the problems that you originally

Need to report 1 You will submit two reports generated from your developed database. These reports should be meaningful to your database. The report(s) resolve one of the problems that you originally identified in your Database Proposal.  The lay out should be appealing to the eye and the design should

Select any example visualization or infographic and imagine the contextual factors have changed: If the selected project was a static work, what ideas do you have for potentially making it usefully in

Select any example visualization or infographic and imagine the contextual factors have changed: If the selected project was a static work, what ideas do you have for potentially making it usefully interactive? How might you approach the design if it had to work on both mobile/tablet and desktop? If the

Excel 365/2021 Capstone – Level 2 Working with Sales Data These instructions are compatible with both Microsoft Windows and Mac operating systems. In this project, you will work with sales data from T

Excel 365/2021 Capstone – Level 2 Working with Sales Data These instructions are compatible with both Microsoft Windows and Mac operating systems. In this project, you will work with sales data from Top’t Corn, a popcorn company with an online store, multiple food trucks, and two retail stores. You will

Hello Students, As discussed in class, the Workspaces and Challenges are now active. Required Challenges for Full Credit To earn full credit (30% of the assignment), you must complete 6 challenges fro

Hello Students, As discussed in class, the Workspaces and Challenges are now active. Required Challenges for Full Credit To earn full credit (30% of the assignment), you must complete 8 challenges from the following list: Interns & HR on the Domain Controller Help Desk Fun: User Workstation Nightmares Dangerous Drives Preventative Protection: Thwarting the Imminent Threat Security