a major online data service wants to provide better response and access times for its users and visitors. they plan on deploying thousands of mini-web servers to isps across the nation. these mini-servers will host the few dozen main pages of their website so that users will be routed to the logically and geographically closest server for optimal performance and minimal latency. only if a user requests data not on these mini-servers will they be connecting to the centralized main web cluster hosted at the company's headquarters. what is this type of deployment commonly known as?

Answers

Answer 1

This type of deployment commonly known as Edge computing.

What does edge computing mean?

A variety of networks and devices that are at or close to the user are referred to as edge computing, an emerging computing paradigm. Edge is mostly about processing data more quickly and in larger volume near to the point of generation, providing action-driven solutions in real time.

Give an illustration of what edge computing is.

Everywhere we look, from the gadget on your arm to the computers analyzing junction traffic flow, edge computing is already being utilized. Streaming video optimization, smart utility grid analysis, safety monitoring of oil rigs, and drone-assisted agricultural management are more examples.

To know more about edge computing visit

brainly.com/question/28256857

#SPJ4

Answer 2

A significant online data business wishes to give its users and visitors faster response and access times. This deployment style is referred to as edge computing.

What does edge computing mean?

Edge computing is a new computing paradigm that refers to a range of networks and gadgets that are at or near the user. Near the point of generation, Edge focuses primarily on processing data more quickly and in greater volume while delivering real-time, action-driven solutions.

Give a concrete example of edge computing.

Edge computing is already in use everywhere we look, from the device on your arm to the computers evaluating junction traffic flow. Additional examples include the  streaming video, smart utility grid analysis, safety monitoring of oil rigs, and drone-assisted agricultural management.

To know more about edge computing visit :

brainly.com/question/28256857

#SPJ4


Related Questions

what is the output
a = 10
b = 23
print (a+b * a)​

Answers

Answer:

240 is the output.

hope it will help you.




Give an E-R diagram for database showing fatherhood, motherhood and spouse relationship among men and women.​

Answers

An Entry Relationship (ER) data model is a type of data model that is used to represent the relationships between entities in a database.

What is database?

A database is a collection of organized data, stored and accessed electronically. Databases provide a structure for storing and organizing data that is easily accessed, managed and updated.  

It is a type of logical data model that is used to illustrate the logical relationships between entities in a database. An ER diagram is a graphical representation of an ER data model.
Below is an ER diagram for a database showing fatherhood, motherhood and spouse relationship among men and women:
Fatherhood Relationship:
Father -----------------------------> Son/Daughter
Motherhood Relationship:
Mother -----------------------------> Son/Daughter
Spouse Relationship:
Husband ---------------------------> Wife
Wife ---------------------------> Husband

To learn more about database
https://brainly.com/question/29804491
#SPJ1

Complete Question:
what is entry relationship data model ?give an ER diagram for a database showing fatherhood,motherhood and spouse relationship among men and womean.​

Select the correct answer.
Lionel writes for his personal blog. He would like to know how many users visit his blog. Which tool will help him to know the number of users visiting his blog?
A.
Microsoft Word
B.
Antiword
C.
StatsCounter
D.
pdftohtml
E.
Cron

Answers

The answer is B I did the test

Answer:

Antiword is your answer

Explanation:

Which two options are advantages of Smart Objects?

Answers

Smart Objects offer several advantages in design work. Firstly, they allow for non-destructive editing. This means that any adjustments or changes made to a Smart Object will not affect the original image or design. Instead, the changes are made to a separate layer within the Smart Object, making it easy to undo or modify later on.

This feature is especially useful when working on complex designs that require multiple edits or revisions. Secondly, Smart Objects offer scalability without compromising image quality. When a Smart Object is scaled up or down, it maintains its sharpness and clarity, unlike regular images that can become pixelated or blurry when resized. This makes it easy to create designs that can be used across different mediums, such as print and digital, without worrying about image quality issues. Overall, the non-destructive editing and scalability advantages of Smart Objects make them a valuable tool for designers who want to create high-quality, flexible designs. By incorporating Smart Objects into their workflow, designers can work more efficiently and with greater flexibility, resulting in more professional-looking designs that meet the needs of their clients or projects.

Learn more about non-destructive editing here-

https://brainly.com/question/21951556

#SPJ11

How would I add a play again feature to this RPS program in python using a while loop?

import random

choice = input("Enter Rock(R), Paper(P), or Scissors(S): ")

computer = random.randint(1, 3)

if computer == 1:

print("Computer played R.")

