this type of error could be the result of the programmer making an incorrect calculation. group of answer choices run time

Answers

Answer 1

This kind of mistake may be the outcome of an inaccurate calculation made by the programmer. logic in the syntactic runtime compiler.

What form of error results in a program's incorrect output?

A logic mistake is a type of runtime fault that can cause a software to output data that is incorrectly.

What kind of error happens when a programmer uses an incorrect calculation or forgets to use a programming technique?

A logic error happens when a programmer does an incorrect calculation or skips a step when programming. Think about an endless circle. Documentation is a collection of usage guidance and explanations in writing. It is not merely something that is done at the end of programming.

To know more about programmer visit:-

https://brainly.com/question/13956629

#SPJ4


Related Questions

which of the following uses technical and artistic skills to create visual products that communicate information to an audience? ○computer engineer ○typography ○computer animator ○graphic designer​

Answers

Answer:

grafic desiner

Explanation:

just a guess lol

Answer:

I don't know...

Explanation:

D

PLEASE AWNSER 50 POINTS PLUS BRAINLEST ILL FAIL MY GRADE IF I DONT AWNSER IN A HOUR!

Code in Python

Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out "Error - cannot divide by zero."

Hint: Since this lesson uses if-else statements, remember to use at least one if-else statement in each of your answers to receive full credit.

Sample Run 1
Numerator: 10
Denominator: 0
Sample Output 1
Error - cannot divide by zero.
Sample Run 2
Numerator: 12
Denominator: 15
Sample Output 2
Decimal: 0.8

Answers

Answer:go to google

google should know

thats a lot of math ;p

Explanation:

Bro how the hell do u do full screen on windows
(LAPTOP. NOT PC.)
f11 does not work, does anyone have a solution?

Answers

Answer:

You'll need to hold down/click f11 and fn at the same time.

If not that, try ctrl + shift + f5.

I can guarantee the first works; not too sure about the second.

Explanation:

Well, it's hotkeys, so...

EDIT: The f5 command does nothing related to full screen, my bad.

Answer:

f11 should work just hold it down or restart your computer and try it again

Explanation:

Why is it useful to teach Karl new commands

Why is it useful to teach Karl new commands

Answers

Answer:

It's important to teach karl more commands so karl can do more tasks and create more complex algorithms

Explanation:

it’s useful because they would know what to do when you say something . example of you say turn left they would not know what to do because they have not been taught . that’s why you should teach them new commands .

sheila makes to do list below she then mages some changes and revises the to-do list which actions did sheila have to take to make the changes observed

Answers

Answer: Assign or Edit a task in a task list

Explanation:

Tap more then tap the Tasks tab    

Go to the list where you want to edit a task

Tap the task you want to edit.                                                                          

Personal Trainer, Inc. owns and operates fitness centers in a dozen Midwestern cities. The centers have done well, and the company is planning an international expansion by opening a new "supercenter" in the Toronto area. Personal Trainer’s president, Cassia Umi, hired an IT consultant, Susan Park, to help develop an information system for the new facility. During the project, Susan will work closely with Gray Lewis, who will manage the new operation.
Background
Susan finished work on system architecture issues, and her system design specification was approved. Now she is ready to address system implementation tasks, including quality assurance, structure charts, testing, training, data conversion, system changeover, and post-implementation evaluation.
Tasks
1. You have asked Gray Lewis to contribute to the user manual for the new system. He suggested that you include a section of frequently asked questions (FAQs), which you also could include in the online documentation. Prepare 10 FAQs and answers for use in the printed user manual and context-sensitive Help screens.
2. Suggest a changeover method for the new billing system and provide specific reasons to support your choice. If you recommend phased operation, specify the order in which you would implement the modules. If your recommendation is for pilot operation, specify the department or area you would select as the pilot site and justify your choice.

Answers

Answer:

yes you can and i can yes

Explanation:

Internet Retailing

Visit an e-commerce Web site such as Amazon.com and find a product you would like to purchase. While looking at the page for that item, count the number of other products that are being offered on that page.

Activity

Answer the following questions: What do they have in common? Why are they appearing on that page?

Answers

When I visited the e-commerce Web site such as Amazon.com and find a product that I would like to purchase which is a laptop, The thing that the sellers have in common is that they are trusted and verified sellers, their product presentation is nice and has warranty on it.  The reason they are appearing on that page is because the product are similar.

What is E-commerce site website?

The term e-commerce website is one that enables customers to buy and sell tangible products, services, and digital commodities over the internet as opposed to at a physical store. A company can process orders, receive payments, handle shipping and logistics, and offer customer care through an e-commerce website.

Note that there are numerous eCommerce platforms available, each with its own set of characteristics. The optimal eCommerce platform will therefore rely on your demands, available resources, and business objectives.

So, for instance, if you're a novice or small business owner looking to set up an online store in only a few clicks, go with a website builder like Hostinger. Oberlo, on the other hand, boasts the best inventory management system for dropshippers and is the top eCommerce platform overall.

Learn more about e-commerce Web site  from

https://brainly.com/question/23369154
#SPJ1



Display “Welcome to (your name)’s fuel cost calculator.”

Ask the user to enter name of a trip destination.

Ask the user to enter the distance to that trip destination (in miles) and the fuel efficiency of their car (in mpg or miles per gallon).

Calculate the fuel required to get to destination and display it.

Use the formula: Fuel amount = Distance / Fuel efficiency, where Fuel is in gallons, Distance is in miles and Fuel efficiency is in miles per gallon.

Your program should follow Java convention for variable names (camelCase).

Ask the user to enter fuel price (in dollars per gallon) in their area.

Compute trip cost to get to destination and display it.

Use the formula: Trip fuel cost = Fuel amount x Fuel price, where trip fuel cost is in dollar amount, fuel is in gallons, and fuel price is in dollars per gallon.

You need to convert this mathematical formula to a Java statement. Be sure to use the right operator symbols! And, as before, follow Java convention for variables names (camelCase).

Compute and display total fuel cost for round trip, to reach and return from destination, using the formula: Round Trip Fuel Cost = 2 x Trip fuel cost

You need to convert this mathematical formula to a Java statement!

Compute and display number of round trips possible to Nashville, 50 miles away, with $40 worth of fuel. Use the fuel efficiency and fuel price entered by user earlier. Perform the computation in parts:

One can compute how much fuel can be bought with $40 from:

Fuel bought = Money available / Fuel cost = 40 / Fuel price, where fuel bought is in gallons and fuel price is in dollars per gallon.

One can compute fuel required for one round trip:

Fuel round trip = 2 * distance / fuel efficiency = 2 * 50 / fuel efficiency, where fuel round trip is in gallons and fuel efficiency is in miles per gallon

Compute number of round trips possible by dividing the amount of fuel that can be bought by the amount of fuel required for each round trip (Formula: round trips = fuel bought / fuel round trip).

Note that this value should be a whole number, and not a fraction.

Use integer division! Type cast the division quotient into int by writing (int) in front of the parenthesized division.

Display “Thank you for using (your name)’s fuel cost calculator.”

Answers

The code required is given as follows:

public class FuelCostCalculator {

public static void main(String[] args) {

System.out.println("Welcome to ChatGPT's fuel cost calculator.");

   // Get user input

   Scanner scanner = new Scanner(System.in);

   System.out.print("Enter the name of the trip destination: ");

   String destination = scanner.nextLine();

   System.out.print("Enter the distance to " + destination + " (in miles): ");

   double distance = scanner.nextDouble();

   System.out.print("Enter your car's fuel efficiency (in miles per gallon): ");

   double fuelEfficiency = scanner.nextDouble();

   System.out.print("Enter the fuel price in your area (in dollars per gallon): ");

   double fuelPrice = scanner.nextDouble();

   

   // Calculate fuel required and trip cost

   double fuelAmount = distance / fuelEfficiency;

   double tripFuelCost = fuelAmount * fuelPrice;

   double roundTripFuelCost = 2 * tripFuelCost;

   

   // Calculate number of round trips possible to Nashville

   double fuelBought = 40 / fuelPrice;

   double fuelRoundTrip = 2 * 50 / fuelEfficiency;

   int roundTrips = (int) (fuelBought / fuelRoundTrip);

   

   // Display results

   System.out.println("Fuel required to get to " + destination + ": " + fuelAmount + " gallons");

   System.out.println("Trip fuel cost to " + destination + ": $" + tripFuelCost);

   System.out.println("Round trip fuel cost to " + destination + ": $" + roundTripFuelCost);

   System.out.println("Number of round trips possible to Nashville: " + roundTrips);

   

   System.out.println("Thank you for using ChatGPT's fuel cost calculator.");

}

}

What is the rationale for the above response?  

The above Java code is a simple console application that calculates fuel costs for a trip based on user input. It takes in user inputs such as the destination name, distance, fuel efficiency, and fuel price.

The program then uses these inputs to calculate the fuel required to reach the destination, the trip fuel cost, round trip fuel cost, and the number of round trips possible to a nearby location. Finally, it outputs the results to the console. The code uses basic arithmetic operations and variable assignments to perform the calculations.

Learn more about Java at:

https://brainly.com/question/29897053

#SPJ1

Choose the type of collection created with each assignment statement. collectionA = {5:2} collectionB = (5,2) collectionC = [5, 2]

Answers

Answer:

CollectionA is Dictionary

CollectionB is List

CollectionC is Tuple

Explanation:

List is recognized by the square brackets

Tuple by the parentheses

Dictionary by the curly brackets

Answer:

Dictionary collectionA

Tuple collectionB

List collectionC

Explanation:

A dictionary uses curly brackets. A tuple uses parentheses. A list uses square brackets.

user intent refers to what the user was trying to accomplish by issuing the query

Answers

Answer:

: User intent is a major factor in search engine optimisation and conversation optimisation. Most of them talk about customer intent ,however is focused on SEO not CRO

Explanation:

On page 104, of Think Like a Computer Scientist, you learned about paired data. With paired data, you can use a for loop with two index variables to iterative through the data. In this exercise you will create a turtle drawing using pairs of data, where the first item of the pair is the distance to move forward , and the second item is the angle to turn.. Set up a list of pairs so that the turtle draws a house with a cross through the center, as show here. This should be done without going over any of the lines / edges more than once, and without lifting your pen.

Your first pair of data will be (100,135). In a list this will look like ls = [ (100, 135) ] Then you need to add the other pairs for the remaining lines and angles. The 100 represents the distance forward the turtle will travel. The 135 represents the angle the turtle will turn left.

Screen capture of run of program showing house figure

Hint: Your first line should be the bottom line. Then turn left 135 degrees and go forward. You may wish to create the drawing without the list first, then substitute a list and a for loop for the distances and angles.



Use two functions: a main() function that sets up screen and turtle objects, and a drawhouse() function that takes a turtle object as an argument.



Includes comments at the top to identify file name, project and a brief description.

For further documentation, include comment for each section of code. Write in Python asap

On page 104, of Think Like a Computer Scientist, you learned about paired data. With paired data, you

Answers

Answer:

import turtle

def drawhouse(t):

   # find the length of diagonal of a square with side = 100

   # formula: diagonal = sqrt(2) * side

   diagonal = 100 * (2 ** 0.5)

   data = [(100, 135), (diagonal, -135), (100, -135), (diagonal, -135), (100, -45), (diagonal / 2, -90),

           (diagonal / 2, -45), (100, 0)]

   for dist, angle in data:

       t.forward(dist)

       t.left(angle)

def main():

   t = turtle.Turtle()

   drawhouse(t)

   turtle.done()

main()

10 sentences about computer parts.

Answers

One computer part is the CPU, it’s a piece of hardware the last allows your computer to access and interact all the applications and programs. The first ever CPU chip was invented around 4 decades ago. The keyboard is another computer part and it allows the user to type letters and numbers. There are about 104 keys on a keyboard and there are different parts in it. Some of the parts include, control keys, function keys, navigation keys, numeric keypad, and so on. A mouse is another device used with the keyboard to position the cursor. It’s a hand held device that detects two-dimensional motion relative to a surface. This motion is typically translated Into the motion of a pointer on a display, which allows a smooth control of the graphical user. Memory is a device to store all of your information and saved data. The motherboard is the backbone that tied together the computers components at one spot.

TRUE OR FALSE YOU VERIFIED BRAINLIST​

TRUE OR FALSE YOU VERIFIED BRAINLIST

Answers

Answer: 6. False

7. True

8. True

9. True

10. False

Explanation:

6. This is false. Cnidarians are aquatic animals that can be found in marine environments. They aren't wormlike. Examples are corals and jelly fish.

7. Snails, clams, oysters, squid and octopuses are mollusks. They're invertebrates and usually live in water.

8. True. Invertebrates are the animals that don't have backbone unlike the vertebrates that has backbone. Examples of invertebrates are snail, earthworm etc.

9. True. The Arthropods are known to be the largest group in the animal kingdom. They include insects, millipedes, crabs, lobsters, spiders, mites, centipedes, etc.

10. False. The crustacean doesn't have one pair of leg per segment.

Answer:

This guy has been scamming peoples questions. He doesnt deserve good grades

Explanation:

what are the three main components of an operating system? define each of them.

Answers

The three main components of an operating system are:

1. manage the computer's resources (this includes the central processing unit, memory, printers, and disk drives).

2. establish a user interface (this is where the human interacts with a computer, website or application. the UI, also known as user interface, is to make the user's experience easy and intuitive).

3. execute and provide services for applications software (this is the interface between the application program and the hardware, which gets carried out from OS).


Integrated circuits are made up of that carry the electrical current

Answers

Answer:


solid-state components

Explanation:

PLS HELP WILL MARK BRAINLINESS AND 30 POINTS
In your own words in at least two paragraphs, explain why it is important, when developing a website, to create a sitemap and wireframe. Explain which process seems most important to you and why you feel most drawn to that process.

(i.e. paragraph one is why is it important and paragraph two is which process felt most important to you and why)

Answers

When creating a website, it is important to create a sitemap so that a search engine can find, crawl and index all of your website's content. a sitemap makes site creation much more efficient and simple. A sitemap also helps site developers (assuming you have any) understand the layout of your website, so that they can design according to your needs.

A wireframe is another important step in the web design process. Creating a website is like building a house. To build the house, you first need a foundation on which to build it upon. Without that foundation, the house will collapse. The same goes for a website. If you create a wireframe as a rough draft of your website before going through and adding final touches, the entire design process will become much easier. If you do not first create a wireframe, the design process will be considerably more difficult, and you are more likely to encounter problems later on.

To me, the wireframe is the most important due to the fact that is necessary in order to create a good website. In order to create a sitemap, you first need a rough outline of your website. Without that outline, creating a sitemap is impossible.

Nicole is in a study group to prepare for a test on plant biology, a subject she knows a lot about. During their meetings, she always comes prepared, helps other students, does most of the talking, and handles all of the tasks. What does Nicole need to do to make the study group more effective?

Answers

Answer:

B

Explanation:

She did all of the work so the other students wherent able to do anything

The thing that Nicole needs to do to improve the study group is to involve others and give them tasks.

What is a Study Group?

This refers to the collection of persons that forms a group with the aim of learning and revising together.

Hence, we can see that because Nicole does most of the tasks in the study group for the test on plant biology, she would have to involve the other students so they would handle some of the work.

Read more about study groups here:

https://brainly.com/question/23779014

#SPj2

What feature allows a person to key on the new lines without tapping the return or enter key

Answers

The feature that allows a person to key on new lines without tapping the return or enter key is called word wrap

How to determine the feature

When the current line is full with text, word wrap automatically shifts the pointer to a new line, removing the need to manually press the return or enter key.

In apps like word processors, text editors, and messaging services, it makes sure that text flows naturally within the available space.

This function allows for continued typing without the interruption of line breaks, which is very helpful when writing large paragraphs or dealing with a little amount of screen space.

Learn more about word wrap at: https://brainly.com/question/26721412

#SPJ1

Is it true or false? Just have been stuck on this for a bit about CNC milling.

Is it true or false? Just have been stuck on this for a bit about CNC milling.

Answers

The answer is trueeeee

which of these outcomes become more likely for someone with strong personal finance skills

Answers

Answer:

give me the outcomes

Explanation:

be a banker if thats your skill

Q10: You cannot rename a compressed folder.

Answers

Answer:Oh yes you can.

Click slowly twice the folder.

Right click and choose rename.

Answer in python code:

1) Ask a student to input three different grades for the same subject. Print the highest grade and the average

[ ]
[ ]
[ ]
[ ]
2) Ask a user to input three different color (RED, GREEN, BLUE only). Print out how many colors of each do you have (Ex: You have 1 RED and 2 BLUES, OR you have 3 GREENS, OR you have 1 GREEN and 2 BLUES)

[ ]
[ ]
[ ]
3) (GAME - GUESS a NUMBER) Use the library RANDOM. Generate the random number between 1 and 10. Ask a user to guess number 4 times. If the number is higher than random number print "Your number is higher, you have 3 tries left", if the user guesses number right, print "YOU WON"

[ ]
[ ]
[ ]
[ ]
4) Generate THREE random numbers between 1 and 100. Print each number AND the statement if this number is divisible by THREE. Ex: Generated numbers are 10, 21 and 60. Print "The number 10 is NOT divisible by three, number 21 is divisible by 3, the number 60 is divisible by three"

[ ]
[ ]

Answers

that’s a whole assignment

Write a method that converts a time given in seconds to hours, minutes and seconds using the following header:

