If you were describing system software for your car, what would be the functions of the system software?
A) program its own GPS system
B) control how all the systems operate
C) turn on and run through a self-diagnostics test
D) diagnose all the connected systems

Answers

Answer 1
B would be the correct answer

Related Questions

Which are viable channels of communication? the Internet, sign language, playing a video game alone, talking, taking a solitary walk​

Answers

Answer:

The Internet, sign language, and talking

Explanation:

What is a reason given in an argument why the claim is true?

A. Evidence
B. Heuristic
C. Claim
D. Premise

Answers

Answer:

A

Explanation:

A

The reason given in an argument why the claim is true is called; D: Premise.

When having an argument, the parties involved are trying to establish who is right about the topic of the argument based on the claims given by the parties involved in the argument.

Now, arguments get to a point where the parties involved would be required to bring forth a string reason why their position holds the best approach or is true and this position as to why their claim is true is called "premise" of the claim in the argument.

Read more about arguments at; https://brainly.com/question/3132210

Can Someone Please Help Me?! I Have already had a rough morning!

What is step one in the digital file organization process?

What is rule number one?

What is rule number two?

What is the obvious advantage to rule number two?

What is the tree structure?

What are two main ways to organize your files?

How should you name your files?

What is cloud storage?

What are some different cloud storage software?

What is the importance of backing up your computer?

Answers

Answer:

The first step to organizing your digital files is knowing and documenting what you need to keep and why. This means that you need to create record retention guidelines if they do not already exist. Typically, information needs to be kept for legal and accounting purposes.

A MailTip is an instantaneous pop-up message that

warns users of bad email addresses.

forces the sender to check their grammar and spelling.

gives you real-time information about the message you are creating.

provides helpful hints on how to navigate the message controls.

Answers

Answer:

its (c)

Explanation:

If i hit the delete key three times what will be left

Answers

Answer:

planation:

I got this

What kinds of objects might benefit from the use of the Loop Cut and Slide tool, and why? In your own words, how does edge loop manipulation “work?”

Answers

Answer: it doesn’t. The demons are coming

ADVENTURE BOOKS 123
time 4 a story and questions
(this is just a made up story........)

One groggy day The President shows up on the news and he starts arguing with the news woman and he tells her he wants to be the one who informs everyone and guess what? thats what happened.so he walks up to the camera and spills the beans this is what he said Fellow humans i figured you would like to hear this news ........
26harrisona avatar
we are going to have to go into lockdown so if you would like to leave the state you may,.................
ADVENTURE BOOKS 123
time 4 a story and questions
(this is just a made up story........)

One groggy day The President shows up on the news and he starts arguing with the news woman and he tells her he wants to be the one who informs everyone and guess what? thats what happened.so he walks up to the camera and spills the beans this is what he said Fellow humans i figured you would like to hear this news ........we are going to have to go into lockdown so if you would like to leave the state you may,.................cov-id is going to become the ap-ocal-yp-se ......(you)so you have decided to go to an island that is called ----------- (made up name.....)cov-id is going to become the ap-ocal-yp-se ......(you)so you have decided to go to an island that is called ----------- (made up name.....)so you gather your supplies you can chose (20) things only 20 you have to name everything before you leave the state .

Answers

haha, interesting story.

When might you use the Internet without accessing the World Wide Web?

Answers

Jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj

Most sources consider the ARPA-NET project the birth of computer blank
.

Answers

Answer:

Networking

Explanation:

Answer:

networking i think

Explanation:

You have this code in your program.

from array import *
K = array('b',[10, 5, 2, 7])

Which line of code will add 12 to the array?

Answers

Answer:

K.append(12)

Explanation:

From the question, the array name is K.

In python, to add to an array, you make use of the following syntax.

[array-name].append(value)

In this case:

[array-name] = k

and the value to be added is:

value = 12

So, we have:

K.append(12)

Kevin is working in the Tasks folder of his Outlook account. Part of his computer screen is shown below.

Outlook tasks

(I WILL PUT BRAINLIEST)How can Kevin view his appointments and calendar?

by clicking on Tasks in the Navigation Pane
by clicking on the To-Do Bar on the right of the screen
by clicking on the View tab at the top of the screen
by clicking on Manage Task in the Ribbon

Answers

Answer:

D

Explanation:

What is the purpose of a forecast worksheet?

It uses historical data to predict one trend line.
It predicts trends using changing data onto one line.
It uses historical data to predict multiple trend lines.
It predicts trends using changing data onto multiple lines.

Answers

Answer: It’s a

Explanation:

I got it right on edj

What even is this. Can someone help please.

Answers

Answer: it’s a broken hard disk/drive.

Explanation: That screen usually shows when your hard drive is damaged or broken. You’ll most likely need a new one and download professional tools to recover any lost data

try pressing a key? Just read it and do what it says and see if you get back to the main window

Question 29 :What is the term for the part of a browser responsible for reading and processing programming languages

Answers

Answer:

The appropriate approach is "Interpreter".

Explanation:

An interpreter would be a computer application that is being used straightforwardly start executing application programs published using another one of the elevated languages of the computer.

There have been 2 criteria for selecting programs that are published throughout an elevated language. Just like:

To implement the program. Transfer the project across an interpreter.

The following code will not compile. Which of the options below would allow the code to compile and run as intended?

if (x >= -10 and <= 10):
print("In range")

Answers

Answer:

Follows are the code to this question:

x=int(input())#use input method with int that takes integer value from user-end  

if (x >= -10 and x<=10):#defining if block that checks x in between -10 to 10

   print("In range")#print message

Output:

6

In range

Explanation:

In this code, the choices were missing that's why the solution to this question can be defined as follows:

In this, x variable using the input method with the int, which takes integer value from the user-end. In the next step, the if block is used, that checks x value lies on between the -10 to 10, to check this condition it used the and logical operator, that run the code when both conditions are true, and at last, it prints the message "In range".

Which statement is true?

You cannot create an empty deque.

You need to import the deque methods in order to use a deque.

You can use popleft with a list.

You need to import list methods in order to use a list.

Answers

Answer:

The answer to your question is B. I hope this helps. Have a wonderful safe day. <3<3<3

Explanation:

The right end of the queue can have elements added using the append() function, while the left end of the queue can have elements added using the appendleft() method. Thus, option B is correct.

What import the deque methods in order to use a deque?

The ability to add and remove items from the left end is one of deque's main advantages over a list. As was already indicated, a deque object is significantly more effective for these actions at the left end, especially as the queue size grows.

In a data structure, dequeue Both the input and output queues are constrained. Data can only be added from one end of an input restricted queue, but it can be removed from both ends.

Therefore, The most popular list-like data types in computing, queues and stacks, are implemented elegantly, efficiently, and Pythonically using deque, a low-level and highly optimized double-ended queue.

Learn more about deque here:

https://brainly.com/question/29733589

#SPJ2

Look at the following Python code:
word1 = "Umpire"
print(word1[1])

Which character will be indexed from word1 and printed to the screen? (5 points)

1. U
2. m
3. p
4. i

Answers

Answer:

2. m

Explanation:

Computers count starting from 0 so 1 would actually be the 2nd letter

Which of the following expressions will evaluate to true? (3 points)

7 == 7.0
7 != 7.0
7 < 7.0
Question 1 options:

1)

I only

2)

II only

3)

III only

4)

I and III only

5)

II and III only
Question 2 (3 points)
Saved
Which of the following expressions will evaluate to true? (3 points)

12 / 5 != 2.0
12 / 5.0 == 2.0
(int)(12.0 / 5.0) == 2.0
Question 2 options:

1)

I only

2)

II only

3)

III only

4)

I and II only

5)

I and III only
Question 3 (3 points)
Assume an integer variable named num is assigned a value of 20. What is the value of num - 7 < 15? (3 points)