elif computer == 2:

print("Computer played P.")

else:

print("Computer played S.")

#Winning conditions

if computer == 1 and choice == "R":

print("Computer played Rock.")

print("Tie")

elif computer == 2 and choice == "P":

print("Computer played Paper.")

print("Tie")

elif computer == 3 and choice == "S":

print("Computer played Scissors.")

print("Tie")

elif computer == 1 and choice == "S":

print("Computer played Rock.")

print("You Lose")

elif computer == 2 and choice == "R":

print("Computer played Paper.")

print("You Lose")

elif computer == 3 and choice == "P":

print("Computer played Scissors.")

print("You Lose")

elif computer == 1 and choice == "P":

print("Computer played Rock.")

print("You Win")

elif computer == 2 and choice == "S":

print("Computer played Paper.")

print("You Win")

elif computer == 3 and choice == "R":

print("Computer played Scissor.")

print("You Win")

Answers

Answer:

import random

playAgain = True;

while playAgain == True:

   choice = input("Enter Rock(R), Paper(P), or Scissors(S): ")

   computer = random.randint(1, 3)

   if computer == 1:

    print("Computer played R.")

   elif computer == 2:

    print("Computer played P.")

   else:

    print("Computer played S.")

#Winning conditions

   if computer == 1 and choice == "R":

    print("Computer played Rock.")

    print("Tie")

   elif computer == 2 and choice == "P":

    print("Computer played Paper.")

    print("Tie")

   elif computer == 3 and choice == "S":

    print("Computer played Scissors.")

    print("Tie")

   elif computer == 1 and choice == "S":

    print("Computer played Rock.")

    print("You Lose")

   elif computer == 2 and choice == "R":

    print("Computer played Paper.")

    print("You Lose")

   elif computer == 3 and choice == "P":

    print("Computer played Scissors.")

    print("You Lose")

   elif computer == 1 and choice == "P":

    print("Computer played Rock.")

    print("You Win")

   elif computer == 2 and choice == "S":

    print("Computer played Paper.")

    print("You Win")

   elif computer == 3 and choice == "R":

    print("Computer played Scissor.")

    print("You Win")

   choice = input("Play Again?")

   if(choice == "n"):

     playAgain = False

   else:

     playAgain = True

Explanation:

Use a boolen variable and a while loop. The while loop will keep looping until it is false. In this case, I have it set up to keep looping unless the user enters n.

Tip: Make sure that all of the code is indented with the while loop.

PLSS HELP I WILL GIVE BRAINLIEST!!​

PLSS HELP I WILL GIVE BRAINLIEST!!

Answers

Answer:

1.1000 megabyte

Explanation:

Can someone plss help me with this!!


QUESTION: How do we communicate to a computer and what to put on a web page?

Answers

Answer: huh?

Explanation:

own words. how how can we find the address of a cell.​

Answers

Answer:

The ip address.

Explanation:

Which of the following requires frequent safety and health inspections

Answers

The option that requires frequent safety and health inspections is ''Industrial manufacturing facilities''. So, the correct choice is option A.

Industrial manufacturing facilities often involve complex machinery, hazardous materials, and various processes that can pose significant risks to the safety and health of workers.

These facilities are subject to regulations and guidelines aimed at ensuring the well-being of employees and preventing accidents or occupational illnesses.Frequent safety and health inspections are necessary for industrial manufacturing facilities to assess compliance with safety regulations, identify potential hazards, and implement corrective measures. Inspections help evaluate the condition and proper functioning of equipment, machinery, and safety protocols. They also ensure that employees are trained in handling hazardous materials, using protective equipment, and following established safety procedures.

By conducting regular inspections, industrial manufacturing facilities can maintain a safe working environment, prevent accidents, and mitigate potential risks, ultimately safeguarding the well-being of employees and promoting overall workplace safety.

For more questions on health inspections

https://brainly.com/question/17313574

#SPJ8

Complete Question:

Which of the following requires frequent safety and health inspections? Answer in 130 words. The answer should be of high quality, human-written and non-plagiarized.

A. Industrial manufacturing facilities

B. Retail stores

C. Residential buildings

D. Educational institutions

The power of if worksheet

Answers

what are you talking about?

you receive an email from your bank informing you that their privacy policy has been updated and asking you to review it on their website. what is the safest way to visit your bank's website?

Answers

Here is the safest way that you can follow when visiting your bank's website:

