paper-and-presentation-3
All the instructions in the file below
Make sure to use the PFD file as source
I will provide the topic once you accept my question
Also I will provide an example of how to write the paper
All the instructions in the file below
Make sure to use the PFD file as source
I will provide the topic once you accept my question
Also I will provide an example of how to write the paper
1.
Vital signs, including your blood pressure and pulse, are useful in everyday life. Tests such as those done in the lab can help monitor health. Knowing the normal parameters can allow you to give yourself a quick check on your health. If numbers are raised when a person is at rest, or take extended periods to return to normal after exercise, this may be a sign for concern. Many forms of heart disease can be prevented or treated with healthy lifestyle choices, yet heart disease continues to cause a large number of deaths each year.
In your post, think about the environment in which you live and work. What lifestyle changes could you or those around you make to improve their cardiovascular health? identify at least one other credible source, such as a recently published article , to increase your understanding of the dynamics of these illnesses.
2.
At this time, look at the air quality in your area by visiting the State of the AirWeb site managed by the American Lung Association.
For this discussion, report on the air quality in your area.
3.
Even though they were allies during World War II, the U.S. and the Soviet Union became adversaries following the war. What do you think were the causes? Could the Cold War have been avoided? Are we now headed for a new Cold War? Make sure to post your submissions and also reply to at least two postingsby other students.
Management ⇒ Business Law and Ethics ⇒ Business Laws I need a good tutor to do this work a perfectly well. I need a distinction in this I will pay more for this see attached files kindly bud if you are so sure of it thank you
INSTRUCTIONS
In the Sacred Texts booklet, you will find three Jewish texts, three Christian texts and three Islamic texts.
For each of the religious systems:
Answer the questions found on the Answer Sheet.
Scared text and answer sheet are attached
For this discussion board, think of an inductive argument that you or someone else you heard use in the past week. Break the argument down into its premise(s) and its singular conclusion. Explain why its an inductive argument.
In 2-3 paragraphs:
In 1-2 paragraphs:
Critique a classmate’s example and evaluation. Was the example given an accurate representation of an inductive argument? Do you think they were thorough in their evaluation? In what ways? Are there areas of their evaluation that can use improvement?
As always, be mindful of the rubric.
This week’s project is based on the game “Hurkle”. There are many variations of this game, and the version you will work on for your project is a one-dimensional version of it. The Hurkle is an imaginary creature that hides somewhere in a one-dimensional 1×10 integer game-space. Each time the game is run, the program places the Hurkle at a random position (0 through 10) in the game-and the player has a maximum of three (3) guesses to guess the Hurkle s location. The Hurkle does not move during the game. If the player finds the Hurkle, the program reports success and ends. If the player does not find the Hurkle the program gives a hint about what direction to move to find the Hurkle. There are two possible hints: right, or left.
The given version of the program is a console-based version (meaning the inputs and outputs happen on the console display). Run this code for the game Hurkle to see how it executes. It works well in the console but your job is to convert it for running in SWING with more graphical feedback for the user.You job is to experiment with the given code, and then adapt it by incorporating SWING features, such that the inputs and outputs will be more GUI-oriented, rather than console oriented. We’ve used SWING features in several programs already (in the lectures) and earlier project assignments, so you may want to review your textbook reading and the code examples in the week that use SWING.
Have fun, and don’t hesitate to ask questions.
import java.util.Random;
import java.util.Scanner;
publicclass Hurkle
{
publicstaticvoid main(String[] args) {
// TODO Auto-generated method stub
// gets user input for the keyboard
Scanner input = new Scanner(System.in);
//Gets a random number between 0 and 1
Random ran = newRandom();
//variable to hold the users’ guess
int usersAnswer;
finalint LIMIT = 10;
//variable to hold the system random number
int rGuess;
rGuess = ran.nextInt(LIMIT);
// Here we are creating an array of one character strings into a String variable named ‘display’
String[] display ={“0″,”1″,”2″,”3″,”4″,”5″,”6″,”7″,”8″,”9″,”10”};
System.out.println(“You get 3 tries to win!”);
// Tell the user how many tries they will get
for(int tries = 0; tries < 3; tries++) {
//ask the user for a guess
System.out.println(“What is your number guess?” + ‘n’);
//using the scanner class, get the user guess
usersAnswer = input.nextInt();
if(usersAnswer == rGuess){
System.out.print(“Bingo, you win!” + ‘n’);
tries = 9999; // 9999 is used because it is so far out of bounds it has to get out of the game
} else if (usersAnswer < rGuess){
display[usersAnswer] = “>”;
// replace the user guessed number with feedback: greater than, this is saving the feedback
} else{ // so it doesn’t get lost for the user
display[usersAnswer ] = “<“;
// replace the user guessed number with feedback: less than
}
// Display the number line with feedback
System.out.print(“Feedback : “);
for(int i=0;i<display.length;i++){
System.out.print( display[i] + ” ” );
}
} // end of for loop for the game
System.out.println(‘n’);
System.out.println( “Game Over, 3 tries you lose! The number was ” + rGuess); // 3 tries you lose
}
}
Read this attachment, which summarizes various areas of research related to the influence of the media on children’s emotional, moral and altruistic development. After reading the attachment, respond to the following items in a 2 – 3 page response paper.
I have the survey and scales, along with the hypothesis, and the annotated bibliography. Along with that I have the staistics to go along with the surveys. With the hypothesis there are sources that I used in the annotated bibliography to help get a better understanding of everything. I will help assist with anything as well, below are the requirements but I have the documents of my own which is my experiment. I just need help putting it all together please?!!!
Read the following word file and then edit the report.