Write a program that will display the top 3 items of your life bucket list (ex. life ambitions). Save the class as LifeBucketList.java.

Programming Assignment

Write a program that will display the top 3 items of your life bucket list (ex. life ambitions). Save the class as LifeBucketList.java. The output should have one line for each item and look something like this:

Ride a rocket to space.
See all 50 states in the USA.
Travel to Fiji and get an ice cream.

Also ensure that the following requirements are met:

1) Java file is named correctly.
2) Name, date and assignment information is included at the top of your Java code file as a comment.
3) Java code is properly indented and readable.
4) Code comments are present within each major section of code.
5) Use 3 separate println() statements within your program to achieve the required output.

Once you verify that your program runs correctly and you have met the requirements, create a Word or PDF document with the following:

1) Your name, date and assignment identification at the top of the page (Ex. CIS-210 Week 1 Programming Assignment)
2) Full Java source code listing
3) Screenshot of the code compiling successfully in the IDE with the timestamp showing.
4) Screenshot of the code running showing the correct output.

Archive (zip) the results document and the actual .java code files into a single zip file and submit through the classroom. Please name the zip file with <flast>_CIS210_Week_1 where <flast> is your first initial and last name.

Why is Java such a popular language? Were you able to successfully get the application to compile and run? What advice or code can you provide to help other students with this activity?

DISCUSSION ESSAY

Listed below are topic(s) I would like for each of you to discuss throughout the week. Refer to the textbook, weekly materials, and/or the GMC library when researching the topics for this Discussion Forum. Put your writing into your own words, do not copy directly from the source. If you incorporate external resources (http://gmcga.libguides.com/periodicals) in your posts be sure to cite (https://gmcga.libguides.com/citationmanagement/APA7th) them properly. Lastly, review how to paraphrase and quote resources before you begin posting (http://gmcga.libguides.com/c.php?g=458&p=996448).

In order for us to get a feel for what it means to be a programmer, we need to write our first program! Please complete Chapter 1, Section 1.5.4 “Programming Activity 1: Writing a First Java Application” from the textbook. Once you have completed it, please answer the following questions:

1) Why is Java such a popular language?

2) Were you able to successfully get the application to compile and run?

3) What advice or code can you provide to help other students with this activity?

4) What are some good programming practices that we should use when writing code?

Task 1: Create a new discussion topic on or before the due date in the Course Syllabus -> Course Schedule by clicking the ‘**REPLY HERE**’ post below. In your reply, you will post your response to the main topic. Your response should be a minimum of 150 words. Going over the minimum word length requirement is acceptable; however, I am not looking for 500+ words!

What critical information could a security administrator or manager gain from this document? What other publications do you see on the list that can benefit a security administrator or manager?

DISCUSSION ESSAY

Using a web browser, go to http://csrc.nist.gov.

Click the SP800 Series (Special Publications) on the left-hand side.

Find SP 800-100.

Review the local download.

What critical information could a security administrator or manager gain from this document?

What other publications do you see on the list that can benefit a security administrator or manager?

Select one and explain why.

 

What is your definition of data visualization? What are the key components of data visualization? What techniques do you hope to learn from A05 Analyzing & Visualizing Data?

Operational Excellence

Resistance to change is a normal everyday aspect in the workplace. Note what happens to the organizational climate when this resistance occurs and any tactics to reduce negative connotations when dealing with change.

DATA VISULAZATION

  1. What is your definition of data visualization?
  2. What are the key components of data visualization?
  3. What techniques do you hope to learn from A05 Analyzing & Visualizing Data?

Instructions

Each response should be 250-300 words. APA reference and intext citations

 

Create a floating point variable B and set its value to 4.3. Create an integer variable and set its value to 2. Write a program that calculates V using the formula V = B * A + 13.

DISCUSSION QUESTIONS

Instructions

For each question, submit a .pde (Processing) file. The name of the file should be your name_final exam_x.pde, where x indicates the number of the question. For example, if your instructor were to submit a result for question 1, the file would be named: casey blamires_final exam_1.pde

Question 15 points

Convert the following “for” loop into a “while” loop that does the same thing: for( int i = 10; i >= 0; i=i-1 ) { println( i ); }

Question 25 points