Ensure the bank's website uses an HTTPS web address. Change your password regularly. Use multi-factor authentication. Don't open your bank account on public computers. Use a secured wifi connection.

The safest way when visit a bank's website is to access your bank's official online or mobile banking app using a secured Wi-Fi connection. Banking with unverified or untrusted apps or over unsecured Wi-Fi connections could leave you vulnerable to cyberattacks.

You can learn more about the cyberattacks at https://brainly.com/question/27726629

#SPJ4

Mplement an algorithm using divide and conquer technique: Given two sorted arrays of size m and n respectively, find the element that would be at the kth position in the final array. A. Write a pseudocode/describe your strategy for a function kthelement(Arr1, Arr2, k) that uses the concepts mentioned in the divide and conquer technique. The function would take two sorted arrays Arr1, Arr2 and position k as input and returns the element at the kth position. B. Implement the function kthElement(Arr1, Arr2, k) that was written in part a. Name your file KthElement. Py Examples: Arr1 = [1,2,3,5,6] ; Arr2= [3,4,5,6,7]; k= 5 Returns: 4 Explanation: 5th element in the combined sorted array (1,2,3,3,4,5,5,5,6,6,7] is 4

Answers

Where the above conditions are given, a suitable pseudocode will look like this

function kthelement(Arr1, Arr2, k):

 # calculate length of both arrays

 n = length(Arr1)

 m = length(Arr2)

 # handle edge cases where k exceeds the length of final array

 if k > (n + m):

   return None

 # base case

 if n == 0:

   return Arr2[k-1]

 if m == 0:

   return Arr1[k-1]

 # calculate midpoints of both arrays

 mid1 = n // 2

 mid2 = m // 2

 # calculate the midpoint of final array

 mid = mid1 + mid2 + 1

 # divide and conquer approach

 if k > mid:

   # discard first half of Arr1 and recursive call on Arr2 and remaining part of Arr1

   return kthelement(Arr1[mid1+1:], Arr2, k-mid1-1)

 else:

   # discard second half of Arr2 and recursive call on Arr1 and remaining part of Arr2

   return kthelement(Arr1, Arr2[mid2+1:], k-mid2-1)

How will this work ?

The above code will give the intended output . The final sorted arrays after merging the two inputs would look like this:

[1,2, 3, 4, 5, ....7].

Note that the 5th element in the array is 4 which is th e output of the 'kthelement' fnction.

Learn more about pseudocode:
https://brainly.com/question/13208346
#SPJ4

You can create Sparklines for rows of data that you add later by using the _________ on an adjacent cell that contains a sparkline.

Answers

You can create Sparklines for rows of data that you add later by using the fill handle on an adjacent cell that contains a sparkline.

What is the best use for a sparkline?Sparklines are very small Excel cells that include charts. These graphs are used to display a trend over time or a dataset's fluctuation. By using this layer of visual analysis, you may employ these sparklines to improve the appearance of your boring data.The line sparkline uses a line chart to represent data values. Values are shown using a column chart in the column sparkline. Positive and negative numbers are displayed on the win/loss sparkline.A sparkline is a little graph that displays data visually in a worksheet cell. Sparklines can be used to emphasise maximum and lowest values as well as patterns in a range of values, such as seasonal rises or declines or economic cycles.

Learn more about sparkline refer to :

https://brainly.com/question/29832130

#SPJ4

Some one help pls will mark brainless !!!!!

Some one help pls will mark brainless !!!!!

Answers

adobe photoshop- creating and editing

microsoft word- creating and editing word documents

adobe indesign- layouts

qaurk- publishing

which instruction pushes all of the 32-bit general-purpose registers on the stack? a. pushad b. pusha c. push d. pushf

Answers

All of the 32-bit general-purpose registers are pushed on the stack in the following order by the PUSHAD instruction: EAX, ECX, EDX, EBX, ESP, EBP, ESI, and EDI. The same registers are popped off the stack in reverse order by the POPAD instruction.

Which register in 32-bit mode manages the stack?The runtime stack is an array of memory that the CPU controls directly using the ESP register, also referred to as the stack pointer register.A 32-bit offset into a specific region on the stack is stored in the ESP register. The latest value to be pushed or added to the top of the stack is where ESP will always point.ESP is reduced by 4 points. When utilizing the Irvine32 library, only 32-bit values should be pushed onto the stack.The 32-bit general-purpose registers EAX, EDX, ECX, EBX, EBP, EDI, and ESI are used for memory access and temporary data storage. The low-order 16 bits of 32-bit registers are represented by the 16-bit equivalents of the above, which are the AX, DX, CX, BX, BP, DI, and SI registers.Real mode programs can use the 32 bit registers using the Address Size Override Prefix starting with the 80386.Programs can now use addresses like DS:[EBX] thanks to this. In standard real mode, a fault happens if EBX is greater than 0xFFFF.It is possible to access in Unreal Mode

To learn more about 32-bit mode, refer to:

brainly.com/question/12537544

#SPJ4

The New Slide command on the Ribbon lets you choose _______.
A. transitions
B. Print settings
C. Slide layouts
D. slide dimensions

Answers

Answer:

im probably late but the answer is c.

Explanation:

i took the test! hopes this helps

The New Slide command on the Ribbon lets you choose slide layouts. Hence option C is correct.

What is slide layout?

Slide layout is defined as a layout  contain placeholder boxes for all of the material that appears on a slide, as well as formatting and positioning information. The dotted-line containers on slide layouts known as placeholders are where the titles, body text, tables, charts, SmartArt visuals, pictures, clip art, videos, and audio, among other things, are placed.

Click the "Home" option in the Ribbon to add a new slide in PowerPoint with the "Title and Content" slide arrangement. Afterward, select "New Slide" from the "Slides" button group. Alternatively, you can select the "Home" option in the Ribbon to enter a new slide with a different presentation layout.

Thus, the New Slide command on the Ribbon lets you choose slide layouts. Hence option C is correct.  

To learn more about slide layout, refer to the link below:

https://brainly.com/question/18069723

#SPJ2

user what in include in a short research paper for a conference? what's the difference between short and long conferecne research paper

Answers

When preparing a research paper for a conference, it's important to follow the guidelines set by the organizers. Short papers are typically 4-6 pages long, while long papers can be up to 12-15 pages and allow for more detailed analysis.


In a short research paper for a conference, it's important to focus on the main findings and conclusions of your research, rather than providing an exhaustive review of the literature. You should also make sure to clearly state your research question or hypothesis, provide a brief overview of your methods and data analysis, and highlight the key implications or contributions of your research.

In contrast, a long research paper for a conference allows for more in-depth analysis and discussion of your research. You may be able to provide a more detailed review of the literature, a more comprehensive description of your methods and data analysis, and a more nuanced interpretation of your findings. However, it's still important to stay focused on your research question and to ensure that your paper is well-organized and clearly written.

Learn more about research paper:

https://brainly.com/question/946785

#SPJ11

100 POINTS NEED THIS BEFORE 11:59 TODAY!!!!!!!!!!!!!!!

100 POINTS NEED THIS BEFORE 11:59 TODAY!!!!!!!!!!!!!!!

Answers

Answer:ok be how hobrhkihfehgdhdj fuiufiisefif jfkijfjfhhfhfhfhf

Explanation:

By checking the box on a privacy policy page, a company can legally use your data and information in all the ways disclosed, even if you change your settings.
True. This is always the case.
True. Changing your settings does not affect the privacy policy.
False. It depends if the privacy policy allows you to opt in or out of sharing data.
False. Companies do not give you the option to update your settings.

Answers

True, This is always the case as a company can legally use your data and information in all the ways disclosed, even if you change your settings.

What is privacy policy?

A privacy policy is a written statement outlining how a company will handle any client, employee, or customer information gathered during business operations.

Most websites provide visitors with access to their privacy policies. Any personally identifiable information that is collected, such as name, address, and credit card number, as well as other things like order histories, browsing patterns, uploads, and downloads, should be specified on a privacy page.

The policy should also specify whether or not cookies or other data can be stored on a user's computer. Best practises state that the policy should state whether or not data may be shared with or sold to third parties, and if so, why.

Learn more abut privacy policy

https://brainly.com/question/28271379

#SPJ4

To summarize means to
O. Directly quote the main idea
O. Communicate the main idea with supporting details
O. Explain the main idea’s significance
O. Condense the main idea into a few words

Answers

Answer:

To summarize is to explain the main idea in as few words as possible. So the answer is the last statement, to "Condense the main idea into a few words". Hope this helped.

Answer:

Its D

Explanation:

Hope it helped

4. Write technical term for the following statements
A) The computers designed to handle specific single tasks.
B) The networked computers dedicated to the users for professional wrok.
C) The computers that uses microprocessor as their CPU.
D) A computer that users analog and digital device.
E) The computer that processes discontinuous data.
F) The portable computer which can be used keeping in laps.
G) The general purpose computers used keeping on desk. ​

Answers

Answer:

a) Special-purpose computer

b)

c)microcomputers

d) hybrid computer

e) digital computer

f) laptop computers

g) desktop computers.

Please mark me as brainlist :)

Which storage device uses aluminum platters for storing data?• DLT tape• Hard disk• DVD disc• CD-ROM disc• SD card

Answers

The storage device that uses aluminum platters for storing data is a hard disk.

What is storage device?

A storage device is a type of hardware used to store digital data for long-term use. Storage devices are available in a variety of forms, such as internal hard drives, external hard drives, USB flash drives, and optical discs. Storage devices are used to store data such as photos, music, documents, and other types of files. Internal storage devices are typically installed directly inside of a computer and are used to store large amounts of data, while external storage devices are used to store data outside of the computer and typically have smaller capacities.

Hard disks are comprised of multiple aluminum platters, onto which data is written magnetically. The platters spin rapidly, with a read/write head, allowing the data to be stored and retrieved. Other storage devices, such as DLT tape, DVD disks, CD-ROM disks, and SD cards, do not use aluminum platters for storing data.

To learn more about storage device
https://brainly.com/question/26382243
#SPJ1

Consider two firms with the following marginal abatement costs (MAC) as a function of emissions (E): \[ \text { MAC_1 = 12-3E_1 } \] MAC_2 = 6- 2E_2, and assume marginal external damages (MED) from the aggregate emissions of both firms (E_Agg =E


1+E


2) is: MED= E_Agg
2
In the absence of government intervention, total external damages (TED) are Answer:

Answers

In the absence of government intervention, the total external damages (TED) would be calculated by summing up the marginal external damages (MED) from the aggregate emissions of both firms (E_Agg = E_1 + E_2), where MED = E_Agg².

To determine the total external damages (TED) in the absence of government intervention, we first need to find the aggregate emissions (E_Agg) of both firms. The aggregate emissions (E_Agg) is simply the sum of the emissions from firm 1 (E_1) and firm 2 (E_2), which can be expressed as E_Agg = E_1 + E_2.

Next, we use the given equation for marginal external damages (MED), which states that MED = E_Agg². Substituting the value of E_Agg, we get MED = (E_1 + E_2)².

TED is the total of MED, so we add up the MED values of both firms to find the total external damages. Therefore, TED = MED_1 + MED_2 = (E_1 + E_2)².

Learn more about total external damages (TED)

brainly.com/question/32623255

#SPJ11

Writing a Test Case

Write test cases for the employee information system for which you have written a test plan in Task 2. Present your test cases in a tabular format.

PLEASE ANSWER, so brainly doesnt get rid of my question.

Answers

Certainly! I can help you with writing test cases for the employee information system. However, please note that without the specific details of the system and its requirements, it may not be possible to provide comprehensive test cases. Nevertheless, I can give you an example of how to structure a test case in a tabular format. Here's an example:

Test Case ID Test Case Description Test Steps Expected Results Actual Results Pass/FaiTC001 Verify employee creation 1. Enter valid employee details and click on "Create". New employee should be created successfully. TC002 Verify employee search 1. Enter the employee ID or name in the search field and click on "Search". The system should display the employee details matching the search criteria. TC003 Verify employee update 1. Select an existing employee andclick on "Edit". 2. Update the employee details and click on "Save". The employee details should be updated successfully. TC004 Verify employee deletion 1. Select an existing employee and click on "Delete". The employee should be deleted from the system.  Please note that this is just an example, and the actual test cases will depend on the specific functionalities and requirements of your employee information system. It's important to include detailed test steps, expected results, and a column for capturing the actual results during the testing process. The "Pass/Fail" column should be updated based on the comparison between the expected and actual results.Feel free to modify and expand these test cases based on your specific requirements and functionality.

learn more about Certainly here :

https://brainly.com/question/28094650

#SPJ11

PLEASE PLEASE PLEASEEEE HELP

Explain why quality is important (use the word accuracy in your answer)

Answers

Answer:

Quality is critical to satisfying your customers and retaining their loyalty so they continue to buy from you in the future. Quality products make an important contribution to long-term revenue and profitability.

have a nice day! (^o^)

For the following code, which statement is not true?
public class Sphere
{
private double radius;
public double x;
private double y;
private double z;
}
a) The z field is available to code written outside the Sphere class.
b) The radius field is not available to code written outside the Sphere class.
c) The radius, x, y, and z fields are members of the Sphere class.
d) The x field is available to code that is written outside the Sphere class.