Question 3 options:

1)

True

2)

False

3)

0

4)

1

5)

An error occurs
Question 4 (3 points)
What is the result of the following code segment? (3 points)

int x = 10;
if(x + 1 < 20)
x += 5;
System.out.println(x);

Question 4 options:

1)

10

2)

11

3)

15

4)

16

5)

20
Question 5 (3 points)
Assume the integer variable num has been assigned a valid value. What is the purpose of the following code segment? (3 points)

if(num % 10 != 0)
System.out.print(num);

Question 5 options:

1)

It prints num if its value is a multiple of 10.

2)

It prints num if its value is not a multiple of 10.

3)

It always prints the value of num.

4)

It never prints the value of num.

5)

An error occurs at compile time.

Answers

Answer:

A and B

Explanation:

which part of a computer is responsible for executing the software programs?
Select one
a. Peripheral
b. Hard Drive
c. CPU
d. RAM

Answers

Answer:

c. CPU

Explanation:

In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.

Answers

Answer:

Explanation:

Locked and hidden

What is the most common digital photography file type?

Question 8 options:

TIFF


RAW


JPEG


PHO

Answers

Answer:

JPEG

Explanation:

Answer:

JPEG

Explanation:

Explain why configuration is essential in planning a project.

Answers

Answer:

Configuration management system helps in managing versioning of project management plans, documents and project components. This system may include Change Control System. Because the major cause of taking a new version for a component, document or plan in a project is a change

How do I send the face to the back? Seriously, I can't find out how...

Answers

Answer:

i think you can layer it :)

Explanation:

nice drawing btw!

What I Can Do

Activity: SHOW ME YOUR SKILLS

Directions: Show your skills in caregiving by answering the question. Focus your answer in the underline world.

1. You are assigned to take good care of your younger brother/sister and he/she is HUNGRY. What will you do?

2. Your mother wants to go to the market and you are assigned to take good care of your grandmother. Your grandmother has difficulty in walking. How do you take good care of her if she WANTS TO GO TO THE BATHROOM and when SHE IS HUNGRY?​

Answers

Answer:

1. I would cook or see there is any leftovers from dinner or do take out.

2. I would try and carry her but if I can't then I'll walk her to the bathroom. I make her what she wants.

Which of the following is an advantage of using
the sort procedure? Check all that apply.
preserves cell formatting and formulas
saves time
deletes extraneous data
avoids copy-paste
organizes data so it is easier to draw
comparisons
navigates to a specific page, table, or object

Answers

Answer: preserves cell formatting and formulas

saves time

avoids copy-paste

organizes data so it is easier to draw comparisons

Explanation: just did it

The advantage of using sort procedure is that it saves time and organizes data so it is easier to draw comparisons.

What is sort procedure?

Sort procedure is the process by which data or elements are being arranged in a particular kind of order for an easy access.

The importances or advantages of Sort procedure in data preparation are:

to save the user's time and

organizes data so it is easier to draw comparisons.

Therefore, the advantage of using sort procedure is that it saves time and organizes data so it is easier to draw comparisons.

Learn more about data here:

https://brainly.com/question/25720881

#SPJ2

One aspect of
is satisfied when a user understands how to use a program.
O accessibility
O reliability
O performance
O learnability
NEED ASAP!!!!!!!

Answers

Answer: learnability

Explanation:

Edg 2021

Answer:

Answer: learnability

Explanation:

Does anyone know what these two things are?

Answers

Cd and headphones :)

Answer:

CDs/DVDs and a headset.

Lets do a who know me better! 5 questions! if you get 4\5 you get brainliest or a 3\5 but anything below u dont get it!


How old am I?

Do I like Summer or Winter?

Whats my name? (You guys should get this.)

What grade am I in? (Its between 4th and 8th).

How many siblings do I have? ( its between 2 and 5)

Good Luck!

Answers

Answer:your 13

you enjoy winter but still like summer

Skylar

either 7 or 8th

3 siblings

Explanation:

