A speed limit sign that says "NIGHT" indicates the _____ legal speed between sunset and sunrise.

Answers

Answer 1

Answer:

Maximum

Explanation:

Speed limits indicate the maximum speed you are legally allowed to drive.


Related Questions

Kair needs to change the brightness and contrast on a image she has inserted into a word document

Answers

Answer:

Kair should click the image.Right click then select "Format Picture."

Then select "picture corrections"

Answer:

adjust

Explanation:

30 POINTS!!

Type the correct answer in the box. Spell all words correctly.

Jason needs to learn a new web tool. He went through his books to understand more about it. Now he wants hands-on experience with using that tool. What would help him?
Jason can use ______ websites where workspace is provided to test the results of your code.

Answers

Answer:

online

the answer is online

2 ways to make your computer work faster ( please help asap )

Answers

Answer:

clean up space or reboot ur computer or delete unwanted apps and files .

Explanation:

features of action files​

Answers

Answer and explanation:

An ".action" file is a file written in Xcode and used by the Automator program, whose function is to create automations in macOS.  Action files contains specific actions that can be combined with other actions to create an automated process.

This type of file is used to automate tasks in macOS, usually with Finder (file manager) or another program.  

Action files are especially useful for repetitive tasks, such as creating sequential batch folders, editing images, or deleting files.

Write an algorithm and draw a flowchart to input two numbers from the user and display the largest of two numbers

Answers

Answer:

Explanation:

Required

- Algorithm to display largest of two numbers

- Flowchart to display largest of two numbers

Algorithm

1. Start  

2. Input num1, num2

3. Largest = num2

4. If num1 > num2 Then

4.1 Largest = num1  

4. Print Largest

5. Stop.

See attachment for flowchart

To do this, three variables (num1, num2 and Largest) are used.

The algorithm starts by inputting values for num1 and num2; Then variable Largest is initialized to num2

If num1 is greater than num2, the value of Largest is changed to num2; else, nothing changes

Then Largest is printed.

The algorithm and flowchart which evaluates the larger of two numbers is given below and the flowchart attached :

The algorithm :

Step 1 : Start

Step 2 : Reads in two values a and b

Step 3 : Using the comparison operator, check if a is greater or b is greater

If a is greater, display a is greater, otherwise, b is greater.

Step 4 : Stop

The algorithm above gives the stepwise approach to finding the larger value. The graphical order of instruction called the flowchart is attached.

Learn more : https://brainly.com/question/25415243

which menu would most likely allow you to choose a font A.file B.Edit C.format D.insert​

Answers

Answer:

D

Explanation:

We are required to find the menu would most likely allow you to choose a font.

The menu which would most likely allow you to choose a font is "format"

File menu: It is used to create new document or update existing document.

Edit menu: It is used to edit documents. It functions includes: copy, paste, select, find, cut, undo, select all, replace etc.

Format menu: This is the menu that controls the fonts in your documents. It is used apply borders, paragraphs, background, bullet points, numbers, columns. etc.

Insert menu: This is used to place date, pictures, graph, page number, symbol etc in the documents.

Therefore, the menu which would most likely allow you to choose a font is "format"

Read more:

https://brainly.com/question/19566768

To answer the research question "How am I going to find the information I need on the tople?" the best thing Georgia should
do first is
get on her computer to search the topic
make a list of the books she could use.
ask her teacher for specific suggestions.
make a list of relevant sources to check out

Answers

Answer:

The correct option is D)  

Explanation:

To get information about a research topic the first thing to do is make a list of relevant sources.

Georgias sources would depend on the type of research she has been asked to conduct.

If it's primary research, she would collect information from:

Her own experienceHer own observationthe Information she gathers personally from other people

If it is  secondary research, she can look at

books (hard copy, e-copy)journals (online, offline)online (blogs, videos, websites etc)

Whilst looking online, it is important to stick to authoritative sources as it is possible for anyone to publish anything online.

Examples of reliable sources are:

Journals from Industry AssociationsBureaus of StatisticsGlobal Research CompaniesHigher Institutions e.t.c.

Cheers!

Answer:

D

Explanation:

Edge 2021

The hexadecimal number system uses alphabets A to F to represent values_ to _

Answers

Answer:

they represent values 10 to 15

they represent 10 to 15

