
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
Use Java. Please see the requirements (good indentation, matching the code EXACTLY how it is below, etc.)

Transcribed Image Text:**CPSC 21000: Programming Fundamentals
Programming Assignment 1 (CalcTime)**
**Requirements**
Create a Java program that reads a value representing a number of seconds, and then prints the equivalent amount of time as a combination of days, hours, minutes, and seconds. For example, 99999 seconds is equivalent to 1 day, 3 hours, 46 minutes, and 39 seconds.
**Additional Requirements**
1. The name of your Java Class that contains the main method should be `CalcTime`. All your code should be within the main method.
2. Your code should follow good coding practices, including good use of whitespace (indents and line breaks) and use of both inline and block comments.
3. You need to use meaningful identifier names that conform to standard Java naming conventions.
4. At the top of each file, include a block header comment with the following information:
- your name
- course name
- semester, and
- assignment name
5. The output of your program should exactly match the sample program output given at the end, including spacing, wording, and where the prompt for the input is displayed.
**What to Turn In**
You will turn in the single `CalcTime.java` file using BlackBoard.
---
**Sample Program Output 1**
```
CPSC 21000
NAME: <name>
PROGRAMMING ASSIGNMENT 1
Enter the number of seconds: 99999
The equivalent time is 1 days, 3 hours, 46 minutes, and 39 seconds
```
**Sample Program Output 2**
```
CPSC 21000
NAME: <name>
PROGRAMMING ASSIGNMENT 1
Enter the number of seconds: 587349573
The equivalent time is 6798 days, 0 hours, 39 minutes, and 33 seconds
```
**Note**: Replace `<name>` with your actual name.
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 2 images

Knowledge Booster
Similar questions
- THIS IS MEANT TO BE IN JAVA. What we've learned so far is variables, loops, and we just started learning some array today. The assignment is to get an integer from input, and output that integer squared, ending with newline. But i've been given some instructions that are kind of confusing to me. Please explain why and please show what the end result is. Here are some extra things i've been told to do with the small amount of code i've already written... Type 2 in the input box, then run the program so I can note that the answer is 4 Type 3 in the input box instead, run, and note the output is 6. Change the output statement to output a newline: System.out.println(userNumSquared);. Type 2 in the input box Change the program to use * rather than +, and try running with input 2 (output is 4) and 3 (output is now 9, not 6 as before). This is what I have so far... import java.util.Scanner; public class NumSquared {public static void main(String[] args) {Scanner scnr = new…arrow_forwardJava Question - Instructions are in the attached pictures. The picture titled "Screenshot..." are the instructions for building the specific code, while the "Final Output" picture shows what the output of the code should look like. Please make sure no errors show up in the Java compiler. Thank you.arrow_forwardGenerate the Javadoc file for your project?arrow_forward
- Write Java source code to take an integer n and returns the sum of all odd positive integers less than or equals to n. Please implement a sumOddo method for major functionality and a main method with input data for testing cases. Please pay attention to the neat coding style in Java, including grammar, indentations, naming of variables and methods, and comments. a) Conduct an experimental study regarding the running time of your Java code in nanoseconds. Please draw on a separate sheet of paper for the chart/figure on the evaluation results.arrow_forwardWrite Java Code which will gather sales amounts for the week. It should use the SalesData class to display the total, average, highest and lowest sales amounts.arrow_forwardPlease help me on these questions on my Java Program Questions 1-7 involve writing a Java storage class called Student that keeps track of a student's first name, last name and the number of credits being taken in a semester.. Write down the declarations for the instance variables. Question 2: Write down the mutator methods for the instance variables. You don't need to check for the passed values other than trimming any String values. Question 3: Write down a constructor that allows setting all of the instance variables. You can simply call the mutator methods you came up with in question 2. Question 4: Write down all the accessor methods for the instance variables. Question 5: Create a toString() method that will return: Jane Doe, credits: 12 if Jane Doe is taking 12 credits Question 6: Rewrite the mutator for the first name, so that if a blank String is passed to this method, the first name is set to "NOFIRST". Question 7: Rewrite the mutator for the number of credits, so that if a…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY