Find the maximum value and minimum value in below mention code. Assign the maximum value to maxMiles, and the minimum value to minMiles. Sample output for the given program:

Min miles: -10
Max miles: 40
Here's what I have so far:

import java.util.Scanner;

public class ArraysKeyValue {
public static void main (String [] args) {
final int NUM_ROWS = 2;
final int NUM_COLS = 2;
int [][] milesTracker = new int[NUM_ROWS][NUM_COLS];
int i = 0;
int j = 0;
int maxMiles = 0; // Assign with first element in milesTracker before loop
int minMiles = 0; // Assign with first element in milesTracker before loop

milesTracker[0][0] = -10;
milesTracker[0][1] = 20;
milesTracker[1][0] = 30;
milesTracker[1][1] = 40;

//edit from here

for(i = 0; i < NUM_ROWS; ++i){
for(j = 0; j < NUM_COLS; ++j){
if(milesTracker[i][j] > maxMiles){
maxMiles = milesTracker[i][j];
}
}
}
for(i = 0; i < NUM_ROWS; ++i){
for(j = 0; j < NUM_COLS; ++j){
if(milesTracker[i][j] < minMiles){
minMiles = milesTracker[i][j];
}
}
}

//edit to here


System.out.println("Min miles: " + minMiles);
System.out.println("Max miles: " + maxMiles);
}

Answers

Answer 1

Answer:

Code works perfectly

Explanation:

There is nothing wrong with your program as it runs perfectly and displays the expected results.

You may need to compile with another compiler if you're not getting the required results.

I've added the source code as an attachment (unedited)


Related Questions

write a program that reads in a number n and prints out n rows each containing n star charactersg

Answers

In python:

rows = int(input("How many rows would you like? "))

i = 0

while i < rows:

   print("*" * rows)

   i += 1

I hope this helps!

المساعد للWhat property of a metal describes its ability to be easily drawn into
a wire but not rolled into a sheet without splitting? iww.

Answers

Answer:

Ductility

Explanation:

The global communication network that allows computers to connect and pass through information is called?

Answers

Answer: Internet

Explanation:

Answer:

The Internet.

Explanation:

Low level security is designed to detect and impede _____ some unauthorized external activity Some None Most All

Answers

Answer:

Low-level security is designed to detect and impede some unauthorized external activity.

Examples of low-level security systems include:

Basic physical obstacles to defense  Locks for increased-security  Simple lighting coverage  Standard alarm Systems

Explanation

Protection devices that prevent and track any unwanted external actions are called Low-Level security measures.

Other obstacles to the installation of the security system, such as reinforced doors, fences, high-security locks, and window bars and grates, are often installed after simple physical protection barriers and locks have been created.

Also, a simple lighting system that could not be more complex than the standard security lighting systems over windows and doors and a regular security warning system that will be an unattended unit that offers monitoring capability and sound warnings at the location of unwanted entry.

Storage facilities, convenience shops, and small business premises are some of the locations that incorporate low-level security devices.

Cheers

(ill give brainliest to the first one who answers)
Try out the improved version of the pet app that gives the user information about pet stores close by, which uses new sources of input. Determine the information that the app gets from each source of input. (please answer each and every one of them)

USER
PHONE SENSOR
INTERNET

Answers

Answer: it gives address the time to get there the things they selll

Explanation:

Lonnie has several workbooks that contain financial and sales data. He needs to ensure that if the data in a single cell in one workbook changes that it is automatically updated and reflected in another workbook. What should Lonnie create?

Answers

Answer: Linked cell

Explanation: I just did a test

Answer:

The person above is correct The answer is B:linked cell

Explanation:

Just finished Unit Test Review.

Jack has a fear of getting up in front of a group of people and giving a presentation when he gave his last presentation he taught quickly which made it hard for people to understand him what constructive criticism could you give Jack?

Answers

Answer:

You do not have confidence in your ability, and it shows. You need to get training on presenting.

Explanation:

Answer:

You did an amazing job on the research. When I present, I find it helpful to take a deep breath. It helps me relax and slow down, which helps my audience. (I haven't taken the exam yet. When I complete the exam I'll return to say if this is correct or not.) IT WAS CORRECT!!!

Explanation:

I want to emphasize that the question stated constructive criticism. If you say you don't have confidence and it shows. He could receive the criticism the wrong way.  When giving constructive criticism your goal is to help.

Help with number 12 please!

Answers

In #1 A can pass legally, in #2 B can pass legally, and in #3 neither can pass legally.

In which setting would you be least likely to find a full-time A/V technician?



A.) stadium

B.) concert hall

B.) restaurant

D.) school

Answers

Answer: resturant

Explanation: Resturants are about making food, not about making electric. The answer to the question is resturant.

Hope this helps!

Which of the following is NOT a reason to include comments in programs?

a. Comments help the computer decide whether certain components of a program
are important.

b .Comments help programmers debug issues in their own code

c. Comments help document how code was written for other programmers to use

d. Comments enable programmers to track their work throughout the development
process

Answers

Answer:

A Would be correct!

Explanation:

The reason for this is because in a code when you use the comment out the compiler will skip over it and will not do anything and will skip it. So the comment can help the computer do anything!

HOPE THIS HELPED MAKE ME THE BRAINLIST!

Using programming concepts, the option that is NOT a reason to include comments in a code is:

a. Comments help the computer decide whether certain components of a program  are important.

-------------------------

Usually, codes are very long, and each person is responsible for a part of the problem. The parts have to be intervened with each other, and thus, sometimes a programmer will have to look at another part of the code, not coded by him. Thus, for the programmer and other people working in the project to understand, comments are important.Additionally, the comments are used to help the programmers debug their own code, as they can go part by part and see what is done in each part, also helping them work throughout the development process.In a program, there may be some components that end up not being necessary, but this is not decided by comments, and thus, option A is not a reason to include comments in programs.

A similar problem is given at https://brainly.com/question/13527834

Raj’s computer just crashed and he lost most of his files. What should he do to avoid this problem in the future?

He should inspect the power and connection.
He should check all the cords and cables.
He should delete his browsing history.
He should back up his data regularly.

Answers

He should back up his data regularly

Answer:

Back up his data regularly.

Explanation:

Power and internet can go out at anytime

Cords (unless they are to a hard drive) is irrelevant in this situation

Browsing history is also irrelevant in this situation

I might be wrong about this, but that is the best solution in my opinion.

Hope this helps!

Implement the following logic in C++, Use appropriate data types. Data types are represented as either numeric (num) or string.
start
string name
string address
num item //use int
num quantity
num price //use double as data type
num SIZE = 6
num VALID_ITEM [SIZE] = 106, 108, 307, 405, 457, 688 //use int as data type
num VALID_ITEM_PRICE [SIZE] = 0.59, 0.99, 4.50, 15.99, 17.50, 39.00 //use double as data type
num i
bool foundIt = false
string MSG_YES = "Item available"
string MSG_NO = "Item not found" get name, address, item, quantity
i = 0
while i < SIZE
if item == VALID_ITEM [i] then
foundIt = true
price = VALID_ITEM_PRICE [i]
endif
i = i + 1
endwhile
if foundIt == true then
print MSG_YES
print quantity, " at " , price, " each"
print "Total ", quantity * price
else
print MSG_NO
endif
stop

Answers

Answer:

Follows are the modified code in c++ language:

#include<iostream>//header file

#include<string>//header file

using namespace std;

int main()//main method

{

string name,address, MSG_YES, MSG_NO;//defining string variable

int item,quantity,size=6, i=0;//defining integer variable

double price;//defining double variable  

int VALID_ITEM[]={106,108,307,405,457,688};//defining integer array and assign value

double VALID_ITEM_PRICE[]={0.59,0.99,4.50,15.99,17.50,39.00};//defining double array and assign value

bool foundIt=false;//defining bool variable  

MSG_YES="Item available";//use string variable to assign value

MSG_NO = "Item not found"; //use string variable to assign value

cout<<"Input name: ";//print message

cin>>name;//input value in string variable

cout<<"Input Address: ";//print message

cin>>address;//input value in string variable

cout<<"Input Item: "<<endl;//print message

cin>>item;//input value in string variable

cout<<"Input Quantity: "<<endl;//print message

cin>>quantity;//input value in string variable

while(i <size)//defining while that checks i less then size  

{

if (item ==VALID_ITEM[i]) //use if block to match item in double array

{

foundIt = true;//change bool variable value

price = VALID_ITEM_PRICE[i];//hold item price value in price variable  

}

i++;//increment the value of i

}

if (foundIt == true)//use if to check bool variable value equal to true

{

cout<<MSG_YES<<endl;//print value

cout<<"Quantity "<<quantity<<" at "<<"Price "<<price<<"each"<<endl;//print value

cout<<"Total"<<quantity*price;//calculate the total value

}

else//else block

cout<<MSG_NO;//print message  

}