Calcule la carga que puede levantar un cabrestante si la manivela mide 40 cm y el El radio del molinete es una tercera parte de la manivela, si hacemos un fuerza en el mango de 250 N

Answers

Answer:

C

Explanation:

because...

Which of the following tags is used to create a horizontal line across the width of the Web page? A: <hr /> B: <br /> C: <line></line> D: <bar></bar>​

Answers

Answer:

<hr/>

Explanation:

hr stands for horizontal ruler.

Other Questions
Which conflict or war is referred to in the cartoon The air mass over this location is best described as A. cold with low humidity and high air pressure B. cold with high humidity and low air pressure C. warm with high humidity and low air pressure D. warm with low humidity and high air pressure Drag the tiles to the boxes to form correct pears select the type of economic system that best matches each of the given descriptions In what specific ways did fears about tyranny and abuse of power lead to the revolutionary war and impact debates in the first decades of the Republic can someone please help!! Nmbffggyffgggggggggggggg How did Henry VIII create his own church sort the angle pairs as complementary = A. or supplementary = B. Select the two people who explored part of the Midwest for President Jefferson.CabotClarkHudsonLewis What was the significance of the Supreme Court's ruling in the Marbury vs. Madison case? (1 point)The ruling determined that Congress could act against the president if it wished.The ruling determined that the Supreme Court was more powerful than the president.The ruling determined that laws that violated the U.S. Constitution could be thrown out.The ruling determined that presidents could not remove judges appointed by their predecessor. Simplify 7(x - 2) - 4x + 9.O A. 3x+7O B. 3x - 5O C. -11X- 11D. -21 x + 49 At the beginning of summer, Mark has $200 in savings and Ryan has $350. The brothers have mowing jobs set up for the summer. Because Mark is older, he receives $20 for each mowing job and Ryan receives $15. The brothers parents pay for the fuel used to mow, so all of the money the brothers earn goes to savings.Write two equations, one for Mark and one for Ryan, to represent the money in savings (s) based on the number of mowing jobs (j) Mark and Ryan do.Determine the number of mowing jobs it takes for Mark to have the same amount in savings as Ryan does. Show your work. was one of the first leaders of the republican party. The Spanish created a town near St. Augustine specifically for runaway slaves in 1738 which became known asGroup of answer choicesSarasotaFort MoseFort ManassasFort Desoto Write an equation in point-slope form of the line that has a slope of -3 and passes through thepoint (4,-5) The exposition of a story ischoose one answer A. The endingB. A helping writing toolC. The modifierD. The index 35x+2+5x=42+10x+18find the value... As temperature changes, rocks expand andcontract. The rocks eventually break intosmaller pieces. Which process accounts forthis expansion and contraction of rocks? best clients and we do amazing work together so for that reason I have something called incentive based pricing where if you make a decision on the call with me today I waive the $2,000 setup fee and its just $2,000 /month." Then shut up. This SILENCE here is the most crucial part of your entire call. You MUST not cave in and you MUST remain silent until the prospect speaks. Sometimes this silence is longer than 1-2 mins. Part twelve is continued on the next page Continued from the previous page Were waiting for any words that mean lets move forward with this: "Whats the next step?" "Ok well whats next?" "Ok how do we get started?"] "Ok lets do it!" When they are ready to move forward say: Awesome! Well we can get you started right now if you want. (OK well how do we do that OK how do we do the payment Words like this.) We can do credit card over the phone if you want. (OK cool. Or words to this effect) So is that VISA or MASTERCARD, collect the details and BOOM! What we will not accept Any words that do not mean YES or NO. This decision is BINARY not a grey area. "OK well can you send me something via email?" "OK well how do i get back in touch with you if i decide to move forward?" "Ok Im going to need to think about this" "Ok Im going to have to ask my business partner, wife etc." Handling Objections Objection: How much time do I have to decide? "How much time do you need How did Lincolns approach to Reconstruction differ from the approach of the Radical Republicans?