Suppose you are an ad-serving company and you maintain a log of cookie data for ads you serve to the Web pages for a particular vendor (say Amazon). a. How can you use this data to determine which are the best ads? b. How can you use this data to determine which are the best ad formats? c. How could you records of past ads and ad clicks to determine which ads to send to a given IP address? d. How could you use this data to determine how well the technique you used in your answer to part c was working? e. How could you use this data to determine that a given IP address is used by more than one person? f. How does having this data give you a competitive advantage vis-à-vis other ad-serving companies?

Answers

Answer:

A

Explanation:

thethe more you have attached the more people are going to know your product so that it's going to be a long process which people can introduce to their friends

30 POINTS!!

Type the correct answer in each box. Spell all words correctly.

How are paragraphs distinguished in a website?

Paragraphs are separated using two styles: by ____ or by a ____ line space.

Answers

Answer:

paragraph or by a break line space

Answer:

Paragraphs are separated using two styles: by indentation or by a blank line space.

Explanation:

trust me

what is the purpose of the print area feature​

Answers

Answer: The Print Area function in Excel allows you to print part of a spreadsheet rather than the full sheet

Explanation:

Answer:

C- Selecting specific cells and ranges to print

Explanation: ;)

Why is the no video recording in iPhone camera

Answers

Answer:

it really does depend on what iphone you have but go to Settings > Privacy > Camera and disable the last app that was allowed access to the phone's Camera. check the camera app again and you should see the video recording access.

hope this helped!

Answer:

Wait is this a genuine question im not sure how to answer

Explanation:

30 POINTS!!!

Select the correct answer.

Which term is a gestalt concept?

A. balance

B. governance

C. continuance

D. dominance

E. preference

Answers

i think it’s C : continuance

(b) Explain what is meant by a MAC address.
T​

Answers

Answer:

A MAC ADDRESS is a hardware identification number that uniquely identifies each device on a network.

Explanation:

Create a variable ‘temp’ and assign the value in Celsius. Display the message ‘It’s extremely hot day today!’ if the temperature is greater than 40oC otherwise, displays ‘It’s not too hot!

Answers

Answer:

This code is written using C++

Comments are used for explanatory purpose

Program starts here

#include<iostream>

using namespace std;

int main() {

int temp;

//Prompt user for input

cout<<"Enter temperature (in Celcius): ";

//Check if input is acceptable

while(!(cin>>temp)) {

cout << "That was invalid. Enter a valid digit: "<<endl;

cin.clear(); // reset the failed input

cin.ignore(123,'\n');//Discard previous input

}

//Check if temp is greater than 40

if(temp>40) {

cout<<"It's extremely hot day today!";

}

else{//If otherwise

cout<<"It's not too hot!";

}

return 0;

}

//End of Program

A. Design an algorithm that takes 2 integers input from users in 2 variables, without using any other variable swap the values. Design its flow chart as well.

Answers

Answer:

The algorithm is as follows

Start Accept Input1 and Input2 Input1 = Input1 + Input2 Input2= Input1- Input2 Input1= Input1- Input2 Print Input1 Print Input2 Stop

See attachment for Flowchart

Line 1 and 8 of the algorithm starts and stops the algorithm

Line 2 accepts the two integer variables (input1 and input2)

Take for instance input1 = 5 and input2 = 4

Line 3 increases input1 by input2

At this point, Input1 = 5 + 4 = 9

Line 4 subtracts input2 from input1 and saves it in input2

i.e. Input2 = 9 - 4 = 5

Note that, the value of input2 has changed to the initial value of Input1

Line 5 subtracts input2 from input1 and saves it in input1

i.e. Input1 = 9 - 5 = 4

Note that, the value of input1 has changed to the initial value of Input2

Line 6 and 7 prints the new values of input1 and input2

The flowchart does the same thing as the algorithm; the only difference is that it uses lines and shapes to depict flow of program

The flowchart was designed using Microsoft Office Word

Who developed the first commercially
successful DBMS called Information
Management system.

Answers

Charles Bacheman invented the DBMS

Which economic philosopher you believe has the most positive effect on the United States today


Answers

Answer:

Adam Smith, the Father of Economics, has the most positive effect in the US today because he is also known for creating the concept of gross domestic product (GDP) and for his theory of compensating wage differentials.

Answer:

John Maynard Keynes (1883-1946)  

History pros every so often imply John Maynard Keynes as the "goliath showcase examiner." The six-foot-six Brit recognized a lectureship at Cambridge that was eventually bolstered by Alfred Marshall, whose deftly and demand twists were the explanation behind a great deal of Keynes' work. He is particularly connected with supporting government going through and cash related course of action to mitigate the unpleasant effects of money related downturns, tragedies and impacts. During World War I, Keynes went after the credit terms among Britain and its accomplices, and was a specialist at the congruity game plan set apart in Versailles. (To scrutinize continuously about his speculations, see "Understanding Supply-Side Economics" and "Specifying Monetary Policy.") Keynes was almost gotten out before long the budgetary trade crash of 1929, anyway he had the alternative to change his fortune. In 1936, Keynes formed his unique work, the "General Theory of Employment, Interest and Money," which maintained government mediation to propel usage and contributing – and to facilitate the overall Great Depression that was fuming by then ("spend out of wretchedness," as intellectuals like to call it). This work has been regarded as the dispatch of present day macroeconomics. (To see more, see "Macroeconomic Analysis.")

What is basic statement made up of​

Answers

Answer:

The answer is variables, constants, expressions and funcions.

A BASIC program is composed of statements made up of variables, constants, expressions, and functions. BASIC statements can contain arithmetic, relational, and logical expressions. These expressions are formed by combining specific operators with variables, constants, or BASIC intrinsic functions. Hope it helps

What does tone of voice communicate?
O A. The sentence structure of a discussion
B. Nuances in meaning, including emotions
C. The time of day when people are talking to one another
D. Intentions expected from the audience

Answers

i’m pretty sure it’s B?

Answer:

B. Nuances in meaning, including emotions

Explanation:

Help With Sims 4
So I got the latest update and my game randomly freezes and im guessing it’s form outdated cc but how can I tell what is outdated without deleting all of it help please

Answers

You should probably try removing it one by one if you dont want to get rid of all of it. it might take some time but,,,,