Output:

please find the attached file.

Explanation:

In the above given C++ language modified code, four-string variable " name, address, MSG_YES, and MSG_NO", four integer variable "item, quantity, size, and i", and "integer and double" array is defined, that holds values.

In the string and integer variable "name, address, and item, quantity", we input value from the user-end and use the while loop, which uses the if block to check the "item and quantity" value from the user end and print its respective value.

what is the seven deadly sins

Answers

Answer:

Kill

lie

fight

..

..

.

..

pride, greed, lust, envy, gluttony, wrath, and sloth. but if you’re talking about the anime, you should watch it! it’s a good anime haha

Carlie was asked to review a software project for her company to determine specific deadlines. Which part of project management must she consider?

Analysis
Resources
Scope
Time

Answers

Answer:

Resources

Explanation:

Answer:

scope

Explanation:

Could someone explain a Boolean?

Answers

Answer:

It is a "True" or "False" integer.

Explanation:

denoting a system of algebraic notation used to represent logical propositions, especially in computing and electronics.

a binary variable, having two possible values called “true” and “false.”.

Answer:

Booleans are “truth values” — they are a data type that can contain either the value true or false. (These values may be represented as 1 or 0 in other programming languages!) Boolean statements are statements that evaluate to be true or false.

The Goal: Similar to the first project, this project also uses the random module in Python. The program will first randomly generate a number unknown to the user. The user needs to guess what that number is. (In other words, the user needs to be able to input information.) If the user’s guess is wrong, the program should return some sort of indication as to how wrong (e.g. The number is too high or too low). If the user guesses correctly, a positive indication should appear. You’ll need functions to check if the user input is an actual number, to see the difference between the inputted number and the randomly generated numbers, and to then compare the numbers.• Concepts to keep in mind: • Random function• Variables• Integers• Input/Output• Print• While loops• If/Else statements

Answers

Answer:

Here is the Python program:

import random #to generate random numbers

def generateRandNo(): #function to generate random number

    randNo = random.randint(1,100) #generates random number in range from 1 to 100

    return randNo #returns the generated random number

   

def userInput(message = "Guess the number "): #to gets integer input from user and return the input number

    userGuess = int(input(message)) #store the int type input from user in userGuess variable

    return userGuess #returns the user input number

   

def compareNumbers(userGuess,randNo): #compares the user input with actual randomly generated number

    if userGuess > randNo: # if user input is greater than actual number

         return "The number is too high"

    elif userGuess < randNo: #if user input is less than actual number

         return "The number is too low"

    else: #if user guess is correct

         return "Correct"

def main(): #main method

    correct = False #sets correct to False

    begin = True #sets start game i.e. begin to True

    while correct or begin: #while loop keeps repeating as long as user guess is correct or user wants to start game again

         guessCount = 0  #counts number of trials user takes to guess the correct number

         randNo = generateRandNo() #generates a random number using generateRandNo

         userGuess = userInput() #gets input number from user using userInput method

         guessCount+=1 #increments at each guess made by user

         message = compareNumbers(userGuess,randNo) #compares user guess input number with actual number

         

         while message != "Correct" : # while message is not equal to Correct

              print(message) #prints to guess the number

              userGuess = userInput("Try again: ") #keeps asking user to try again and enter a number

              guessCount = guessCount + 1 #increments guessCount  by 1 at each guess made by user

              message = compareNumbers(userGuess,randNo) #compares user input with actual number

         print()

         print(message,"It took you ",guessCount," attempts to answer\n") #prints how much trials user took to guess correct number

         choice = input("Do you wish to continue? (Enter yes or no) ") #asks user if user wants to start over

         if choice == 'no': # if user enters no

              exit(1) #exits the program

         else: #if user enters yes starts the game again

              correct = True #sets correct guess to True

