Which of the following is NOT a likely risk from driving in rural areas?
A. Distracting billboards
B. Unpaved, poorly maintained roads
C. Wildlife or livestock crossing roads
D. Poorly lit roads at night

Answers

Answer 1

Answer:

A

Explanation:

Rural areas are not ideal hubs for advertisement as there is reduced traffic compared to urban areas.

Answer 2

Generally, there are no billboards that can distract a driver while driving in the rural areas.

What is driving?

The act of operating a vehicle with proper traffic and transport guidelines is known as driving. There are less to zero billboards in rural areas, and driving is not distracted due to them.

Hence, option A holds true regarding driving.

Learn more about driving here:

https://brainly.com/question/2619161

#SPJ2


Related Questions

Which are emotional effects of anxiety? Check all that apply.
panic
worry
anger
nausea
headache

Answers

The emotional effects of anxiety are:

PanicWorryWhich are emotional effects of anxiety?

The Effects of anxiety on the state of mind of people are:

Tense feeling Nervousness, etc.

Note that The emotional effects of anxiety are Panic and Worry because humans tends to work when they are nervous or have anxiety.

Learn more about anxiety from

https://brainly.com/question/1754863

#SPJ2

Answer:

a, b, c

Explanation:

panic

worry

anger

Type the correct answer in the box. Spell the word correctly.
An online job portal asks you to upload your official photograph for better job matches. Which data type stores images and audio visual clips?
The
data type stores images and audio visual clips.
Reset
Next

Answers

Answer:

i think it is mp4

Explanation:

Final answer:

The data type that stores images and audio-visual clips is known as binary data or BLOB (Binary Large Object), which encodes the information into binary code for storage and processing.

Explanation:

The data type that stores images and audio-visual clips is commonly referred to as binary data or BLOB (Binary Large Object). When you upload your official photograph to an online job portal, the image file is stored in the form of binary data.

This type of data can include various formats like JPEG, PNG, GIF for images, and MP4, AVI for videos. Each format has a different way of encoding the graphical or audio-visual information into binary code that computers can store and process.

Carlos and Sophia develop websites as a team and have done so for many years. They hire a new member, Terry, a website developer, who
previously worked alone. A client from the healthcare Industry approaches the team to refurbish the client's old site. Because Carlos and Sophia
were out of the office visiting another client site, Terry sets up a web meeting with the client to gather their requirements. Has Terry made a
mistake in this situation?
A no, because a requirements gathering session is the first stage in website development
B. no, because Terry is an experienced developer and can manage client interactions by himself
C. yes, because a requirements-gathering session should be a face-to-face meeting, rather than a virtual one
D. yes, because only senior team members must be present in a requirements gathering session

Answers

No because a requirements gathering session is the first page in web development

Answer:

It would be C

Explanation:

Did it on edmentum and got the answer correct!

2.2 Write a program that uses input to prompt a user for their name and then
welcomes them. Note that input will pop up a dialog box. Enter Sarah in the pop-up
box when you are prompted so your output will match the desired output.
Check Code
Reset Code
i
Please correct your code and re-run.
# The code below almost works
WNH
3 name = input("sarah")
4 print("hello sarah").

Answers

Class hello Sarah{
Pubic static void(“hello Sarah”)
Name=input(“hello Sarah”)
Print(“hello Sarah”).

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

Class hello Sarah{

Pubic static void(“hello Sarah”)

Name=input(“hello Sarah”)

Print(“hello Sarah”).

See more about python at brainly.com/question/13437928?

Jasmine needs to select the first sentence of a paragraph and the last sentence of a paragraph simultaneously. The text is nonadjacent. Which of the following should she do?a. Select the first sentence, then press and hold ALT while selecting the second sentence.
b. Select the first sentence, then press and hold SHIFT while selecting the second sentence.
c. Select the first sentence, then press and hold SHIFT+ALT while selecting the second sentence.
d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Answers

Answer:

d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Explanation:

In MS word, we need to select text sometimes from different places of the document or paragraph at the same time. To select the text from different place that are not adjacent to each other. we can follow the following steps.

Select the first sentence or text that you need. Now press control button and hold until select the other sentence or text.

In this way, jasmine can also select the first sentence of a paragraph and the last sentence of the paragraph simultaneously, whether text is not adjacent.

2 negative impact of excessive use of computer even in solving mathematical problem.

Answers

Answer:

Computers are now a days the very important part of each department as well as homes. All people are somehow using computers for their respective needs. As technology always has the negative impacts along with the positive ones so, computer do have some crucial points when taking about students specially.

Following are listed some acts that add to the negativity of computer's usage.

Excess use of computers by students while solving mathematical problems lead them to rely totally on the computer. Students don't tend to calculate by their own instead they use computerized calculators for their ease and hence they start lacking even in basic calculations in normal routine also.Computers may impact students routine in such a way that they don't concentrate on their studies while having extreme interest in video games and their favorite seasons and other activities.Using computers more than a certain limit effects eyesight badly. This is the reason today most of the teenagers use spectacles in normal routine.

I hope it will help you!

how to do pseudocode and flowchart in BMI ( computer programming ​

Answers

Answer:

You need to find out what is the units of measurement of the height and weight. You also need to find that the weight is in Kilogram or pounds, and whether the height is in feet and inches, or inches, or meters and centimeters.

Part1: You need to read the values of the weight and height, and validate it as required.

Part2: Now you need to convert those findings into English measures or metrics for computation.

Part3: Output: You need to display as well as echo the input as well as the BMI; and you need to mention the supplementary message which is based on the BMI findings related to Obesity, borderline overweight, normal and overweight, etc.

The program is as below:

import java.io. *;

class Main

{

// weight in pounds and heights are in inches

private double your_wght;

private double your_hght;

Main ( double ht, double wt)

{

your_wght = wt; your_hght = ht;

}

public double GetHght() { return(your_hght); }

public double GetWght() { return(your_wght); }

public double CalculBMI() { return(your_wght*703/(your_hght*your_hght)); }

public double PrintDouble( String promptMessage) throws IOException

{

double Num=0;

String x=null;

Console console = System.console();

System.out.print(promptMessage);  

x = console.readLine();  

Num = Double.parseDouble(x);

return(Num);  

}  

public static void main( String args[])

{

double heightinFeet=0,heightinInch=0,w=0;

Main Input = new Main(0,0);

try

{

System.out.println(" Please input the height(feet/inches) \n");

heightinFeet = Input.PrintDouble(" In feet :> ");

heightinInch = Input.PrintDouble(" In inches :> ");

w = Input.PrintDouble(" Please enter the weight(pounds) :>");

}

catch (IOException ex) { System.out.println("occurred Input Exception"); }  

Main BMI_value = new Main(heightinFeet*12+heightinInch,w);  

System.out.println(" Weight = " + BMI_value.GetWght() );  

System.out.println(" Height(inches) " + BMI_value.GetHght() );

System.out.println(" BMI is " + BMI_value.CalculBMI() );  

}

}

Explanation:

Rest of the fields and properties are self understood, however, PrintMessage needs explanation. It takes a string as input, which calls for entering some double value like in feet, and in inches, and returns that value, which is assigned to relevant double variable. And Main is the class with Main constructor, which is a parameterized constructor, and takes height and weight as input.

Complete the steps to evaluate the following
expression, given log base3 a = -0.631.
log3 a/3. what is log base3 3​

Answers

Answer:

Log 3 3 =1

Log 3 a/3 = -1.631

Which agency was the BBG a part of until September 1999?
O A. United States Information Agency
B.
Voice of America
C. Federal Communications Commission
D. Federal Radio Commission

Answers

Answer:

O A. United States Information Agency

Explanation:

The BBG was the part of the United States Information Agency till 1999. This is the affiliate relations and media training office. And it was headquartered in Washington DC.  Hence, the most appropriate answer out here, and in fact the correct option for this question is A., and which is United States Information Agency.

what other method could Alex have used to comunicate this message to Ms.Aragon

Answers

being polite........ so asking nicely?

Compose one paragraph (three to four sentences) explaining the difference between a courtesy copy and a blind courtesy copy.

Answers

Answer:

Courtesy copy CC and Blind Courtesy Copy BCC are two terminology used in while sending email to someone/group of people.

Explanation:

When you send emails to a group of people.  While sending email there are two options carbon copy CC and Blind Carbon Copy Bcc. Those names are mentioned in CC are visible to all other recipients whereas those names/email addresses mentioned in BCC are not visible to anyone.

That means the receiver of email can see the CC recipients except for the BCC recipient. While CSS and BCC can't see the receiver reply.

What is the process for creating a new merge document for address labels?

Answers

Answer:

- open a new document

- start mail merge and click labels

- click label options and select the correct type

- select the recipient file

- click arrange labels; insert and address block

Explanation:

right on edg

To create a merge document for address labels, open a new document, use the 'Mailings' tab to start a mail merge, select 'Labels,' choose your label vendor and product number, and insert merge fields before printing.

Creating a New Merge Document for Address Labels

To create a new merge document for address labels, you can follow these steps:

Open a new (blank) document. If you have a template available, you can use that as well.        

Go to the "Mailings" tab and click on "Start Mail Merge".Select "Labels" from the drop-down menu.Choose the appropriate label vendor and product number that matches your labels.Click "OK" to format your document for the labels.Click on "Select Recipients" and choose how you want to select your address list (e.g., by using an existing list or creating a new one).Click "Insert Merge Field" to insert fields for the recipient's name, address, etc., into the labels.Once all fields are inserted, click "Preview Results" to see how your labels will look.When satisfied, click "Finish & Merge" and select "Print Documents" to print your address labels.

Following these steps will ensure that your new merge document for address labels is correctly set up and ready for printing.

How do you start an HTML webpage?
Lots of details will be nice

Answers

Answer:

The HTML page code starts with <!Doctype html>, and it confirms the version of HTML you are coding in. Remember HTML 4.01 was based on SGML, and hence a reference to a DTD is required. However, HTML 5 is not based on SGML, and hence it is not required to refer to a DTD in that case. Also, Doctype is not a tag. Hence, the first tag used is the next in the list, and that is the head tag. It comprises of a title, meta keywords, meta description, styles if used any, and scripts. However, remember, in modern-day coding script is pasted at the last portion of a web page. And this is to ensure that the web page gets loaded once at least just in case the script does not gets loaded. However, style ( CSS, Bootstrap, etc) is part of the head tag only, and always. And finally comes the body. And in the body, we use all the popular HTML tags. The form tag is also a part of the body. Remember a form can be a GET or POST, and these are the two methods. Also, the action is used to set the URL where the data needs to be sent when the form is loaded. You should study Form tag deeply, and the rest of the tags are easy, and you should know how to add the styles and javascript functions to each of them. Also, knowledge of jQuery and JavaScript is a must these days.

Explanation:

A simplest of HTML code will look like:

<!DOCTYPE html>

<html>

<head>

<title>Title</title>

<meta charset="UTF-8">

<meta name="description" content="">

<meta name="keywords" content="">

<meta name="author" content="">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>

<body>

The content

</body>

</html>

Remember viewport above is meant for making the page responsive, and we mention here width= device width, and this means it will set to the width of the device on which it is running. And there is a media tag in CSS, which we use for making the page responsive as well. Or else you can make use of Bootstrap. And initial scale sets the initial zoom level.

A lack of financial literacy can cause you to lose your

Answers

Answer:

Financial literacy of someone's ability to understand and apply financial skills, including budgeting, financial management, investing and risk calculation. However, lack of financial literacy may result in opposite of having financial literacy.

Explanation:

Financial literacy of someone's ability to understand and apply financial skills, including budgeting, financial management, investing and risk calculation. Financial literacy helps individuals in taking financial decisions in achieving self-sufficient financial stability.  Financial literacy is the skill of someone about making financial decisions. This skill can help a person to develop a financial roadmap about what he earns, how he will earn, what he spends and what he saves and owes.

Lack of financial literacy can cause to loose your:

making effective financial planningmaking the right decision about budgetingability to calculate interestunderstanding the time value of money.

Financial illiteracy can cause you to lose your money or become victims of predatory lending, fraud, subprime mortgages, paying high-interest rates, bankruptcy or potentially resulting in bad credit.

The lack of financial literacy can lead to owing large amounts of debt and making poor financial decisions. For example, the advantages or disadvantages of fixed and variable interest rates are concepts that are easier to understand and make informed decisions about if you possess financial literacy skills.

What are the advantages of businesses using Twitter ?

Answers

Answer:Through Twitter, businesses can reach a larger target audience within their key demographics through the use of hashtags and applicable media.

Explanation:

A macro enables you to automate repetitive tasks by

Answers

Answer:

To automate a repetitive task, you can record a macro with the Macro Recorder in Microsoft Excel. Imagine you have dates in random formats and you want to apply a single format to all of them. A macro can do that for you. You can record a macro applying the format you want, and then replay the macro whenever needed.

Explanation:

A social media application would most likely do which of the following?

Answers

The correct option is B.

A social media app primarily connects users with social and business contacts, fostering interactions and networking opportunities.

A social media application would most likely:

1. **B. Connect users with social and business contacts:** Social media platforms are primarily designed to facilitate connections between individuals, whether for personal or professional purposes. Users can interact, share updates, and build networks of friends, colleagues, and acquaintances.

2. A. Allow users to watch popular movies and TV shows: While some social media platforms may incorporate features for sharing or discussing media content, their primary function isn't centered around providing access to movies or TV shows.

3. C. Confirm users' travel plans: Confirming travel plans typically involves booking services or dedicated travel apps, not functionalities commonly found on social media platforms.

4. D. Teach users a new language: Language learning is typically facilitated through dedicated language learning apps or courses, not a primary feature of social media platforms.

The answer is Connect users with social and business contacts.

The complete question is here:

A social media application would most likely do which of the following? (6 points)

A. Allow users to watch popular movies and TV shows

B. Connect users with social and business contacts

C. Confirm users' travel plans

D. Teach users a new language

Which of the following scenarios could be considered "using music from a stock house supply?" (Select all that apply.)
a sound technician contacts A&M Record Company to buy the rights to use a music clip
a sound technician takes a music clip from a jazz band’s album purchased by the movie studio
a sound technician takes a music clip from Madonna’s first album from his own collection
a sound technician contacts A&M Record Company for a better recording of a music clip whose copyright is owned by the movie studio

Answers

Answer:

1, 3, and 4

Explanation:

Final answer:

None of the provided scenarios explicitly describe the use of music from a stock house supply, which is a pre-existing library of licensable music and sounds for media use. They mainly depict direct licensing or use of music for which the rights might not have been obtained from a stock music library.

Explanation:

The concept of "using music from a stock house supply" refers to the practice of accessing a pre-existing library or database of music that is available for legal use, typically in media production. This library is often stocked with a variety of sounds and music that have been pre-recorded (known as canned sounds) and are readily available for use under certain conditions, such as payment of royalties or licensing fees.

Now let's apply this understanding to the provided scenarios:

A sound technician contacting A&M Record Company to buy the rights to use a music clip does not necessarily indicate that the music is from a stock house supply, as it could be a specific track directly licensed from the record company.

Using a music clip from a jazz band’s album purchased by the movie studio may indicate that the studio has obtained the rights to use the music, but it's still not from a standard stock music library.

Taking a music clip from Madonna’s first album from a technician's own collection would constitute copyright infringement unless permission or appropriate licensing is obtained, and this is not an example of stock music use.

A sound technician contacting A&M Record Company for a better recording of a music clip whose copyright is owned by the movie studio is an internal affair to improve the audio quality but does not concern stock music.

In summary, none of the given scenarios outright suggest the use of music from a stock house supply, as they do not clearly involve a pre-existing music library specifically intended for media use.

Drag the tiles to the boxes to form correct pairs.
Match the devices to their functional requirements.
an overhead projector
a laptop
a computer
an external monitor
requires a CD-ROM drive to run presentation CDs
arrowRight
requires a port to connect to the laptop
arrowRight
requires an external monitor to project high-resolution images
arrowRight
requires slides to project images

Answers

Answer:

An overhead projector: requires slides to project images

A laptop: requires an external monitor to project high-resolution images

A computer: requires a CD-ROM drive to run presentation CDs

An external monitor: requires a port to connect to the laptop

Explanation:

The correct pair has been formed above. An overhead projector requires the slides for projecting images. A Laptop for projecting high-resolution images requires an external monitor. And a computer requires a CD-ROM drive for running presentation CDs, and an external monitor requires a port to a port which can be an HDMI port to connect to a laptop.

Answer:

an overhead projector-requires slides to project images

a laptop-requires an external monitor to  project high-resolution images

a computer-requires a CD-ROM drive  to run presentation CDs

an external monitor-requires a port to  connect to the laptop      

An email address contains the @ character. Write a program that takes asks for an email address input from the user and determines whether it is a valid address or not. This is based on the presence of the @ character and no spaces in the string. You do not need to worry about any other characters in the input word. Output the result "The word IS an email address" or "The word IS NOT an email address"

Example -
Input: testuser@mydomain.com
Output: The word IS an email address

Input: my123user
Output: The word IS NOT an email address

Your code should include comments to describe the program logic and use proper indentation for readability.

Answers

Answer:

Input: 63pie@treemail.com

Output: the word is not an email adress

Explanation:

Which of the following is an example of an appropriate name for a control?

Answers

Answer:

btnExit

Explanation:

Why is it important to record audio of silence in the area in which you are filming?

Answers

Answer:

To make sure that there is no other outside/excess noise while you are filming your actual film

Hoped this helped !

Cheers, Z

Answer:

That depends. The answer I would give is so if something does arise, such as a really big noise accompanied by a really big animal, then you'd have more than just video. If a natural disaster occurs, the only way to tell may be through audio.

You suspect a hard drive in a system might be failing. What type of data about the hard drive can HWiNFO give you to help you diagnose the problem? Which button on the main menu do you select to get this data?

Answers

Final answer:

HWiNFO can be used to check the health and performance of a suspected failing hard drive by selecting the 'Sensors' button and reviewing SMART data such as temperature, error rates, and reallocating sector count.

Explanation:

If you suspect a hard drive in a system might be failing, HWiNFO can provide valuable data to help you diagnose the problem. Upon running HWiNFO, you should select the 'Sensors' button on the main menu. This will bring up a list of all the sensor data from your hardware. For the hard drive in question, you can review critical parameters such as the drive's temperature, overall health status, and SMART attributes. SMART (Self-Monitoring, Analysis and Reporting Technology) data can give insights into the drive's performance, including and not limited to, the read and write error rates, spin-up time, and reallocating sector count. High values in some of these SMART attributes could indicate a failing hard drive.

Final answer:

HWiNFO can provide S.M.A.R.T attributes of a hard drive, such as reallocated sector count, read error rate, and drive temperature to diagnose issues. Access this information by clicking on the 'Sensors' button in HWiNFO.

Explanation:

HWiNFO is a diagnostic and monitoring tool that can provide a wealth of data to help diagnose a potentially failing hard drive. When using HWiNFO, the specific type of data that can be useful includes the S.M.A.R.T (Self-Monitoring, Analysis, and Reporting Technology) attributes, which provide details on various aspects of the drive's health and performance. These may include parameters such as the reallocated sector count, read error rate, and drive temperature, among others. To access this data, you will need to open HWiNFO and click on the 'Sensors' button, which will take you to a screen displaying live sensor data from all detected components, including hard drives. Look for the section pertaining to your hard drive and review the S.M.A.R.T data presented there.

Where would be the best place to obtain a master's degree?

Answers

Answer:

Collage

Explanation:

It all depends on what your preferences are I want to be a vet so when I graduate I'm going to go to Texas state because they have a great vet program

Final answer:

Choosing the best place to obtain a master's degree requires considering personal educational goals and specific study areas. Online programs and traditional institutions both offer diverse options, like the award-winning GIS program at Penn State. Contacting universities directly and utilizing resources such as graduate rankings can assist in making an informed decision.

Explanation:

The best place to obtain a master's degree depends on your educational goals and the specific area of study you wish to pursue. Whether it is a traditional institution or an online program like the one at UMN for Parent and Family Ed, it is important to choose a school that aligns with your career aspirations and educational needs. For example, the Penn State Professional Masters Degree in GIS was recognized with the 2009 Sloan Consortium award for Most Outstanding Online Program, suggesting that some online programs can offer exceptional educational experiences.

If your interest lies in teacher certification, an alternative pathway might be through a master's degree program that allows you to work in a school while studying, as mentioned in the historical context of graduate programs which first emerged as Masters of Arts in Teaching (MAT) in the 1970s. Moreover, graduate economics rankings and resources provided by organizations like the American Economics Association can be invaluable when researching graduate degree program options in specific fields.

It's essential to consider different institutions for your advanced degrees, as this can offer a broader scope of education and potential opportunities. Remember to thoroughly research and engage with colleges or universities to understand the nuances of their graduate programs.

Which of the following skills do employers in any field expect their employees
to have?

Answers

Answer:

There are four options: and the letter B is the correct answer.

A. Ability to lift at least 30 pounds  

B. Ability to use word processing software  

C. Ability to use a cash register  

D. Ability to provide a healthy work environment

Explanation:

Nowadays the technology is part of our lives, even in our jobs, nowadays practically is necessary to know to manage some applications and software, for example, word to manage documents or excel to manage formulas, even in physical jobs people must know to manage those programs, and for people want to get a better job is necessary.  

Early electronic computing devices were:
O inexpensive.
o compact and lightweight.
o efficient in operation.
O manpower intensive.
DONE

Answers

Early electronic computing devices were: manpower intensive.

O manpower intensive.

Explanation:

Computing devices are the electronic gadgets that take inputs, process the information sources and afterward compute results from the data sources. Likewise, Early electronic processing gadgets were labor escalated on the grounds that the early PCs were made to figure a lot of number juggling information and count.

Alan Turing's PCs wafer mystery codes. PCs were utilized for reviews and logical assistance as well. Pascal was directed to build up a mini-computer by the arduous arithmetical figurings required by his dad's work as the manager of charges in Rouen, and so forth... So Early electronic registering gadgets were worried as labor concentrated.

Picture an expensive item you’d LOVE to own. What would make you happier: Buying it NOW using credit/taking out a loan? Buying it LATER by saving up and paying cash? Why?

Answers

Answer:Buying Later

Explanation: Buying later would be the better choice because not only will you feel reawrded for working hard to get what you want but you also will not have to o throught the hassle of getting a loan. It may also be cheeper becuae many loans charge interest.

The Picture of what would make me much happier is Buying it later by saving up and paying cash.

Do one save more money paying cash?

Due to research that has been done, a person is likely to spend more when they pay for an item with credit than instead of cash.

With the use of cash on hand, a person is said to be limited in the amount one can spend, and a person will make different choices so as to save money.

Conclusively, By buying it later, one is free from the interest of buying with a loan.

Learn more about buying from

https://brainly.com/question/22054657

<<
<
2
3
4
5
6
7
8
9
10
11
12
To include a hyperlink in a document, use the shortcut key combination
Alt+Ctrl+F
Alt+Ctrl+D
Alt+Shift they
Ctrl+K

Answers

Answer:

The Keyboard shortcut: Ctrl+K is almost always the default to include a link in an application

Explanation:

For example in Microsoft Word pressing Ctrl+K will open a window for you to type a link.

Joann wants to insert a table of contents to her document so readers can easily navigate to the different parts of her document.

Which option of Quick Parts does she use?

Answers

Answer:

d

Explanation:

edge 2020

Joann should use the "Table of Contents" option from the Quick Parts menu to insert a table of contents into her document.

What is Table of Contents

In Microsoft Word, the "Table of Contents" option in the Quick Parts menu helps users make a list to help them  find different parts of their document. This is how it works:

Joann must make sure she chooses the right heading styles for the different parts of her document in order to use the "Table of Contents" feature. These styles are called "Heading 1," "Heading 2," and so on. These styles make it easier for Word to organize the content in a specific order.

Read more about Table of Contents here:

https://brainly.com/question/1493356

#SPJ3

match the following unit 6 terms with their descriptions

Answers

Answer:

what are the followin six terms

Explanation:

Answer:

I think is six terms

Explanation:

I don't know how to explain it, I need a notebook and teach you how to do it

Other Questions
graph the equation Y+5= -2(x-4) PLEASE HELP 0 longitude is called the... Find an equation for the nth term of the arithmetic sequence. -15, -6, 3, 12, ...an = -15 + 9(n + 1) an = -15 x 9(n - 1) an = -15 + 9(n + 2) an = -15 + 9(n - 1) find the slope of the line passing through the points (-4, 6) and (3, -8) Choose the correct set of preterit conjugations for the verb dar.Odoy, das, da, damos, dais, dandaba, dabas, daba, dbamos, dabais, dabanOdi, diste, dio, dimos, disteis, dierond, daste, d, damos, dasteis, daronO marco is limited to 7 hours of screen time each week. he decides to watch a movie that is 1 hour and 20 minutes on sunday. if he divides the remainder of time equally amongst the other six days, then how many minutes can h.e watch each day? write and solve an inequality. please help !!! 30 points and im struggling An amount of work W is done on an object of mass m initially at rest, and as result it winds up moving at speed v. Suppose instead it were already moving at speed v and the same amount of work W was done on it. What would be its final speed Cynthia plans to build a treehouse that is 1/3 the size of Andrew's tree house. Cynthia plans to make the area of her tree house at least 13 square feet. Write and solve an inequality to find the area of Andrew's tree house. Let x be the area of Andrew's tree house. Describe how you know which tree house is larger without solving the inequality. What is 927 divided by 9 What would society be like without the 19th Amendment? A short quiz has two true-false questions and one multiple-choice question with four possible answers. A student guesses at each question. Assuming the choices are all equally likely and the questions are independent of each other, the following is the probability distribution of the number of answers guessed correctly. What is the Probability of getting less than all three right Some networks may include services beyond email, file transfer, or other more standard functions. Which of the following additional networking services uses common protocols like RIPv2 and STP to allow network devices to effectively communicate with each other or with other networks? a. Telephony b. Time synchronization c. Subscription d. Routing and switching write a program that takes 10 numbers as input and displays the mode of the numbers using parallel arrays and a method that takes an array of numbers as a parameter and returns the value that appears most often in the array If f (x) = one-ninth x minus 2, what is f-1(x) French Help. Please write 5 sentences fairly simple with the verbs that I have attached in the image provided.No google translate!20 points. A box is sitting on a 2 m long board at one end. A worker picks up the board at the end with the box so it makes an angle with the ground of 35o. The coefficient of static friction between the box and the board is 0.5 and the coefficient of kinetic friction is 0.3 . Will the box slide down the ramp when it is at 35o? Use the scoring rubric to evaluate Letter #2 for structure and format, content, tone, and conventions. Include the score and anexplanation for the score. (Sites 1 and 2) Which best describes the images that Michelangelo painted on the ceiling of the Sistine Chapel? a. stories from the New Testament of the Bible b. stories from the Old Testament of the Bible c. lessons the Church wanted to teach d. lessons Michelangelo wanted to teach Two sinusoidal waves are moving through a medium in the positive x-direction, both having amplitudes of 7.00 cm, a wave number of k=3.00m1, an angular frequency of =2.50s1, and a period of 6.00 s, but one has a phase shift of an angle =12rad. What is the height of the resultant wave at a time t=2.00s and a position x=0.53m?