Where are the motors for the light year one located ???

Answers

Answer 1
Not sure honestly ...

Related Questions

Joann wants to save the building block she created for the title of her company.
In which file does she save this building block?
O Building Blocks.dotx
O Building Blocks.html
O Building Blocks. thmx
O Building Blocks.qpbb

Answers

Answer:

The actual answer is A.

Explanation:

Answer:

a

Explanation:

what are the 2 things you are not sure about evaluating functions​

Answers

Answer:

every thing

Explanation:

Answer:

To evaluate a function, substitute the input (the given number or expression) for the function's variable (place holder, x). Replace the x with the number or expression. 1. Given the function f (x) = 3x - 5, find f (4).

A function is a relation in which each input has only one output. In the relation , y is a function of x, because for each input x (1, 2, 3, or 0), there is only one output y. x is not a function of y, because the input y = 3 has multiple outputs: x = 1 and x = 2.

A formula is an expression which calculates the value of a cell. Functions are predefined formulas and are already available in Excel. For example, cell A3 below contains a formula which adds the value of cell A2 to the value of cell A1.

Explanation:

what are the weakness of a computer somebody plzz tell me​

Answers

Answer:

The computer, in spite of its strengths and the denials of its missionaries, does have a number of weaknesses. These can be seen in three areas: first, the machine itself, second, the people who serve it and, third, its output.

A financial manager was completing an annual report that contained multiple graphs explaining the company growth. If she wanted to cross-reference these graphs throughout the document, she should use the _____ feature. biliography citation caption footnote

Answers

Answer:

Caption

Explanation:

because it just works.

? Assessment
8/10
Which of the following products likely include Internet of Things (IoT) connected
devices?
A soap dispenser that dispenses soap
when it detects a hand underneath.
A smart toilet flushes automatically
after use.
Lights that turn on when someone
enters the bathroom.
None of the above

Answers

Answer:

none of the above

Explanation:

Question 2 of 5

Which detail from the story is part of the rising action?

O A. Mr. White is sorry he ever wished on the monkey's paw.

O B. Mr. White wishes his son were back in the cemetery.

C. The author establishes that the story begins on a cold, wet night.

O D. Mr. White pulls the monkey's paw from the fire.

SUBMIT

Answers

Answer:

D. Mr. White pulls the monkey's paw from the fire.

Explanation:

Rising action refers to the events in the stories that bring suspense and interest. It includes the crucial decisions and important events that leads towards the climax of the narrative. Rising actions focuses on the flaws that the characters possesses and create a space of tension.  

In the story, "The Monkey's Paw" the rising action is observed when Mr. White pulls the monkey's paw from the fire to make the third wise respectively.

Answer:

Mr. White pulls the monkey's paw from the fire.

Explanation:

Why is it important to proofread your documents ?

Answers

Proofreading can make sure that your document is completely free from errors to a high standard.

Answer:

It's important to proofread your documents to make sure that you don't have any avoidable mistakes.

Explanation:

Avoidable mistakes include grammar, sentence structure, and word choice.

What is an Odometer (Driver's Ed)

Answers

Answer:

It's the thing that indicates the total number of miles the car has been driven.

Explanation:

I hope this helps!

Answer:

an instrument for measuring the distance traveled (as by a vehicle)

Explanation:

Hope this helps! <3

What is computer. Write full form of mips​

Answers

Answer:

Stands for "Million Instructions Per Second." It is a method of measuring the raw speed of a computer's processor. ... The MIPS measurement has been used by computer manufacturers like IBM to measure the "cost of computing." The value of computers is determined in MIPS per dollar.

which are the two alternatives for pasting copied data in a target cell groups

Answers

Answer:

Excel has decided to paste contents into a single cell, rather than keeping data in columns. When copying from a query in SQL that has data in a table, pasting it into Excel would normally split the data into the columns - keeping the table. But Excel has automatically changed and takes out the table, pasting each row into one cell.

Explanation:

The standard format rules for a professional letter should be followed.
True
False

Answers

The answer is, true.

After a new technology is purchased, what are some additional costs that must be incorporated into an upgrade budget?

Answers

Answer:

Depends

Explanation:

If corprate then education,

if home then premium software,

if school educational software.

HOPE THIS ANWSERS YOUR QUESTION

IF NOT, MESSAGE ME!

how major is the technology problem in the United States? Why is it such a big problem?

Answers

Answer:

Explanation:

the problem is predators can get to children easier through the internet

What does the Merge and Center feature do? Check all that apply.

O adds borders to a group of cells in a range
O centers an image in the middle of a worksheet
O combines multiple cells into a single cell
O centers the alignment of text in the cell
The answer is the last 2 this question just isn't on brainly so I thought i'd add it

Answers

Answer:

O combines multiple cells into a single cell

O centers the alignment of text in the cell

Explanation:

wanted the points lol

Answer:

3

4

Explanation:

The way things are arranged on a publication is referred to as the _____.

style
guides
layout
scheme

Answers

Answer: I’m pretty sure it’s layout

A data unit created at the transport layer by UDP is a _____.


A. segment

B. packet

C. datagram

D. frame

Answers

Answer:

A datagram

Explanation:

Protocol data units for the Internet protocol suite are: The transport layer PDU is the TCP segment for TCP, and the datagram for UDP. The Internet layer PDU is the packet.

Answer:

I think it's Datagrame

Explanation:

Please help, Tech class!!

Answers

Answer:

Explanation:

1=A

2=A

3=A

4=True

5=A

6=D

7=D

8=B

9=True

10=C

This feature allows you to adjust your view to see the lower or upper part of a document.

A.Command

B.Ribbon

C.Scroll bar

D.Tab

Answers

Answer:

C. scroll bar

Explanation:

Its what you use to scroll up and down on documents to see different parts of it

Which option ensures that a page break is automatically inserted ahead of a specific paragraph or heading?

the Page Breaks Before option in the Paragraph dialog box
the Keep With Next option in the Paragraph dialog box
the Keep Lines Together option in the Paragraph dialog box
All of the above options are correct.

Answers

Answer:

All the above options are correct

Answer: d

Explanation:

Write a while loop that replaces every occurrence of “cat” in the message with “dog” using the indexOf and substring methods.

Given:
public class ChallengeReplace
{
public static void main(String[] args)
{
String message = "I love cats! I have a cat named Coco. My cat's very smart!";

// Write a loop here that replaces every occurrence of "cat"
// in the message with "dog", using indexOf and substring.






}
}

Answers

Answer:

Complete the program using:

int index = message.indexOf("cat");

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

System.out.print(message);

}

}

Explanation:

The line gets the index of string "cat"

int index = message.indexOf("cat");

The following operation is repeated until all occurrence of "cat"s has been replaced with dog

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

This prints the new string

System.out.print(message);

}

}

The program illustrates the use of loops.

Loops are used to perform repetitive and iterative operations.

The code segment where comments are used to explain each line, is as follows:

//This gets the index of "cat" in the string message

int index = message.indexOf("cat");

//The following loop is repeated, until there is no occurrence of "cat" in the string

while(index != -1){

//This replaces "cat" with "dog"

message = message.replace("cat","dog");

//This gets another index of "cat" in the string message

index = message.indexOf("cat");

}

//This prints the new string

System.out.print(message);

}

}

At the end of the loop, all occurrence of "cat" are replaced with "dog".

Read more about similar programs at:

https://brainly.com/question/20461017


You should structure the
first before you search for a relevant picture.

Answers

Answer:

True

Explanation:

Question 12 (1 point)
Generally, each pixel in an image creates 25 bytes of data.
True
False

Answers

Answer:

This is B: False

Explanation:

Each pixel of an image creates 24 bits, or 3 BYTES of data for color, and 1 byte for black and white.


1. Problem solving is
(4 Points)
O A. highly interactive
B. collaborative
C. Both And B
D. Designing an App

Answers

Answer:

A

Explanation:

1. Problem solving is

(4 Points)

O A. highly interactive

B. collaborative

C. Both And B

D. Designing an App

Type the correct answer in the box.
How can users prevent broadcasting their existing connections?
User can make the BLANK name invisible, thereby preventing the hackers from knowing about an existing connection.

Answers

Answer:

User can make the network name

Answer:

The correct answer is: SSID

Explanation:

Hiding the SSID involves preventing the broadcast of the SSID name. Users can make the SSID name invisible to prevent hackers from knowing about an existing connection.

When would you use the Reading View in Word?

To add an image to the document
To have Word Online read the document to you
To make changes to the document
To read the document without any distractions

Answers

Answer:

D: to read the document without any distractions

To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

What is an Inference?

This refers to the deductions or conclusions that are made about a particular thing or idea based on available evidence, background information and powers of conclusion.

Hence, we can see that from the given text, Nicholas Carr is quoted as saying that reading online makes people to be 'mere decoders of information.' and this makes people become less engaged as they tend not to use their ability to interpret texts less and less.

Based on the given text, it can be seen that Nicholas Carr believes that reading online makes people not connect as deeply as reading without distraction, which can be an inference, to offline reading.

Therefore, To read the document without any distractions is used in the reading View in Word. Thus, option D is correct.

Learn more about document on:

https://brainly.com/question/27396650

#SPJ2

Use the drop-down menus to complete the statements about creating a table of contents in Word 2016.

To use the table of contents feature in Word, a user must have already created
in the document.

The Mark Table of Contents Entry option is used for
marking nonheading text for the table of contents.

On the Table of Contents dialog box, the
button can be used to change font styles.

Answers

Answer:

1.headings and subheadings

2.manually

3.options

Answer: 1.Headings and Subheadings

2.Manually

3.Options

Explanation: Just did it on e2020.

What kinds of useful tags might you use to help you organize and find the documents in the future?

Answers

Answer:

you can use color tags(blue for biology) or just simply word tags (biology for biology)

Explanation:

Hope this helps a little.

The useful tags might you use to help you organize and find the documents in the future insertion point.

What is the use insertion point?