the formula =sum(b2:b10 finds the?

Answers

Answer:

sum (addition) of all the numbers in cells b2 to b10.

Explanation:

Select the correct answer.

Florence is switching jobs. Her previous company worked on Java. The new company works on .NET. Which educational option can help Florence cope with the new programming language at the new job?

A. bachelor’s degree

B. high school degree

C. external training

D. masters degree

Answers

Answer:

I GO FOR OPTION D

Explanation:

BECAUSE THE OPPORTUNITIES ARE MORE FOR MASTER DEGREE THAN COMPARED TO OTHERS..AND EASY TO GET A JOB ACCORDING TO ME..AND MASTER DEGREE AT HIGH LEVEL UNIVERSITY MAKES MORE EASY TO GET A JOB..

HOPE YOU LIKE THAT

Which method will successfully launch the Spelling and/or Grammar Checker dialog box?

Click the Review tab on the ribbon; in the Proofing group, click on the Spelling & Grammar button.
Press the F7 key on your keyboard.
Right-click a word that is marked with a spelling or grammar error, and select Spelling or Grammar from the menu list.
All the above statements are correct.

Answers

Answer:all of the above

Explanation:

I got it correct

The correct is D. All the above statements are correct which All the above statements are correct.

To check your spelling and grammar, select the Review tab and then Spelling & Grammar.

What program is used in the word to check the spelling?

Spell checking is a unique function in Microsoft Word that lets you check your work for grammatical and spelling errors. A software program that detects misspelled words in a document is what spell check essentially is.

Grammar checkers are a great tool for people who aren't writers or are very technical. These apps help users become more fluent in the English language by pointing out their flaws. Your writing will be reviewed by Grammar Checker Tools to ensure that it is accurate and error-free.

Select Spelling & Grammar from the Review tab. In the event that Word discovers a potential error, the Spelling & Grammar dialog box will launch with red text for spelling mistakes and green text for grammatical mistakes.

Thus, the ideal selection is option D.

Learn more about the Spelling and/or Grammar Checker here:

https://brainly.com/question/16798012

#SPJ2

write a paragraph on plastic and pollution within 100 words

Answers

Plastic is everywhere nowadays. People are using it endlessly just for their comfort. However, no one realizes how it is harming our planet. We need to become aware of the consequences so that we can stop plastic pollution. Kids should be taught from their childhood to avoid using plastic. Similarly, adults must check each other on the same. In addition, the government must take stringent measures to stop plastic pollution before it gets too late.

Plastic has become one of the most used substances. It is seen everywhere these days, from supermarkets to common households. Why is that? Why is the use of plastic on the rise instead of diminishing? The main reason is that plastic is very cheap. It costs lesser than other alternatives like paper and cloth. This is why it is so common.

Secondly, it is very easy to use. Plastic can be used for almost anything either liquid or solid. Moreover, it comes in different forms which we can easily mold.

Furthermore, we see that plastic is a non-biodegradable material. It does not leave the face of the Earth. We cannot dissolve plastic in land or water, it remains forever. Thus, more and more use of plastic means more plastic which won’t get dissolved. Thus, the uprise of plastic pollution is happening at a very rapid rate.

Most importantly, plastic pollution harms the Marine life. The plastic litter in the water is mistaken for food by the aquatic animals. They eat it and die eventually. For instance, a dolphin died due to a plastic ring stuck in its mouth. It couldn’t open its mouth due to that and died of starvation. Thus, we see how innocent animals are dying because of plastic pollution.

In short, we see how plastic pollution is ruining everyone’s life on earth. We must take major steps to prevent it. We must use alternatives like cloth bags and paper bags instead of plastic bags. If we are purchasing plastic, we must reuse it. We must avoid drinking bottled water which contributes largely to plastic pollution. The government must put a plastic ban on the use of plastic. All this can prevent plastic pollution to a large extent.

Answer:

Plastic is everywhere nowadays. People are using it endlessly just for their comfort. However, no one realizes how it is harming our planet. We need to become aware of the consequences so that we can stop plastic pollution. Kids should be taught from their childhood to avoid using plastic. Similarly, adults must check each other on the same. In addition, the government must take stringent measures to stop plastic pollution before it gets too late.

Uprise of Plastic Pollution

Plastic has become one of the most used substances. It is seen everywhere these days, from supermarkets to common households. Why is that? Why is the use of plastic on the rise instead of diminishing? The main reason is that plastic is very cheap. It costs lesser than other alternatives like paper and cloth. This is why it is so common.

Secondly, it is very easy to use. Plastic can be used for almost anything either liquid or solid. Moreover, it comes in different forms which we can easily mold.

Furthermore, we see that plastic is a non-biodegradable material. It does not leave the face of the Earth. We cannot dissolve plastic in land or water, it remains forever. Thus, more and more use of plastic means more plastic which won’t get dissolved. Thus, the uprise of plastic pollution is happening at a very rapid rate.

40 POINTS!!!

Drag the tiles to the boxes to form correct pairs.
Match the image manipulation techniques to their description.

Answers

Answer:

desaturation is 2nd one.

contrast is the first

saturation is the third

brightness is last

Explanation:

:) Please make me brainliest!

Match the image manipulation techniques to their description.

makes the image visible from the background - contrastmakes the image black and white - desaturationincreases color intensity - saturationadds light to objects in the image - brightness

What is a dictionary entry?

A dictionary entry refers to the collection of information provided to understand the meaning of a word in a given context. This word of meaning will differ from context to context sometimes.

Image manipulation technique refers to a technology that is used to change the actual image by utilizing the tool in order to make the image clear and brighter.

This technique includes contrasting the background with a dark and light combination, adding brightness to the image, setting the pixels to eliminate the chances of the blurred image,s and so on.

Learn more about the dictionary, here:

https://brainly.com/question/1199071

#SPJ2

A mechanic uses a screw driver to install a ¼-20 UNC bolt into a mechanical brace. What is the mechanical advantage of the system? What is the resistance force if the effort force is 5 lb.

Answers

Answer:

15.7 ; 78.5

Explanation:

Mechanical advantage of a screw = Circumference / pitch

Circumference = pi × d

Where :

pi = 3.142, D = diameter

Therefore ;

Circumference = 3.142 × (1/4) = 0.785 in

Pitch = 1/TPI

TPI (thread per inch) = 20

Pitch = 1/ 20 = 0.05

Mechanical advantage = 0.785 / 0.05 = 15.7

Resistance force if effort force is 5lb

Mechanical advantage = Fr / Fe

Fe = effort force, Fr = resistance force

15.7 = Fr / 5

Fr = 15.7 × 5 = 78.5 lbs

Which of the following operation is not performed by a mouse 1) left click , middle click , right click, double click​

Answers

Answer:

middle click

Explanation:

hope it helps

Answer:

middle click

Explanation:

because in the middle it has a scroll

what type of data can we enter in a spreadsheet?

Answers

Answer:

Spreadsheet data is information that is stored in any spreadsheet program such as Excel or Google Sheets. Data stored in cells in a worksheet can be used in calculations, displayed in graphs, or sorted and filtered to find specific information. hope that helps love!

In a spreadsheet, we can enter numbers, text, dates and times, formulas and functions, Boolean values, currency and financial data, hyperlinks, and images/objects

Numbers: This includes whole numbers (integers) and numbers with decimal points (floating point numbers). Spreadsheets typically support mathematical calculations and formulas involving numeric data.

Text: You can enter plain text, such as names, descriptions, labels, or any other textual information.

Dates and Times: Spreadsheets often provide specific formatting options for entering and manipulating dates and times.

Formulas and Functions: Spreadsheets allow you to enter formulas and functions that perform calculations or manipulate data based on specified rules.

Boolean Values: Spreadsheets often support Boolean values (true/false) for logical operations and conditional formatting.

Currency and Financial Data: Spreadsheets often provide formatting options and built-in functions for dealing with currency and financial calculations.

Hyperlinks: You can insert hyperlinks in spreadsheets to link to external resources or other cells within the spreadsheet.

Images and Objects: Depending on the spreadsheet software, you may be able to insert images, charts, graphs, and other objects to enhance the visual representation of your data.

To learn more on Spreadsheet click:

https://brainly.com/question/10509036

#SPJ6

First Person Who Answers Fast As Possible Will Be Marked As Brainiest ​

Answers

Answer:

Save a database object Ctrl+S or Shift+F12

Open an existing database   Ctrl+O or Ctrl+F12

To quit MS Access ALT+F4

Explanation:

Other Questions
Which musical instruments produce lower pitches you are Hemant / Himanshi. write an article about 120 words on the topic"value based international student exchange program inverted". Two sides of a triangle have lengths of 5 and 9. Which inequalitiesrepresent the possible lengths for the third side, x? * Solve for x:11(x+2)+3(x+4)=34 How do I do this 3x + 5.2 = 2 - 5x The mean diameter of the Earth is 12.76 x 103 km. What is the surface area of the Earth in m2 ? (A) 4.01 x 107 (B) 5.12 x 1014 (C) 1.09 x 1021 (D) 1.68 x 109 (E) 2.05 x 1015 Davina accelerates a box across a smooth frictionless horizontal surface over a displacement of 18.0 m with a constant 25.0 N force angled at 23.0 below the horizontal. How much work does she do on the box? A. 176 J B. 414 J C. 450 J D. 511 J Group of answer choices Who were noblemen? Men who were allowed to use the king's land in exchange for loyalty to the king. Men who were at the top of the feudal system. Men who were at the bottom of the chain of the feudal system and were allowed to use a few acres of the king's land. Charlemagne first came to power using which of the following tactics?1-He allied with his brother to defeat a rival leader.2-He asked the Pope to name him the Emperor of the West.3- He named himself Emperor of the West.4-He allied with the Lombards to overtake his brother. Which phrase best defines lalssez-fairs? Can anyone help??????? Question 11 a and b. An entry level programmer's annual pay is $58.916 based on 52 weeks per year. Due to the economy, his company is having to cut back onthe number of weeks that it employs its programmers. If the firm cuts the work year to 51 weeks but keeps the same rate of pay, howmuch should the programmer expect his annual pay to decrease? Round your answer to the nearest dollar Which option describes a similarity and a difference between isotopes of an element? A. same atomic number; different number of protons B. same number of protons; different atomic number C. same atomic number; different mass number D. same mass number; different atomic number E. same number of neutrons; same number of protons Of the 310 students who watched a soccer match at college, 20 more students walked to the field than rode bicycles. If all students either walked or rode bicycles to the field, how many students walked? What is the difference between (8y-7) and (1-3y) Hint: Difference is another way to say subtraction. Anybody please do e for me please please help................... The lock and key mechanism refers to Researchers want to know about the true proportion of adults with at least a high school education. 1000 adults are surveyed, and 710 of them have at least a high school education. Create a 95% confidence interval for the true population proportion of adults with at least a high school education. Interpret this interval in context of the problem.