Answers

The z field is accessible to code written outside of the Sphere class, which is true.

What is a class instances' name?A class is made up of objects. It is also known as a class instance or class object. As a result, instantiation can also be referred to as construction. Instance variables refer to values that differ between objects. An object is a class instance. It is also referred to as a class object or a class instance. As a result, instantiation is also known as construction. Instance variables are used when values differ from one object to the next. An instance is a class-specific object. In Python, for example, list is a class. We have an instance of the list class when we create a list.

To learn more about class instance, refer to

https://brainly.com/question/29035364

#SPJ1

1 point
4. Part of a computer that allows
a user to put information into the
computer ?
O Output Device
O Operating System
O Input Device
O Software​

Answers

Answer:

adwawdasdw

Explanation:

Answer:

I'm so sorry about the comment of that person down there

anyways I think its Number 2.

Why can’t my sister downloaded games on her tablet she has tablet fire 8 hd amazon...Plz help and her tablet is on Spanish she only has videos she used to have games but not anymore someone plz help her

Why cant my sister downloaded games on her tablet she has tablet fire 8 hd amazon...Plz help and her
Why cant my sister downloaded games on her tablet she has tablet fire 8 hd amazon...Plz help and her

Answers

Answer:

It basically says that she needs a parents approval to download and play these games. The tablet was probably restricted because of her young age. So your dad has to go in with his account or whatever he used to download or allow those games.

Hope it Helps

:)

The data cache is where the data read from the database data files are stored _____ the data have been read or _____ the data are written to the database data files.

Answers

Data is known to have cache. The data cache is where the data read from the database data files are stored after the data have been read or before the data are written to the database data files.

Cached data are simply called too be the information that is saved on one's computer or mobile devices after a person have visited or accessed a website.

A lot of Developers often make use of cached data to boast their online experience. A considerable number of consumers often want a website to load within two and three seconds.

Learn more from

https://brainly.com/question/23708299

You can tell that parseInt() is a(n) ____ method because you use it with the class name and not with an object.

Answers

Parse Int() is a(n) static method because you use it with the class name and not with an object.

Is parseInt a static method?

The term or computer language (Java - parse Int() Method) is known to be a method that is often used to get back the primitive data type of a particular String.

Conclusively, the  parse Xxx() is known to be a static method and one can use it to make or have one or more argument.

Learn more about object from

https://brainly.com/question/24445340

Other Questions
Which of the following northeastern states had the largest gain in population between the years 2000 and 2010? Maine Pennsylvania New York New Hampshire What are some of your favorite snack foods?How much do you typically eat in one sitting?If your food has a food label, how many servings are there and how many calories there are per serving. Are you eating more than one serving? If your food does not have a label, what do you think a serving size would be?Is your favorite food healthy? What do you think makes it healthy?Is there any aspect of it that could make it unhealthy? Quin es Aquiles? Quines son sus padres? Qu cualidades tiene? Menciona los eptetos (o adjetivos) que le daban. What is the total number of hydrogen atoms contained in one molecule of (NH4)2C204?6842 what is the main conflict of this story? "Not that I care" Select the point on the number line located at -3/4 Find the volume of the cone. Use 3.14 for pi. What is wrong with the lewis structure below? Explain how the correct structure should appear. Given a sphere with a volume of 2000 cm", find the area of the perpendicular cross section right through its center. when a weight w is hanging from a light vertical string, the speed of pulses on the string is v. if a second weight w is added without stretching the string, the speed of pulses on this string will now become 17. Which are the ending of the -ar verbs in the present tense ? *o, as, a, amos, ano, es, e, imos, eno, is, as, emos, en What is theocracy government quizlet? HELP I WILL GIVE YOU BRAINLIEST PLS ASAP PLS HELP Which aspect of Nazi education was the most brutal or inhumane? What are the 5 mother sauces and each meaning? REREAD Reread lines 4-25. Explain the extended metaphor. What canyou infer about Hurston's character in these lines?Text:the Harlem renaissance Question 9 of 10How many terms are in the algebraic expression 3x + 4y - 1?OA. 3OB. 4C. 5a Chronic anger ________ the risk of heart disease and chronic depression ________ the risk of heart disease. Employee involvement in a JIT environment means: 1. Operators must take responsibility for improving the process. II. Management must take more of a leadership role. III. Staff must be trainers and assist line people, a None of the above b I and III c All the above are true d I and II e Il and Ill Help, pleaseSimplify: