I need help with this as soon as possible pls.

Complete the pseudocode for the following grading scale, following the style of the existing pseudocode.

Numerical Grade

Letter Grade

100 - 90

A

89 - 80

B

79 - 70

C

69 - 60

D

<= 59.4

F



/*IF grade >= 90

/* PRINT “A”

/*ELSEIF grade >=80 AND grade <= 89

/* PRINT “B”

/*

/* PRINT “C”

/*ELSEIF grade >=60 AND grade <= 69

/* PRINT “D”

/*ELSE

/* PRINT “F”

(It is not/*ELSEIF grade>=70 AND <=79)

Answers

Answer 1

Answer:

/*ELSEIF grade >=70 AND grade <= 79

Explanation:

You have to have the variable grade in both parts of the ELSEIF statement >=70 and <=79

The hint says t is not/*ELSEIF grade>=70 AND <=79 since this statement has the variable grade only at the >= part not the <= part


Related Questions

Which of the following algorithms has the smallest time complexity? A. binary search B. insertion sort C. linear search D. merge sort​

Answers

An algorithm which has the smallest time complexity is: B. insertion sort.

What is time complexity?

Time complexity can be defined as a measure of the amount of time that is required by an algorithm to run till its completion of the task with respect to the length of the input.

Basically, the time complexity of an algorithm is defined by f(N) if; for all "N" and all inputs with length "N" the execution of the algorithm takes a maximum of f(n) steps. Therefore, the time complexity of an algorithm is also a measure of the efficiency of an algorithm.

In this scenario, an algorithm which has the smallest time complexity is insertion sort with O(N²).

Read more on time complexity of an algorithm here: brainly.com/question/28477302

#SPJ1

What is the keyboard shortcut for pasting information that you have already copied to the clipboard?.

Answers

The keyboard shortcut for pasting data that has already been copied to the clipboard is CTRL + V.

A keyboard shortcut, also referred to as a hotkey, is a sequence of one or more keys used in computing to quickly launch a software application or carry out a preprogrammed action.

This procedure might be included in the operating system's or application program's standard functionality, or it might have been programmed by the user using a scripting language. A "key" is sometimes defined differently depending on the integrated keyboard; some keyboards with pointing devices also have keys. For instance:

Copy: Ctrl + CCut: Ctrl + XPaste: Ctrl + V

Learn more about keyboard shortcut https://brainly.com/question/12531147
#SPJ4

A discovery schedule with a shazzam batch size of 5000 contains a /24 subnet ip range. A shazzam probe during discovery ______

Answers

A discovery schedule with a shazzam batch size of 5000 contains a /24 subnet ip range. A shazzam probe during discovery will be launched 1 time.

What will be searched during the discovery run will depend on the discovery timetable. We benefit from the discovery timetable in the following ways: identification of devices based on IP addresses. defining the use of credentials for device probes.

Plan a weekly or monthly exploration. Set up discovery to happen at predetermined intervals, like every 48 hours.

IP discovery is the process of looking for IP devices on your network using one or more techniques, such as SNMP, ICMP, or neighbourhood scanning.

For the first time, download an application from the ServiceNow Store. Get access to a product or application for security operations. A ServiceNow Store application must be activated.

Construct an integration for Security Operations.

Learn more about subnet ip range:

https://brainly.com/question/12976384

#SPJ4

suppose that a javascript application that’s on your computer consists of an html file, a css file, and a javascript file. to run the application, you can

Answers

To be able to run the application, you can option b: find the JavaScript file in your file explorer and double-click on it.

For what is JavaScript used for?

JavaScript is known to be a term that is often used by programmers all over  the world to make   dynamic and interactive web content such as the various  applications and browsers.

Note that the JavaScript is seen as a programming language that is often used as a client-side programming language and as such, To be able to run the application, you can option b: find the JavaScript file in your file explorer and double-click on it.

Learn more about JavaScript from

https://brainly.com/question/16698901

#SPJ1

Suppose that a JavaScript application that’s on your own computer consists of an HTML file, a CSS file, and a JavaScript file. To run the application, you can

Question 6 options:

find the HTML file in your file explorer and double-click on it

find the JavaScript file in your file explorer and double-click on it

use the Open command in your browser to find and open the JavaScript file

enter just the path and filename of the JavaScript file into your browser’s address bar

What is the additional space complexity of removing an element at the back of a queue with n elements and returning the queue with all other elements in their original order?.

Answers

Since no additional space is needed for each operation, the space complexity of any operation in a queue is O(1). 

The temporal complexity for enqueue and dequeue operations on a linked list used to implement a queue is O (1).

Simply said, stacks and queues adhere to the first-in, last-out (stacks), and first-in, first-out (queues) principles (queues). However, the time complexity for stacks is O(1) and the time complexity for queues is O for JavaScript array methods that come out of the box (n).

On a queue that is initially empty, the worst case time complexity of a series of n queue operations is (n). Complexity of a sequence of "n" queue operations is equal to the sum of the complexity of the enqueue and dequeue operations.

Learn more about queue:

https://brainly.com/question/24275089

#SPJ4

What needs changing to make the following code work?

age = 15
print("The user's age is: " + age)

Group of answer choices

Change the print statement to read:
print("The user's age is: " + str(age))

Omit the apostrophe (')

Nothing, the code works as-is

Change the print statement to read:
print("The user's age is: " + int(age))

Answers

Answer:

print("The user/'s age is:" + age)

Explanation:

You can not use apostrophes in strings.

are there any hexadecimal digits that cannot be created using 4 bits? how many bits would you need to represent the hexadecimal value 1016? if you wanted to be able to represent every hexadecimal value from 016 to ff16, how many bits would you need? describe how you would go about converting 1001 0011 1101 10102 into hexadecimal. what is this value in hexadecimal?

Answers

1.No there is no any hexadecimal digits that cannot be created using 4 bits. Hexadecimal digits can all be created using 4 digits/2.The number of bits required to to represent the (10)16 is 5 bits.3. To represent every hexadecimal value from 016 to ff16, 8 bits will be required4. The given number is in binary and to convert any binary number to hexadecimal, we convert it sets of 4 digits to the hexadecimal equivalent.5. The value of converting the given binary to a number in  hexadecimal is 93DA

what is hexadecimal?

The term hexadecimal refers to a number systems in base 16. Most number systems are in decimal or base ten however hexadecimal is a kind of number system that is in base 16. Hexadecimal has the base ten numbers from 0 to 9 and additional letters A, B, C, D , E, and F

How to convert to binary to hexadecimal

(1001 0011 1101 1010) base 2

1001= 8+0+0+1=9

0011=0+0++2+1=3

1101=8+4+0+1=13=D

1010=8+0+2+0=10=A

bringing the values together gives

93DA

Read more on hexadecimal here: https://brainly.com/question/11109762

#SPJ1

you manage a network that has multiple internal subnets. you connect a workstation to the 192.168.1.0/24 subnet. this workstation cannot communicate with any other host on the network. you run ipconfig /all and see the following:

Answers

Based on the configuration written below, the most likely cause of the problem is Incorrect subnet mask.

What is an Incorrect Subnet Mask?

The issue of an Incorrect Subnet Mask will take place if a network uses a subnet mask that is not theirs for its address class, and a client is still said to be configured with the same default subnet mask for the address class, and thus communication tend to fail to some closeby networks.

Therefore, Based on the configuration written below, the most likely cause of the problem is Incorrect subnet mask.

Learn more about subnet mask from

https://brainly.com/question/27418272

#SPJ1

See full question below

You manage a network that has multiple internal subnets. You connect a workstation to the 192.168.1.0/24 subnet.

This workstation can communicate with some hosts on the private network, but not with other hosts. You run ipconfig /all and see the following:

Ethernet adapter Local Area Connection: Connection-specific DNS Suffix . : mydomain.local Description . . . . . . . : Broadcom network adapter Physical Address. . . . . . : 00-AA-BB-CC-74-EF DHCP Enabled . . . . . . . : No Autoconfiguration Enabled. . . : Yes IPv4 Address . . . . . . . : 192.168.1.102(Preferred) Subnet Mask. . . . . . . . : 255.255.0.0 Default Gateway . . . . . . : 192.168.1.1 DNS Servers . . . . . . . : 192.168.1.20 192.168.1.27

What is the most likely cause of the problem?

myocardial dysfunction in patients with cancer. heart fail clin 18(3):361-374, 2022. pmid: 35718412.

Answers

The main cause of morbidity and mortality in cancer patients is myocardial dysfunction. Cardiotoxicities associated with cancer therapy have a significant role in the development of cardiomyopathy in this patient population.

In addition, the emergence of myocardial dysfunction is also associated with cardiac AL amyloidosis, cardiac malignancies/metastases, accelerated atherosclerosis, stress cardiomyopathy, systemic and pulmonary hypertension.

Here, we provide an overview of the state of knowledge about the causes of cardiac dysfunction when cancer and cancer-related treatments are present.

In addition, we provide a succinct summary of major suggestions on the monitoring and treatment of cardiac dysfunction caused by cancer therapy, which are based on the consensus of professionals in the field of cardio-oncology.

Learn more about myocardial dysfunction:

https://brainly.com/question/19778576

#SPJ4

consider the principles of web server hardening and determine which actions a system administrator should take when deploying a new web server in a demilitarized zone (dmz).

Answers

The principles are:

Secure a guest zoneUse SSH for uploading filesUse the configuration templates provided

What is web server hardening?

Web server hardening involves is known  as the act of altering the configuration file to remove  server misconfigurations.

Note that the act of handling SSL/TSL certificates and its settings is one that makes sure that one  do secure communication that exist between the client and server.

Therefore, The principles are:

Secure a guest zoneUse SSH for uploading filesUse the configuration templates provided

Learn more about web server from

https://brainly.com/question/27960093

#SPJ1

Embedded computers usually are small and have limited hardware but enhance the capabilities of everyday devices. True or false?.

Answers

Embedded computers usually are small and have limited hardware but enhance the capabilities of everyday devices: True.

What is a computer?

A computer can be defined as an electronic device that is designed and developed to receive data in its raw form as an input and processes these data through the central processing unit (CPU) into an output (information) that could be used by an end user.

What is a computer hardware?

A computer hardware can be defined as a physical component of an information technology (IT) or computer system that can be seen and touched such as:

Random access memory (RAM).Read only memory (ROM).Central processing unit (CPU)KeyboardMonitorMouseMotherboard bios chip

Generally, embedded computers such as robotic vacuum cleaners, smart wrist-watches, home security systems, etc., usually are small and have limited hardware, but are designed and developed to enhance the capabilities of everyday devices.

Read more on embedded computers here: https://brainly.com/question/14614871

#SPJ1

Which digital communication medium consists of top-level posts with threads of response posts?.

Answers

Answer:

A discussion board

Explanation:

Im big brain like that

meaningful combinations of text and symbols that a web browser interprets to display the webpage are called\

Answers

The code is known to be meaningful combinations of text and symbols that a web browser interprets to display the webpage.

What is Computer code?

In regards to computer programming, computer code is known to be a term that connote a given composition of instructions, or a system that is made up of rules, which are known to be written in a specific programming language (such as the the source code).

Note that this is one that is often called the source code after it has been processed and as such, The code is known to be meaningful combinations of text and symbols that a web browser interprets to display the webpage.

Learn more about Computer code from

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

when an event occurs, the agent logs details regarding the event. what is this event called? mib get trap oid

Answers

If an event occurs, the agent logs details regarding the event. what is this event called GET.

What are agent logs?

Agent Log File Information is known to be the start  of the log file that is said to depict the startup of the agent that is known to be handling the services as well as the configuration settings.

Note that  the agent log also has in it, the series of agent runtime activity as well as the exceptions that are done and it is used for troubleshoot deployment problem.

Therefore, If an event occurs, the agent logs details regarding the event. what is this event called GET.

Learn more about agent from

https://brainly.com/question/7284696

#SPJ1

comparative clinical and cost analysis between surgical and non-surgical intervention for knee osteoarthritiis

Answers

To assess the treatment options and costs for osteoarthritis of the knee (OAK), a condition that affects the knee joint and progresses over time owing to cartilage and bone deterioration.

Methods: Over the course of two years, we prospectively examined the clinical results and quantified cumulative direct expenses of patients with OAK sent to our multidisciplinary OA programme.

A total of 133 patients were evaluated. All showed radiographic signs consistent with moderate to severe OAK. We tracked and examined changes in the Western Ontario McMaster Osteoarthritis Index (WOMAC), Minimal Clinically Important Improvement (MCII), and BMI.

The total direct expenditures for all subjects' medical and surgical care during a two-year period were calculated.

Learn more about osteoarthritis:

https://brainly.com/question/28546590

#SPJ4

What runtime is needed to remove an element at the bottom of a stack with n elements and return the stack with all of the other elements in their original order?.

Answers

Question: What runtime is needed to remove an element at the bottom of a stack with n elements and return the stack with all of the other elements in their original order?

Answer: O(n)

What is the additional space complexity of removing an element at the back of a queue with n elements and returning the queue with all other elements in their original order?.

Answers

The space complexity of any operation in a queue is O because no more space is required for each operation (1).

Enqueue and dequeue operations on a linked list that is used to implement a queue have an O temporal complexity (1).

Simply said, the first-in, last-out (for stacks) and first-in, first-out (for queues) concepts apply to both stacks and queues (queues). However, for JavaScript array techniques that come out of the box, the time complexity for stacks is O(1) and the time complexity for queues is O. (n).

The worst case time complexity of a series of n queue operations on an initially empty queue is (n). The complexity of the enqueue and dequeue operations is added together to determine the complexity of a sequence of "n" queue operations.

Learn more about queue:

brainly.com/question/24275089

#SPJ4

Given num_rows and num_cols, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1a or 3e. Print a space after each seat.

Answers

First, obtain the user's input about the number of rows and columns, where rows correspond to the seat's digit number and columns to its letter.

Rows are set to start at 1 by default, but if you delete it, seat numbers will begin from 0.

The first loop is utilised for numbers from 1 to the number of rows.

Letters beginning with 1 are utilised in the second loop up to the number of columns.

We are changing the int type to string type because rows and cols are different types.

The columns A, B, and C will continue to be updated by the print(str(rows)+cols) counter.

rows=rows+1 counter will continue to update rows 1, 2, and 3.

Learn more about digit number:

https://brainly.com/question/26856218

#SPJ4

reports by what organization brought to the american public the issues and/or opportunities in safer care through the use of computers?

Answers

Reports by the Institute of Medicine organization brought to the American public the issues and/or opportunities in safer care through the use of computers.

With the release of the Institute of Medicine's report on safer care through the use of computers, the American public is now aware of the issues and opportunities that exist in this area. While some may see this as a daunting task, others see it as a way to improve the quality of care for all patients.

By using computers to store and track patient information, we can make sure that all staff members have access to the most up-to-date information. This can help reduce errors and improve communication between all members of the care team. In addition, by using computer-based systems, we can track outcomes and identify areas where improvements can be made.

Ultimately, the goal is to provide safer, more efficient care for all patients. While there may be some challenges to implementing these changes, the potential benefits are clear.

Learn more on Institute of Medicine organization here:

https://brainly.com/question/21285227

#SPJ4

Which two wildcard characters are supported by the find and replace dialog box in an excel worksheet?.

Answers

Answer:

? , *

Explanation:

complete the following function, strcat list(l), which generalizes the previous function: given a list of strings, l[:], returns the concatenation of the strings in reverse order. for example:

Answers

Using the knowledge in computational language in python it is possible to write a code that strcat list(l), which generalizes the previous function: given a list of strings, l[:], returns the concatenation of the strings in reverse order.

Writting the code:

def strcat_ba(a, b):

   assert type(a) is str

   assert type(b) is str

   return(b + a) #Megan's Code

def random_letter():

   from random import choice

   return choice('abcdefghijklmnopqrstuvwxyz')

def random_string(n, fun=random_letter):

   return ''.join([str(fun()) for _ in range(n)])

a = random_string(5)

b = random_string(3)

c = strcat_ba(a, b)

print('strcat_ba("{}", "{}") == "{}"'.format(a, b, c))

assert len(c) == len(a) + len(b)

assert c[:len(b)] == b

assert c[-len(a):] == a

print("\n(Passed!)")

def strcat_list(L):

   assert type(L) is list

    print ("REMOVE THIS BUT THIS IS ALEX CODE ")

   print ("arg to strcat_list:",L)

   "".join(L)

   print ("what you tried to return:",L[::-1])

   print ("what you should return:","".join(L[::-1]))

   print ("REMOVE THIS BUT THIS IS ALEX CODE ")

   return "".join(L[::-1])

n = 3

nL = 6

L = [random_string(n) for _ in range(nL)]

Lc = strcat_list(L)

print ("REMOVE THIS BUT THIS IS ALEX CODE ")

for i,x in zip(range(nL), L):

 print (i,x)

 print ("cond 1:",Lc[i*n:(i+1)*n])

 print ("cond 2:",L[nL-i-1])

print ("REMOVE THIS BUT THIS IS ALEX CODE ")

print('L == {}'.format(L))

print('strcat_list(L) == \'{}\''.format(Lc))

assert all([Lc[i*n:(i+1)*n] == L[nL-i-1] for i, x in zip(range(nL), L)])

print("\n(Passed!)")

See more about python at brainly.com/question/18502436

#SPJ1

when you work in the enterprise digital group, you test and verify the integrity of standalone workstations and network servers.

Answers

False, When you work in the enterprise digital group, you test and verify the integrity of standalone workstations and network servers.

When you work in the enterprise digital group, you don't just test and verify the integrity of standalone workstations and network servers. You also help design, implement, and manage enterprise-wide digital initiatives. In other words, you're a key part of making sure that an organization's digital transformation is successful.

So what does that mean, exactly? Well, it means that you need to have a pretty broad skillset. You need to understand not only how to test and verify the functionality of digital systems, but also how to design and implement those systems in the first place. And of course, you also need to be able to effectively manage and coordinate digital projects across an entire enterprise.

In short, being part of the enterprise digital group means being a jack-of-all-trades when it comes to digital.

Learn more on enterprise digital group here:

https://brainly.com/question/24944681

#SPJ4

What is the maximum number of NTP Servers that an NTP client can be synchronized with?

A. 2
B. Unlimited
C. 1
D. 4

Answers

Answer:

it will be unlimited NTP

The maximum number of NTP Servers that an NTP client can be synchronized with unlimited server. Thus option B is correct.

what is server ?

A server is a computer device which  provides service to client as per their requirement with respect to space and data; it is nothing but a physical computer that runs a server program in a center called  data center.

The machine can be act as a dedicated server, a model where the client service operated called client/server programming model, these program fulfils requests from client programs which can run on the same or different computers.

A computer application on the server can be operated as per the request  from client or from other programmer, it can also keep the feature or component of the folders from a website, hooked up into the web and facilitates the sharing of stored information with certain network linked computers.

For more details regarding server, visit

brainly.com/question/7142205

#SPJ2

if there are multiple slots available on one time, can i block off one option when the other is taken signupgenius

Answers

If you're planning an event and want to give people the option to sign up for different time slots, you might be wondering if you can block off one option when the other is taken.

The short answer is yes, you can do this with SignupGenius. When you create your signup, you'll see an option to "lock" a time slot after a certain number of people have signed up. This is helpful if you only have a limited number of spots available, or if you want to make sure that people who sign up for a certain time slot are actually committed to attending.

Of course, you can always change the number of people allowed in a time slot, or remove the lock entirely, if you need to. So if you're not sure how many people will be signing up, you can always adjust as needed.

Learn more on Sign up here:

https://brainly.com/question/27960093

#SPJ4

an algorithm that uses a constant number k of integer variables to find a number list's minimum value has space complexity s(n)

Answers

An algorithm that uses a constant number k of integer variables to find a number list's minimum value has space complexity S(N) = N and auxiliary space complexity S(N) = k.

What is time complexity?

Time complexity can be defined as a measure of the amount of time that is required by an algorithm to run till its completion of the task with respect to the length of the input.

Basically, the time complexity of an algorithm is defined by f(N) if; for all "N" and all inputs with length "N" the execution of the algorithm takes a maximum of f(n) steps. Therefore, the time complexity of an algorithm is also a measure of the efficiency of an algorithm.

Read more on time complexity of an algorithm here: https://brainly.com/question/28477302

#SPJ1

Complete Question:

An algorithm that uses a constant number k of integer variables to find a number list's minimum value has space complexity S(N) = _____ and auxiliary space complexity S(N) = _____.

Group of answer choices:

A.  k, N

B. N, N

C. k, k

D.  N, k

Which of the following is NOT a computer peripheral?

Scanner
Keyboard
Printer
Central Processing Unit

Answers

Answer:CPU stands for the central processing unit. CPU is not a peripheral device.

Explanation:

CPU stands for the central processing unit. CPU is not a peripheral device.

The Central Processing Unit (CPU) is NOT a computer peripheral; it is the main processing unit and brain of the computer itself. Therefore, option D is correct.

A computer peripheral, like a devoted entourage, encompasses a diverse array of external devices that extend the capabilities and interactions of the central computer.

Positioned at the periphery of the computer's core, these ingenious companions facilitate input, output, and auxiliary functions with finesse. From the tactile prowess of keyboards and mice to the visual acuity of monitors and scanners, these peripheral partners empower users to engage with the digital realm effortlessly.

Printers give digital creations tangible form, while external storage devices guard precious data. Acting as a united team, computer peripherals enhance the user's experience, orchestrating a harmonious symphony of technology and convenience.

Therefore, option D is correct.

Learn more about computer peripheral here:

https://brainly.com/question/33510040

#SPJ7

Which is the correct way of positioning the keyboard to prevent RSI?

A.

raise the front of the keyboard about 1/4 inches

B.

raise the front of the keyboard about 3/4 inches

C.

raise the front of the keyboard about 1/2 inches

D.

raise the front of the keyboard about 1/3 inches

E.

raise the back of the keyboard about 3/4 inches


Answer ASAP for 30 Points!!!

Answers

Answer:

Position the keyboard in front of you

Answer:

Position the keyboard in front of you

Explanation:

janet’s friend has tagged her in an unflattering photo. to control her digital footprint, janet should

Answers

To control her digital footprint, Janet should untag herself or she need to ask the friend to remove the photo.

What is in a digital footprint?

The term  digital footprint is known to be a term that connote a trail of data that a person often makes while they are known to be using the Internet.

Note that it is made up of  the websites a person visit, emails that they  send, and information they had submitted  to online services. A passive digital footprint is seen as a data trail a person is known to have unintentionally left online.

Therefore, To control her digital footprint, Janet should untag herself or she need to ask the friend to remove the photo.

Learn more about digital footprint from

https://brainly.com/question/13805577

#SPJ1

describe one advantage of using QR codes rather than traditional barcodes. Explain how barcodes bring the advantage you have describes

Answers

The advantage of using QR codes rather than traditional barcodes is that QR codes are known to be quiet  smaller.

Bar coding offers a lot of advantages such as the Reduction in errors.

Why are QR codes smaller?

QR codes are known to be quiet smaller  when compared to  traditional barcodes.

Note that the QR code can be about 10 times smaller when compared to a bar code and are known to be still readable.

Therefore, based on the above, one can say that the The advantage of using QR codes rather than traditional barcodes is that QR codes are known to be quiet  smaller. Bar coding offers a lot of advantages such as the Reduction in errors.

Learn more about barcodes from

https://brainly.com/question/13117502

#SPJ1

Read the following scenario, and then decide if you should upgrade the computer.

You have a desktop that you use primarily for writing essays for school and browsing the web at home. The computer is slowing down some, so you check the date on it. Your computer is six years old. It is amazing that it lasted this long. You probably need a better CPU and more RAM. What should you do?

Do not upgrade.

Upgrade.

Answers

Answer:

Upgrade

Explanation:

Answer:

upgrade.

Explanation:

Other Questions
You are swimming each 25-yard length of a swimming pool 3 secondsfaster than your personal best. What integer represents your change intime of your personal best after 200 yards? ginnie has an interest-only home equity loan at an annual interest rate of 7%. if her monthly payment is $1,458, how much is the loans principal balance (rounded to the nearest dollar)? Is 225 + 196 a rational or irrational number? Which statement about "The Jilting of Granny Weatherall" most clearlydescribes stream of consciousness? What was feudalism? (Define the structure.) teece, profiting from technological innovation: implications for integration, collaboration, licensing and public policy, rsch. policy 6. What does the term "directionality" refer to when discussing polynucleotides? Can anyone pleases solve this? Source 7 illustrates a perceptualregion, which is based on people'simpressions. Source 8 illustrates afunctional region, which is based ona practical function that connectslocations within a given area. Howdo the boundaries of these typesof regions compare to more formallike political boundaries? Compare the species richness, species diversity, and species evenness in the two areas. Describe two factors you thinkcould account for the differences in species richness/diversity/evenness in the two areas.!!Please answer in 2 sentences!! Review. A global positioning system (GPS) satellite moves in a circular orbit with period 11h 58 min.(b) Determine its speed. Describe Lavoisier's famous presentation and why his assertion ofL.O.C.O.M. replaced the Phlogiston Theory of ordinary burning. In thisassignment you must briefly research the Phlogiston Theory of ordinaryburning. a large beaker of water is filled to its rim with water. a block of wood is then carefully lowered into the beaker until the block is floating. in this process, some water is pushed over the edge and collects in a tray. the weight of the water in the tray is a large beaker of water is filled to its rim with water. a block of wood is then carefully lowered into the beaker until the block is floating. in this process, some water is pushed over the edge and collects in a tray. the weight of the water in the tray is less than the weight of the block. greater than the weight of the block. equal to the weight of the block. Please answer these two questions! negotiation is a process reserved only for the skilled diplomat, top salesperson, or ardent advocate for an organized lobb What entities did the federalgovernment participate with inrevenue sharing?A. CongressC. state and localgovernmentsB. the militaryD. the Supreme Court What is the domain of the graph below. What can contribute to erosion? Select ALL that apply. which ctso giada should join? giada should join fccla. giada should join fea. giada should join hosa. giada should join tsa. heidi was able to walk 2/3 of a mile in 12 minutes how far could heidi walk in 1 hour