Convert the following “while” loop into a “for” loop that does the same thing: int i = 0; while( i < 100 ){println( “This is the “ , i , “ count in the loop” ); i = i+1; }

Question 310 points

Create an array of floating point numbers called gpas and insert the following values: 3.2, 4.0, 1.6, 2.7, and 3.0

Create an array of Strings called names and insert the following values: Cindy, Ava, Blake, Bobby, and Craig

Create an array of booleans called passing and insert the following values: true, true, false, true, and true

Create a loop that prints the data from the tree arrays in the following format:

Name: Cindy; GPA: 3.2; Passing: true

Question 45 points

Create a 500 x 500 pixel drawing canvas with a white background. If the mouse is clicked in the upper left quadrant, change the background of the canvas to red. If the mouse is clicked in the upper right quadrant, change the background of the canvas to blue. If the mouse is clicked in the lower left quadrant, change the background of the canvas to yellow. If the mouse is clicked in the lower right quadrant, change the background of the canvas to purple.

Question 510 points

Create a 1000 x 1000 pixel drawing canvas. Draw a house according to these specifications:

– The house must be a blue square

– The roof must be a black triangle

– The door must be a yellow rectangle

– There must be two windows on either side of the door that are white circles

Question 610 points

Create an integer variable called total Points. Set it to 83.

Create an integer variable called final Exam Score. Set it to 70.

Write a program that will print “You passed!” if the total Points is greater than or equal to 70 and the final Exam Score is greater than or equal to 70. If the total Points is greater than or equal to 70 but the final Exam Score is less than 70, print “Your final exam grade was below a C.”

If the total Points is less than 70, but the final Exam Score is greater than or equal to 70, print “Your total points grade was below a C.” If both variables are less than 70, print “Your course grade was below a C.”

Question 710 points

Write a loop that starts at 10 and goes up to and including 20, incrementing by 2. Each time through the loop, check to see if i is less than 15.

The loop should be constructed to print the following:

The number is 10, which is lower than 15

The number is 12, which is lower than 15

The number is 14, which is lower than 15

The number is 16, which is higher than 15

Etc…

Question 85 points

Create a floating point variable B and set its value to 4.3.

Create an integer variable and set its value to 2.

Write a program that calculates V using the formula V = B * A + 13.

Your program should print the result of V.

Question 95 points

Write a loop to print all of the odd numbers from 1 up to and including 111 each on their own line.

 

Discuss an accomplishment, event, or realisation that sparked a period of personal growth and new understanding of yourself and others.

Common App Essay

Discuss an accomplishment, event, or realisation that sparked a period of personal growth and new understanding of yourself and others.

Why You should know About HIPPA regulations and rules? how is it related to medical coding? 

Social media impact Healthcare delivery

Watch the video and answer the question

HIPAA Training 101: What is HIPAA Co

  • Why You should know About HIPPA regulations and rules? how is it related to medical coding?

 Watch the video and answer the question

 

What internal and/or external factors drove the initiatives at each company? Were these initiatives put in place as responses to challenges or to opportunities?

DISCUSSION ESSAY

What internal and/or external factors drove the initiatives at each company? Were these initiatives put in place as responses to challenges or to opportunities?

How were business value, competitive advantage, risk, and organizational change considered in each project? Should they have been handled any differently?

In terms of organizational information integration, does each company appear to be pursuing the correct technological path? Suggest alternatives, additional initiatives, and/or next steps to achieve better integration.

 

Share your professional and academic goals and how the Masters Program in Computer Science (MPCS) at the University of Chicago will help you achieve them.

Candidate Statement

Share your professional and academic goals and how the Masters Program in Computer Science (MPCS) at the University of Chicago will help you achieve them. You are welcome to include any additional information you would like the Admissions Committee to consider when reviewing your application. (maximum 500 words) *required

How has your academic and professional background, including any professional training, prepared you for graduate study? How will our program help you achieve your intellectual and professional goals?

Statement of purpose

Write a statement that answers the following questions (recommended length: 750 words max):
a. How has your academic and professional background, including any professional training, prepared you for graduate study?

b. How will our program help you achieve your intellectual and professional goals?

c. What are your academic interests and why do you wish to pursue graduate studies in this specific program?