Capella IT2249 All Units Discussions Latest 2020 January

Question # 00607762
Course Code : IT2249
Subject: Computer Science
Due on: 01/16/2020
Posted On: 01/16/2020 04:19 AM
Tutorials: 0
Rating:
4.9/5
Question Dot Image

IT2249 Introduction to Programming with Java

Unit 01 Discussion

Your First Java Console Application

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

To prepare for this discussion, set up your Java development environment using the NetBeans IDE and develop your first Java console application that displays the words “Hello, World!” to the screen. Review the resources in the Unit 1 Discussion Prep Study.

Download, install, and configure the NetBeans IDE to your computing device. Then, using NetBeans, create a new Java console application that displays “Hello, World!” on the screen.

For this discussion:

Provide a screenshot of the result of your work. Your screenshot should look like the "Hello World Result."

Explain, briefly, how you completed this exercise, the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 02 Discussion

Echo Input from the Console to the Screen

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

To prepare for this discussion, you practiced echoing the value read from the console to the screen. Create a Java program that reads in any value entered at the console and then prints it out to the screen.

Provide a screenshot of your result of your work. Your screenshot should look like the example in the "Echo Input Results" resource.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 03 Discussion

Debug and Fix Four Compile Time Errors

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, you practiced debugging a Java program that does not compile and fixing it so that it compiles without errors. The program is to read in an integer value and then determines if the value is a multiple of 5 number, an even number, or neither. But the program has four compile errors.

Identify these compile errors and propose remedies for each compile error. Note that these errors are compile errors and are not runtime or program logic errors.

Provide a screenshot of your result of your work. (See the example in the "Four Compile Errors Results" resource.)

Explain, briefly, how you completed this exercise, the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 04 Discussion

Determine if a Character is a Letter, a Digit, or Neither

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, you explored some of the available methods of the Character class to manipulate individual characters.

Create a Java program that reads in a single character entered at the console and then prints it out if the character is a letter, a digit, or neither.

Provide screenshots of the result of your work. Your screenshots should look like those in the "IsLetterIsDigitElse Result" Resource.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 05 Discussion

Add Five Integers Using Java Loops

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, practiced looping constructs by repeatedly reading the values of integers from the console and tallies their sum.

Create a Java program that reads in five integer values entered at the console and tallies their sum. The program then prints the sum out to the screen.

Provide a screenshot of the result of your work. Your screenshot should look like the "Add5IntsWithLoops Results" resource.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

 

 

 

 

IT2249 Introduction to Programming with Java

Unit 06 Discussion

Echo Input from the Console to the Screen Using Methods

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, you practiced using Java methods to echo input from the console to the screen. Create a Java program that reads in any value entered at the console and then prints it out to the screen. The program must have at least three methods including the main() method.

Provide a screenshot of the result of your work.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 07 Discussion

Echo Five Integers Using Java Arrays

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

In this discussion, you will practice using Java arrays to store values entered at the console and then to print them out to the screen. That is, you will practice echoing the entered values using arrays.

Create a Java program that reads in five integer values entered at the console and stores them into an array. The program then prints these integer values out to the screen.

Provide a screenshot of the result of your work.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 08 Discussion

Count Occurrences in Seven Integers Using Java Two Dimension Arrays

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

In this discussion, you will practice using a Java 2-dimensional array to count the number of occurrences of seven integer values entered by the user from the keyboard.

Create a Java program that reads in seven integer values entered at the console, counts the number of occurrences of each of the seven values, and prints the number of occurrences to the screen.

Provide a screenshot of the result of your work.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 09 Discussion

Design, Draw UML Class Diagram, and Implement a Java Course Class

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, you practiced designing a Java class called Course, drawing a UML class diagram for the Course class, and then implementing the Course class in Java code. Review the Resources section to help you with this discussion.

Design a Java class called Course that has the following attributes:

code – a string field to store the course code (e.g., IT1006).

creditHours – an int field to store the credit hours of the course (e.g., 6).

Draw a UML class diagram for the Course class. Then implement your design of the Course class in Java.

Provide a screenshot of the result of your work.

Explain, briefly, how you completed this exercise, the major issues you faced, and how you solved them.

 

IT2249 Introduction to Programming with Java

Unit 10 Discussion     

Complete the Programming of a Simple Object-Oriented Application

Review the resources and instructions in the Discussion Prep Study before completing this discussion.

For this discussion, you practiced instantiating an already defined Java class into objects and invoking the attributes of these objects. Unzip the attached NetBeans project zip file (U10D1_InstantiateUseArrayOfObjects.zip) and load it into your NetBeans IDE.

The project defines two classes:

A Java class called Course (in Course.java) with certain attributes, and