main() #calls main method to start the guess game

Explanation:

The program is well explained in the comments attached with each line of the code. Suppose the randomly generated number (actual number) is 50 and user input is 24  then message The number is too low is displayed and if user guess input is 80 then The number is too high is displayed. If the user guesses the correct number i.e. 50 3rd time then the message displayed is:

It took you 3 attempts to answer.

The the user is asked to continue as:

Do you wish to continue? (Enter yes or no)

If user enters no the program exits if yes then user is asked to Guess the number again.

The screenshot of output is attached.

what can you say about the age of oceanic crust near and far from the mid oceanic rdge​

Answers

Answer:

The closer crust at the Mid Atlantic Ridge is newer, and the farther the crust is older.

Explanation:

The Mid Atlantic Ridge produces new crust, and pushes away older crust, which means the farther away the older.

What is the difference between a row and a column? Give examples

Answers

Answer:

bruh this a math question not tech

Explanation:

Answer:

a row is like stuff lined up side by side and a column could be many things but one of then is like a row of stuff but vertical

hope i help can u pls brainliest i need it :)

g Unlike when you create a String, when you create a StringBuilder, you must use the keyword ____________.

Answers

Answer:

Unlike when you create a String, when you create a StringBuilder, you must use the keyword new

Explanation:

Strings are used in programming which also opens the way for StringBuilder to be used too. In javascript, for instance, variables are useful for storing data, We have "Let" and "const" variables. Const variables cannot be changed after they’re created. The data stored are in types an example is a string. Strings allow one to write a value and store the result in a variable.

For example, using the dot operator, when you:

console.log('love'.length); // Prints 4

Note that console.log()  allows the computer to evaluate the expression inside the parentheses and print that result to the console.

.length prints 4 as the result. This shows how the string has a property that stores the number of characters in that string.

StringBuilder with the keyword "new" is used when we want to change or modify data property stored in a string.

WILL MARK AS BRAINLIEST
Describe the environmental issues in India and list ways that technology has been used to address these issues.

Answers

India has been having to engineer better technology to better prepare people in india for the brutal monsoon seasons in india

what specific Philippine law discusses copyright? elaborate?​

Answers

Answer: Republic Act No. 8293 "Intellectual Property Code of the Philippines".

Explanation:

The Republic Act No. 8293 is the Intellectual Property Code of the Philippines. It is the Philippine law that discusses copyright. This law protects copyrights, intellectual property, trademarks, and patents.

Examples of copyright that are protected under the law are photographic works, drawings, audiovisual works, and cinematographic works.

what tools IS used to mine stones and ores​

Answers

Answer:

pickaxe

Explanation:

that is the tool u use

A pickaxe or a pick.

Shown in minecraft and talked about in many story's that take place in the mines.

Depending on the pickaxe material, many things could be mines like stone and ore.

Lola is friends with a boy she chats with in an online video game. Lola only knows the boy by his screen name and avatar. He only knows her in the same way. Lola is careful to make good choices when talking to someone online, even someone she thinks she knows well. The boy asks her the following questions in a recent chat room meet-up. Which questions should she not answer?

a
What kind of music do you listen to?
b
What is your favorite subject?
c
What is your realname?
d
Will you promise to keep our friendship a secret?

Answers

Answer:

I think the answer should be d.

C and d follow the computer SMART code.

1. Add an import statement above the class declaration to make the Scanner class available to your program.
2. In the main method, create a Scanner object and connect it to the System.in object.
3. Prompt the user to enter his/her first name.
4. Read the name from the keyboard using the nextLine method, and store it into a variable called firstName (you will need to declare any variables you use).
5. Prompt the user to enter his/her last name.
6. Read the name from the keyboard and store it in a variable called lastName.
7. Concatenate the firstName and lastName with a space between them and store the result in a variable called fullName.
8. Print out the fullName.
9. Compile, debug, and run, using your name as test data.
10. Since we are adding on to the same program, each time we run the program we will get the output from the previous tasks before the output of the current task.

Answers

Answer:

import java.util.Scanner;

public class Assignment{

public static void main(String [] args)

{

Scanner input = new Scanner(System.in);

String firstName, lastName;

System.out.print("Firstname: ");

firstName = input.nextLine();

System.out.print("Lastname: ");

lastName = input.nextLine();

String fullName = firstName +" "+lastName;

System.out.print(fullName);

}

}

Explanation:

I'll use the line numbers in the question to point at the corresponding instruction

import java.util.Scanner; -- The import statement (1)

public class Assignment{

public static void main(String [] args)

{

Scanner input = new Scanner(System.in); -- Scanner object (2)

String firstName, lastName; -- Variable declarations

System.out.print("Firstname: "); ---- Prompt to enter first name (3)

firstName = input.nextLine(); --- User input for firstName (4)

System.out.print("Lastname: "); ---- Prompt to enter first name (5)

lastName = input.nextLine(); --- User input for lastName (6)

String fullName = firstName +" "+lastName; --- concatenating both user inputs (7)

System.out.print(fullName); --- Print out fullName (8)

}

}

You have a large text file of people. Each person is represented by one line in the text file. The line starts with their ID number and after that, has the person's name. The lines are sorted by ID number in ascending order. There are n lines in this file. You write a search function that returns the name of a person whose ID number is given The simplest way to do that would be to program a loop that goes through each line and compares the ID number in the line against the given ID number. If there is a match, then it returns the name in that line. This is very inefficient, because the worst-case scenario is that this program needs to go through almost everyone the person we are looking for could be last. using the fact that he tli s sored wil greany speed up the processbus to use a birarysearch alkrhm We go to the middle line of the file first and compare the ID found there (P) to the given ID (Q). (f the number of lines is even, we go above or below the arithmetic middle.) if P=Q then our algorithm terminates . we have found the person we are looking for. If P is less than Q, that means that the person we are looking for is in the second half of the file. We now repeat our algorithm on the second half of the file. If P is greater than Q, that means that the person we are looking for is in the first half of the file. We now repeat our algorithm on the first half of the file.

Required:
Of what order is the worst-case number of comparison operations that needed for this algorithm to terminate?

Answers

Answer:

...............fp......

Which of these is outside the scope of an art director's responsibility?

Answers

Answer:

Establishing Tight deadlines for a rush job.

Explanation:

The time taken for a rush job has nothing to do with the art director because it has nothing to do with art. Also rush jobs already call for tight deadlines so technically the deadline is already established.

Answer: cropping a photograph for the sake of space

Explanation: edge 22

Write a short quiz program which asks three true/false questions and stores the user's answers as booleans. At the end the program it should print the user's answers with the correct answers.

Note: you should use the same quiz questions and correct answers as the sample run below.

Sample run:

Java is a programming language, true or false?
true
Only numbers can be stored by variables in Java, true or false?
true
There are only 2 possible values which can be held by a boolean variable, true or false?
false
Question 1 - Your answer: true. Correct answer: true
Question 2 - Your answer: true. Correct answer: false
Question 3 - Your answer: false. Correct
AP CS A Unit 1: Lesson 3 - Coding Activity 3

Answers

this answering question interface is bleh

The concept of boolean variables is that; variables declared as boolean type can only take any of two values. The variable can either be true or false. Such variable cannot take any other value apart from these two.

The short quiz program is as follows.

Please note that comments are used to explain difficult lines.

import java.util.*;

public class shortQuiz{

public static void main(String[] args) {

 Scanner input = new Scanner(System.in);

//This declares the variables that represent correct answers as boolean data type; the variables are also initialized

 boolean q1 = true, q2 = false, q3 = true;

//This declares the response to each question as boolean data type

 boolean q1response, q2response, q3response;

//This prints the first question

 System.out.print("Java is a programming language, true or false? ");

//This gets input for the first response

 q1response = input.nextBoolean();

//This prints the second question

 System.out.print("Only numbers can be stored by variables in Java, true or false? ");

//This gets input for the second response

 q2response = input.nextBoolean();

//This prints the third question

 System.out.print("There are only 2 possible values which can be held by a boolean variable, true or false? ");

//This gets input for the third response

 q3response = input.nextBoolean();

//This prints your first response, alongside the correct answer to the first question

 System.out.println("Question 1 - Your answer: "+q1response+". Correct answer: "+q1);

//This prints your second response, alongside the correct answer to the second question

 System.out.println("Question 2 - Your answer: "+q2response+". Correct answer: "+q2);

//This prints your third response, alongside the correct answer to the third question

 System.out.println("Question 3 - Your answer: "+q3response+". Correct answer: "+q3);

//The program ends here

}

}