public static String convertTime(int totalSeconds)

The method returns a string that represents the time as hours:minutes:seconds.

Write a test program that asks the user for the time in seconds and then display the time in the above format.

Answers

Answer:

hope this helps.

Explanation:

import java.util.*;

class Timeconvert{ //class nane

public static String convertTime(int totalSeconds) /* fn to convert seconds to hh:mm:ss format */

{

int sec = totalSeconds; // a copy of totalSeconds is stored in sec

int m=sec/60; //to find the total min which obtained by doing sec/60

int psec=sec%60; //psec store remaining seconds

int hrs=m/60; //stores hr value obtained by doing m/60

int min=m%60; //stores min value obtained by m%60

return (hrs + ":" + min+ ":" +psec);// returning that string

}

}

public class Main

{

  public static void main(String[] args) {

  Timeconvert t = new Timeconvert();

  Scanner in = new Scanner(System.in); //Scanner class

System.out.println("Enter the number of seconds:");

int sec = in.nextInt(); //to input number of seconds

System.out.println("hours:minutes:seconds is " + t.convertTime(sec)); //result

 

  }

}

HELP ASAP
Tasks of Forensic Tools
This activity will help you meet these educational goals:

- Content Standards—You will learn about the tasks performed by forensic analysis tools.
- Inquiry—You will conduct online research, in which you will collect information and communicate your results in written form.
- 21st Century Skills—You will employ online tools for research and communicate effectively.
Directions:
Read the instructions for this self-checked activity. Type in your response to each question, and check your answers. At the end of the activity, write a brief evaluation of your work.

Activity
Research and describe the tasks performed by forensic analysis tools.

Answers

Answer:

Here are the tasks performed by forensic analysis tools:

Acquisition: This is the first step an analysis tool employs. The procedure involves capturing the data that the digital forensics expert needs to assess. The forensic expert creates a copy of the data, which prevents the original data from corrupting. There are two methods of acquisition: physical acquisition and logical partition. During physical acquisition, the experts copy the entire storage and analyze it. During logical partition, the experts create virtual partitions of the storage. Each partition has an individual operating system in it.

Validation and discrimination: Validation helps in verifying whether the copied data is correct or not. Discrimination is the next step, where the forensic experts sort suspicious and non-suspicious data. Validation and discrimination can be done in three ways: hashing, filtering, or analyzing file headers. Hashing converts characters into smaller values, making them easier to find. Filtering helps sort out suspicious files. Analyzing file headers helps the experts check whether a particular file has an incorrect file extension.

Extraction: Extraction is the next step, in which forensic experts recover the data. The experts employ different data-viewing techniques so they can view various file and folders. They also perform a keyword search, which helps them arrive at the target file that contains the needed information. Extraction also involves decompressing any compressed files so that the experts can view the data in detail. Experts also carry out carving, where they salvage and reconstruct partially deleted files and folders. Then, they try to decrypt any encrypted files using possible passwords. Once the experts find evidence, they bookmark it to use it for later reference.

Reconstruction: After finding evidence, the experts reconstruct another copy that contains the evidence. They can duplicate a file from one disk to another disk or one image to another disk. Similarly, they can create a copy by duplicating one partition to another partition or an image to another partition.

Reporting: Once the evidence is reconstructed, the experts create a detailed report of their findings. They create reports using HTML or web pages. Some experts use PDF formats to produce the reports.

Explanation:

Sample Answer from Edmentum/Plato bestie!! <3

what is the best method to avoid getting spyware on a machine

Answers

Answer: The best method to avoid getting spyware on a user machine is to download software only from trusted websites. And depending on the machine it might say that "This download you are about to install might have spyware or malware and it might infect your laptop" "Do you wish to continue?"

100 POINTS Can someone help me write a code in python. a program which can test the validity of propositional logic. Remember, a propositional logical statement is invalid should you find any combination of input where the PROPOSITIONAL statements are ALL true, while the CONCLUSION statement is false.

Propositional Statements:

If someone has a rocket, that implies they’re an astronaut.

If someone is an astronaut, that implies they’re highly trained.

If someone is highly trained, that implies they’re educated.

Conclusion Statement:

A person is educated, that implies they have a rocket.

Your output should declare the statement to either be valid or invalid. If it’s invalid, it needs to state which combination of inputs yielded the statement invalid.

Answers

For the code that returns the above output see the attatched.

How does the above code work?

Rocket(), astronaut(), highly trained(), and educated() are the four functions defined in the code that correlate to the propositional propositions. These functions just return the value of the argument passed in.

The test_proposition() method examines all possible input combinations and evaluates the conclusion statement. It returns the exact combination that invalidates the assertion if any combination produces the conclusion statement as false while all propositional statements are true. Otherwise, "Valid" is returned.

Learn more about code at:

https://brainly.com/question/26134656

#SPJ1

Which option is the default configuration of the Junk Email Options in Outlook 2016?

No Automatic Filtering
Low
High
Safe Lists Only

Answers

Answer:

No Automatic Filtering

Answer:

NO automatic filtering

Explanation:

i took the quiz

Read string integer value pairs from input until "Done" is read. For each string read, if the following integer read is less than or equal to 45, output the string followed by ": reorder soon". End each output with a newline.

Ex: If the input is Tumbler 49 Mug 7 Cooker 5 Done, then the output is:

Mug: reorder soon
Cooker: reorder soon

Answers

The program to Read string integer value pairs from input until "Done" is read. For each string read, if the following integer read is less than or equal to 45, output the string followed by ": reorder soon" is given below.

Here's a Python program solution to your problem for given input:

while True:

   # Read string integer pairs from input

   try:

       name = input()

       if name == "Done":

           break

       value = int(input())

   except ValueError:

       print("Invalid input format")

       continue

   # Check if the value is less than or equal to 45

   if value <= 45:

       print(name + ": reorder soon")

Thus, this program reads string integer pairs from input until "Done" is read. For each pair, it checks if the integer value is less than or equal to 45.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ1

The major goal of a good web information
a
retrieval system is

Answers

Answer:

Explanation:

The major objective of an information retrieval system is to retrieve the information – either the actual information or the documents containing the information – that fully or partially match the user's query.

Templates are most helpful for which tasks? Check all that apply. writing letters creating images formatting résumés creating sales pitches adjusting photographs making unique designs

Answers

Answer:

writing letters

formatting résumés

creating sales pitches

Explanation: edge

Answer:

I need some more words to write so like yeah.

Explanation:

A

C

D

Other Questions
the sum of the digits of a two-digit number is subtracted from the number. the units digit of the result is 66. how many two-digit numbers have this property? THE SAME PERSON IS NOT ALLOWED TO HIT THE BALL TWO TIMES IN A ROW Select the correct answer. What was King Piyes major accomplishment in Egypt?A. He united Egypt and Kush. B. He taught Egyptians archery. C. He defeated the Assyrian ruler. D. He built the highest pyramid When a salt is dissolved in water, it is represented by the following notation in a chemical reaction?a) (l)b) (s)c) (aq) If the price charged for a candy bar is p cents, then x thousand candy bars will be sold in a certain city, where p = 19 - . how many candy bars must be sold to maximize revenue? xenotransplantation, in which ________ tissues are used for transplants in humans, is a growing research area in health care delivery. Help i dont understand this question in points what pricing strategy is Disney using for PremierAccess? Is this an appropriate strategy? What is the total area of the three triangles? 12.5 square units 13 square units 13.5 square units 14 square units Por favor ir a casa de Juan y pdele mi libro Can somebody tell me how I would use a table to solve the product (2x 4)(3x + 5)? Degree day calculations are based on a temperature of? If in the sterilization process half a population of bacteria were killed in the first minute, what proportion of the remaining population would be killed in the second minute? Hello, can you help me with this question? Exercice 1Sarah, who is twenty years old, runs regularly. During her workouts, she monitors her heart rate.It thus determined its maximum recommended heart rate and obtained 193 beats per minute. When she is forty years old, her maximum heart rate will be 178 beats per minute.Is it true that over this twenty-year period his maximum heart rate will have decreased by about 8%? 5. Miss Caroline, Scout's first-grade teacher, is annoyed with Scout because shethinks her behavior is obnoxious. She also believes Scout revels in attention andbelieves she is loud, belligerent, and sassy. True or False _________ is one of the more common theories of consciousness which states that consciousness represents a distinct substance from the body/brain. g with food in the duodenum, levels of the hormone gip rise. which hormone does gip cause to be released in anticipation of the absorption of the meal? What is the midpoint of the vertical line segment graphed below?10(2,4)X-1010(2,-9)-10 each of the sides and the diagonals of a regular pentagon are randomly and independently colored red or blue with equal probability. what is the probability that there will be a triangle whose vertices are among the vertices of the pentagon such that all of its sides have the same color?