Another class called U10D1_InstantiateUseArrayOfObjects (in U10D1_InstantiateUseArrayOfObjects.java). This class creates an array of Course objects and initializes their attributes to specific values and then calls the WriteCurrentRegistration() to print the current list of registered classes and their total credit hours. The WriteCurrentRegistration() still needs to be coded.

Code the WriteCurrentRegistration() method to meet the stated requirements specified in the project.

For this discussion:

Provide a screenshot of the result of your work.

Explain, briefly, how you completed this exercise, the algorithm you used (via pseudo code or other description tools), the major issues you faced, and how you solved them.

Dot Image
expertguy Posted By :
Questions: 34513 Tutorials: 33884

Click chat button below to get the answer.

Related Questions
Capella IT2249 Unit 2 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 02 Discussion Echo Input from the Console to the Screen Review the resources and instructions in the Discussion Prep Study before completing …
Capella IT2249 Unit 6 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 06 Discussion Echo Input from the Console to the Screen Using Methods Review the resources and instructions in the Discussion Prep Study bef …
Capella IT2249 Unit 4 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 04 Discussion Determine if a Character is a Letter, a Digit, or Neither Review the resources and instructions in the Discussion Prep Study b …
Capella IT2249 Unit 5 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 05 Discussion Add Five Integers Using Java Loops Review the resources and instructions in the Discussion Prep Study before completing this d …
Capella IT2249 Unit 8 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 08 Discussion Count Occurrences in Seven Integers Using Java Two Dimension Arrays Review the resources and instructions in the Discussion Pr …
Capella IT2249 Unit 3 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 03 Discussion Debug and Fix Four Compile Time Errors Review the resources and instructions in the Discussion Prep Study before completing th …
Capella IT2249 Unit 7 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 07 Discussion Echo Five Integers Using Java Arrays Review the resources and instructions in the Discussion Prep Study before completing this …
Capella IT2249 Unit 9 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 09 Discussion Design, Draw UML Class Diagram, and Implement a Java Course Class Review the resources and instructions in the Discussion Prep …
Capella IT2249 Unit 1 Discussion Latest 2020 January
IT2249 Introduction to Programming with Java Unit 01 Discussion Your First Java Console Application Review the resources and instructions in the Discussion Prep Study before completing this …
Capella IT2249 Unit 3 Assignment Latest 2020 January
IT2249 Introduction to Programming with Java Unit 3 Assignment Debug and Fix if Statements In this assignment, you will debug and fix a given Java console application that uses if statements …
Recent Questions
Social work process evalution - Agency Context: Briefly describe
Social work process evalution The purpose of this assignment is to prepare a proposal for a process or outcome evaluation thatcould be implemented at your placement or place of employment (if you w …
Psychology - Why Zebras Don’t Get Ulcers by Robert Sapolsky
Psychology Question Purpose The purpose of this assignment is to increase your knowledge of health psychology concepts beyond the textbook. It also designed to utilize your critical thinking ski …
PSY605 ITESM Erickson's Late Adulthood Analytical Review
PSY 605 ITESM Erickson's Late Adulthood Analytical Review PSY 605 FINAL Integrating the Field of Developmental Psychology: A Review of the Literature Prior to beginning work on this assig …
PSY225 - Survey, What were your five highest strengths
psy/225 survey, What were your five highest strengths Take the VIA© survey. Using your results, write a 350- to 700-word paper covering the following points: What were …
Ashford PSY699 Resources for the Integrative Literature Review
PSY699 Ashford University Resources for the Integrative Literature Review Prior to beginning work on this written assignment, be sure to carefully review the instructions for the Final Assignment, …
PSY630 Variations in Drug Response - Ms. Jones is a 30-year-old
Variations in Drug Response PSY630 Using the knowledge you gained from the readings, evaluate how a typical drug, when orally administered, may be handled differently by these two patients: …
Technology is ubiquitous; it is everywhere. Since humans
provide insights into how technology has changed the way people interact Technology is ubiquitous; it is everywhere. Since humans are social creatures that need to interact, cell phones and social …
SOC401 - A strong cover letter is an accompaniment
SOC401 Crafting the Cover Letter A strong cover letter is an accompaniment to a strong résumé and is often the key to securing an interview. While a resume goes through ATS programs, …
SOC401 Identity and Social Change
soc401 Identity and Social Change First, turn to the Needs-Based Assessments and Community Outreach discussion from Week 2, and choose your community and issue or a colleague’s community and …
SOC401 Civic Engagement, Volunteerism, and Community Outreach
SOC401 Civic Engagement, Volunteerism, and Community Outreach Share your previous experiences of civic engagement or volunteering. Describe the identity groups and communities that were supported b …