See attached image for program sample run.

The above program initializes the correct answers using boolean variables. The correct answers are then printed, after the user answers the three questions.

Read more about boolean variables at:

https://brainly.com/question/16843003

Which of the following industries does not use technology?

Medicine

Marketing and advertising

Law enforcement

Arts and entertainment

None of the above

Answers

Answer:

None of the above

Explanation:

Medicine uses technology to research

Advertiseres use platforms like Instagram to share the product they are promoting

Law enforcement uses tech to pull up databases of people's records

Arts and entertainment use them to create (in some cases), share, and sell their art.

Hope this helps!

Answer:

E

Explanation: got it right on edge 2020

What are the four components of the Universal Systems Model?

Answers

Answer:

output, process, input, and feedback

Explanation:

Create a class named FormLetterWriter that includes two overloaded methods named displaySalutation(). The first method takes one String parameter that represents a customer's last name, it displays the salutation "Dear Mr. or Ms." followed by the last name. The second method accepts two String parameters that represent a first and last name, and it displays the greeting "Dear" followed by the first name, a space, and the last name. After each salutation, display the rest of a short business letter: "Thank you for your recent order." Write a main() method that tests each overloaded method. Save the file as FormLetterWriter.java.

Answers

Answer:

Follows are the code to this question:

public class FormLetterWriter//defining class

{

static void displaySalutation(String last_Name)//defining a method displaySalutation  

   {

       System.out.println("Dear Mr. or Ms. " + last_Name);//print value

   }

   static void displaySalutation(String first_Name, String last_Name) //overload the method displaySalutation

   {

       System.out.println("Dear " + first_Name + " " + last_Name);//print value

   }

   public static void message()//defining a method message  

   {

       System.out.println("Thank you for your recent order.");//print message

   }

   public static void main(String[] args) //defining main method

   {

       displaySalutation("I Kell");//calling a method displaySalutation by passing a single String value

       message();//calling message method

       displaySalutation("Christ", "John");//calling a method displaySalutation by passing a two String value

       message();//calling message method

   }

}

Output:

please find the attached file.

Explanation:

In the above given program a calss "FormLetterWriter" is defined, in side the class we perform the method overloading, in which a method "displaySalutation" is used in first definition it accepts a single string variable "first_Name", and in second time, it accept two string variable " first_Name and last_Name".

Inside the both method, we use print method, that print its value, and an onther method message is defined, that print the given message.

In the class main method is declared, in which we apply mathod overloading and also call the message method for print the given business letter.  