If any user or person scrolls the following contents by using the keyboard from one position to another position in the document of the user then, the insertion point moves automatically without any implementation when the user presses any key they want. If the user clicks on the arrow keys then, it also works like that.

The <dd> tag is used in HTML document to explain set of terms. The <dd> tag list is used in conjunction with the <dl> term. Inside a <dd> tag we can insert text, sentence, paragraph or links. There are 4 primary tags to build any website. Every HTML document begins and ends with HTML tag.

The PCR stands for 'Patient Care Report.' It is a legal document that needs to have all the procedures done to the patient. This document becomes part of the patients permanent medical record and is used in court in legal cases. It is also used to bill medical expenses.

Therefore, The useful tags might you use to help you organize and find the documents in the future insertion point.

Learn more about insertion point on:

https://brainly.com/question/14274782

#SPJ2

Which of the following is an advantage of the Apple operating system compared with its counterparts?
A. It can run on several different platforms.
B. It has greater compatibility with applications.
C. It has a large technical support base.
D. It is less susceptible to viruses.

Answers

Answer:

A. It can run on several different platforms.

Explanation:

What does this loop that uses a range function do?

for i in range(7, 15)
print("goodbye")

O It prints "goodbye" 8 times, numbered from 7 through 14.
It prints "goodbye" 9 times, numbered from 7 through 15.
O It prints "goodbye" 9 times.
O It prints “goodbye" 8 times.

Answers

This code will print "goodbye" 8 times

Answer:

B. It prints "goodbye" 9 times, numbered from 7 through 15

Explanation:

One day you tap your smartphone screen to turn it on, and nothing happens. It appears to be turned off and will not turn on. What should you try first to fix it?

perform a soft reset

plug it into a charger for an hour
submerge it in a bag of rice for 24 hours
perform a hard reset

Answers

Answer:

B) Plug it in

Explanation:

Though the other answer would be helpful in a real life situation, the correct choice on ed g e is b) :)

plug it into a charger for an hour
Other Questions
Finally, it was determined that fleas on rats caused the Black Death, but that wasnt until the 1850s. 1890s. 1950s. 1990s. 1. The voting booths on the other side of the room. how do i fix it? como la comunicacin no verbal puede afectar negativa y positivamente las relaciones Mr. Hernandez opened a flower shop. He took a random survey by asking every 5th customer to find out their favorite flower. Who is the sample? all the customers every 5th customer all the flowers all the people in the town Nio conducts a science experiment. He puts yeast into a bottle with water and sugar, and then caps the bottle with a balloon. He returns two hours later and notices there are bubbles on the surface of the mixture in the bottle and that the balloon has inflated, but there are no other apparent changes.What most likely happened?a non-chemical change, because there are no indicators of chemical changes taking placea chemical change, because the mixture changed colora chemical change, because a gas was produceda non-chemical change, because the changes that occurred are reversible i need link for rickroll lol The y-coordinate of the vertex of the parabolic graph of f(x) = ax2 + bx + c is What was Upton Sinclairs main purpose in writing The Jungle?to promote the socialist views that he adopted as an adultto explain why journalists had an obligation to tell the truthto arouse public sympathy for slaughterhouse workersto prompt Congress to pass food-safety laws Explain how King Crimson works. (JoJo's bizarre adventure). I need this for an essay The table shows the height of water in a pool as it is being filled.A table showing Height of Water in a Pool with two columns and six rows. The first column, Time in minutes, has the entries, 2, 4, 6, 8, 10. The second column, Height in inches, has the entries, 8, 12, 16, 20, 24.The slope of the line through the points is 2. Which statement describes how the slope relates to the height of the water in the pool?The height of the water increases 2 inches per minute.The height of the water decreases 2 inches per minute.The height of the water was 2 inches before any water was added.The height of the water will be 2 inches when the pool is filled.. 15 points! Which sentence uses a word incorrectly?I enjoy camping, but I also enjoy getting back to civilization!Writers don't tell you the theme of a story directlyyou have to analyze the text to find it.The speakers have blown out on my stereotypetime for a new one.Many English words have Greek or Latin roots. What did civilizations have to do if there was not enough rainfall to secure the health of a crop and a good harvest? Mercury is the closest planet to the sun, but it is still 36 million miles away. Mercury orbits the sun for 88 days. Because Mercury travels around the sun faster than the other planets, it was named after the quick messenger of the Roman gods. Steps on solving equations and formulas example: rt - 2n = y, for t Can someone help me pls???!!!Chapter one the hobbit Identify the factored form of each polynomial. 4r + 11x + 6 4x + 10x + 6 11. 4r + 14x +6 (4x+3)(x+2) :: (x+3)(4x + 2) :: (2x+3)(2x + 2) The potential energy of a roller coaster is 50 joules. The kinetic energy of the same coaster is 50 joules. What is the mechanical energy of the coaster? O joules 50 joules 100 joules To what three different audiences might you have to give a presentation? How would the presentation differ for each? Which one would be the most challeng- ing for you? What is the factored form of 5x-625x^4 The cost of Kerris meal was $10. If she wants to leave a 15% tip, how much should she leave? Use the percent proportion to help you ( part/whole = percent/100).