Other Questions
How much is the number 727731000 in percent formI need yall to answer this question quickly you will recieve a ton of points if you do. What is the answer to 5x6 Having a lot of slaves gave the image of ___ to the outside world. talent kindness great wealth poverty During the 1700s, there was a great change in thought called the ______, people began to rely on reason and experience rather than religious thinking. GIVING BRAINLIEST A client heard through its hotline that John, the purchases journal clerk, periodically enters fictitious acquisitions. After John creates a fictitious purchase, he notifies Alice, the accounts payable ledger clerk, so she can enter them in her ledger. When the payables are processed, the payment is mailed to the nonexistent suppliers address, a post office box rented by John. John deposits the check in an account he opened in the nonexistent suppliers name. Required a. Define fraud, fraud deterrence, fraud detection, and fraud investigation. b. List four personal (as opposed to organizational) fraud symptoms, or red flags, that indicate the possibility of fraud. Do not confine your answer to this example. c. List two procedures you could follow to uncover Johns fraudulent behavior. (CIA Examination, adapted) please help meee name this tissue how can you work with anybody annoying you white your working at home on a test? A 0.6 kg basketball moving 7.2 m/s to the right collides with a 0.04 kg tennisball moving 22 m/s to the left. After the collision, the tennis ball is moving32.7 m/s to the right. What is the velocity of the basketball after the collision?Assume an elastic collision occurred.A. 10.9 m/s to the rightB. 10.9 m/s to the leftC.3.6 m/s to the leftD. 3.6 m/s to the right why is the case number important in a investigation identify the compound that plants make to store it as energy. A. lightB. waterC. oxygenD. glucoseE. carbon dioxide Sammy was a normal little boy. There was nothing in his life to indicate that he was anything different from anyone else. When he completed high school, he obtained a job in a factory, operating a machine press. On this job he had an accident and lost his hand. It was replaced with an artificial hand that looked and operated almost like a real one.Is Sammy Alive?Soon afterward Sammy developed a severe intestinal difficulty, and a large portion of his lower intestine had to be removed. It was replaced with an elastic silicon tube.Is Sammy Alive?Everything looked good for Sammy until he was involved in a car accident. Both of his legs and his good arm were crushed and had to be amputated. He also lost an ear. Artificial legs enabled Sammy to walk again, and an artificial arm replaced the real arm. Plastic surgery enabled doctors to rebuild the ear.Is Sammy Alive?Over the next several years, Sammy was plagued with internal disorders. First, he had to have an operation to remove his aorta and replace it with synthetic vessel. Next, he developed a kidney malfunction, and the only way he could survive was to use a kidney dialysis machine (no donor was available for a kidney transplant). Later, his digestive system became cancerous and was removed. He received nourishment intravenously. Finally, his heart failed. Luckily for Sammy, a donor heart was available, and he had a heart transplant.Is Sammy Alive?It was now obvious that Sammy had become a medical phenomenon. He had artificial limbs, nourishment was supplied to him through his veins; therefore he had no solid wastes. All waste material was removed by the kidney dialysis machine. The heart that pumped his blood to carry oxygen and food to his cells was not his original heart. But Sammy's tranplanted heart began to fail. He was immediately placed on a heart-lung machine. This supplied oxygen and removed carbon dioxide from his blood, and it circulated blood throughout his body.Is Sammy Alive?The doctors consulted bioengineers about Sammy. Because almost all of his life-sustaining functions were being carried on by machine, it might be possible to compress all of these machines into one mobile unit, which would be controlled by electrical impulses from Sammy's brain. This unit would be equipped with mechanical arms to enable him to perform manipulative tasks. A mechanism to create a flow of air over his vocal cords might enable him to speak. To do all of this, they would have to amputate at the neck and attach his head to the machine, which would then supply all the nutrients to his brain. Sammy consented, and the operation was successfully performed. Is Sammy Alive?Sammy functioned well for a few years. However, a slow deterioration of his brain cells was observed and was diagnosed as terminal. So the medical team that had developed around Sammy began to program his brain. A miniature computer was developed: it could be housed in a machine that was humanlike in appearance, movement, and mannerisms. As the computer was installed, Sammy's brain cells completely deteriorated. Sammy was once again able to leave the hospital with complete reassurance that he would not return with biological illness.Is Sammy Alive? What term BEST describes a plan or goal that steers someones behavior?predicamentmotifagendamuse 1. Which of the following was NOT an enlightenment thinker?O John LockeO Thomas HobbesOVoltaireO Benjamin Franklin0Montesquieu Read these two accounts, one nonfiction and one fiction, of the Chicago World's Fair. Then select the statement that best describes how the passages convey similar information about the event.A. Both passages show how the fair affected ordinary peopleB. Both passages go into detail about how the fair came to be held C. Both passages are more logical than emotional in toneD. Both passages give a sense of how large and important the fair was -3. Proteins are made where in the cell? The art club is raising money for a new equipment. They need $842.36 to purchase new supplies and have received a $300.00 donation. The remaining amount will be equally divided among 4 different fundraisers throughout the summer. How much money will each fundraiser need to raise in order to purchase the new net and equipment? sorry forgot to add the answersIf a piece of ribbon is 4 and 3 over 4. feet long, how long is it in inches? 48 inches 57 inches 60 inches 62 inches What is 7% tax of 20$ purchase Find the Product(2 X 6) X 10 to the power of 3 Janet, Rosi, and Tanya buy postcards from their favorite souvenir shop Janet buys 3 postcards for $1.05 Rosie by five postcards for $1.75 Tanya Buys eight postcards for $3.80 are the cost why in dollars and the numbers of postcards extra personal explain your answer right in equation to represent the relationship if possible