DO NOW
1. What are the 4 things that make a computer a
computer?

Answers

Answer 1

Answer:

CPU, GPU, Hard drive, Video Card

Explanation:


Related Questions

Choose the term that makes the sentence true.
A STOP error in Windows is also known as a
screen of death because of the background color of the message screen.

White
Blue
Black
Red

Answers

The windows of death color is blue and with a sad face and says “your pc has ran to a problem and needs to restart. We’re just collecting some error info, and then we will restart it for you

Answer:

Blue screen of death

Which of the following represents a backup system that will aid in recovery for any type of disaster or disruption?

Transfer operations
Integrity operations
Redundancy operations
Independent operations

Answers

Answer: redundancy operations

Explanation:

Which function can NOT be performed using the Conditional Formatting option?

A) Insert icons that visually display the ranking or rating of values in a selected range.
B) Apply conditional formatting to dates that fall within specified date ranges.
C) Use conditional formatting to highlight any duplicate values or data in a worksheet.
D) Use conditional formatting to dynamically underline in red and green any language or spelling errors on a worksheet.

Answers

Answer:D is the answer to this one

The function that could not be performed while using the option of conditional formatting is that it is not used to underline for red & green any type of language or for spelling the errors on the worksheet.

The following are the functions that could be performed while using the option of conditional formatting:

Icons could be inserted for showing the ranking.It should be applied for dates that come under particular date ranges.It shows the duplicacy of the values in the worksheet.

Therefore we can conclude that the function that could not be performed while using the option of conditional formatting is that it is not used to underline for red & green any type of language or for spelling the errors on the worksheet.

Learn more about the conditional formatting here: brainly.com/question/9679726

What does an Information security analysts do?

Answers

Answer:

Information security analysts install software, such as firewalls, to protect computer networks. Information security analysts plan and carry out security measures to protect an organization's computer networks and systems. Their responsibilities are continually expanding as the number of cyberattacks increases.

Explanation:

hope this helps

You want to be a computer engineer in your future. What subjects do you need to be good in?​

Answers

technology and livelihood education

derek is working with photo editing software what guidline should he follow A change the composition of the image B change the lighting in the image C work directly on the original image D work on layers if possible​

Answers

Answer:

A

Explanation:

Answer:

D - work on layers if possible

Explanation:

Adding layers will make sure that if you mess up you can delete the layer instead of having to restart. Also I took the same test and got it correct.

1. What is a digital networking app?

Answers

Digital networking is building relationships through social media. Just like traditional networking is an ongoing thing, in the digital world, you read people's posts, comment and share them. You interact and again and again.

Answer:

Digital Networking is a web based and mobile app that makes networking today easy and meaningful.

Explanation:

On what basis computer can be classified into different categories?

Please answer these question and you will get 16 points​

Answers

Computers are classified into 4 different sizes:

- Mini Computers

- Micro Computers

- Super Computers

- Mainframe Computers

Micro Computers are small computers that are usually called PCs, or personal computers. They complete general purpose tasks and can be from $400 home computers to $15000 workstations. These are the most common types of computers, and most people have them in the forms of desktop computers to laptop computers. Even phones and tablets are considered micro computers because they meet the basic criteria of having local storage, a processor, a graphics coprocessor, and a compatible operating system.

Mini Computers are smaller than Micro Computers and are usually thin clients (which are computers that have a neural connection to a server / mainframe). They are usually employed by businesses becuase they are cheap and they have the processing power to tackle word processing, spreadsheet production, and presentation creation. Mainframe computers are in charge of providing this data at extremely high speeds through cloud networking, or through running an ethernet cable for speeds exceeding 50 GBps.

Super Computers are the fastest computer on the planet, and are usually lined up in rows that take up large rooms. These computers are usually stored like servers: on racks where they link up to other servers in order to quantify large amounts of data at extremely high speeds. These have lots of storage, but since storage isn't their primary use case, it isn't as much as a minframe computer, whose sole purpose is in fact storage and data networking.

Mainframe Computers are servers, and they hold data that is utilized by thin clients and and personnel at a business, or they are used to store massive amounts of data. Servers also act as a checkpoint, espeically networking / internet servers, where if you want to access a website, the website's servers need to access the search request for the specific URL and send you the output (the webpage). Mainframe computers do not have as much processing power as Super Computers, but they provide massive data storage options, which is their main purpose.

Answer:

computers can be classified into 4 types

mainframecomputer

minicomputer

supercomputer

microcomputer

CA U ANSWER IN 5min. well lets find out ANSWER HERE. :)

Answers

Answer:

Both are True

I hope this helps!

Answer:

Explanation:

12 is 1

and 13 is false but i aint so sure

I need help. My teachers use this website to teach us, instead of them teaching, and there is new videos and assignments every week. I haven't done it in quite some time, and am now several weeks behind. is there any tips to help me catch up and stay on track?? please give long and helpful answers​

Answers

Answer:

Try your best. Try to do as much as you can each week. Try to manage your time by dedicating a certain amount of days and hours so you can catch up. Also, if you need help, just come to brainly and ask questions and people can help you.

Good Luck!

There is a feature that allows you to lock the document, to avoid others making changes. True or False

Answers

Answer:

yes there is

Explanation:

How do you create multiple columns in Word?


A.Click Home>Paragraph, Alignment


B.Click Page Layout > Columns, Click the column layout you want


C.Select the text or click in the section you want to change, Click Page Layout > Columns, Click the column layout you want.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct answer to this question is B. if you are changing the whole document in a column layout, however, if you want to change the specific text into column layout then option C is correct.

However, according to this question that how do you create multiple columns in word then option B is correct.

That is the document that you want to change its layout into the columns, you need to go and click on Page Layout tab > Columns, Click the column layout you want.

Othe options are not correct because:

Option A is not correct to change the document layout into columns and option C only true when you want a specific text will be changed in the columns layout.  

How buffers are used when stream a video or a music from the internet to your computer.

Please give short answers i dont need that much explanation.

Answers

Answer:

A buffer ensures you have a constant data rate even when your internet connection has hickups.

So your buffer sits on your computer and always has the next bits of video or audio available so your video or music keeps playing when the connection fails for a short while.

• Comments are blank which can be blank entered into documents


. Can be blank by clicking on Previous and blank icons in the blank group


electronically

notes

Comments

Next

navigated ​

Answers

Answer:

"can be blank by clicking on previous and blank icons in the blank group...

navigated

Explanation:

Been a while since i learned this this is a edu guess.

python 3.4 code practice question 2

“Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out “Error - cannot divide by zero.”

Answers

numerator = int(input("Enter a number: "))

denominator = int(input("Enter a number: "))

if denominator != 0:

   print(numerator/denominator)

else:

   print("Error - cannot divide by zero.")

The fraction can only be described as "undefined" if the denominator is ever 0.

Explain about the denominator is zero?

The mathematical error (not specified) of dividing a number by zero can be graciously overcame by using exception handling. The output of division by zero will be displayed as infinity if you write code without employing exception handling, which cannot be further processed.

A fraction cannot have zero as the denominator since zero cannot be divided by anything. The reason is that you get back 6 when you multiply the answer, 2, by the divisor, 3. Because the denominator cannot be zero, the fraction is invalid and has no value.

"Enter a number: " input = int numerator

Denominator: int ("Enter a number: "); input;

if the numerator!= 0

print(numerator/denominator)

else:

print("Error - cannot divide by zero")

("Error - cannot divide by zero.")

To learn more about denominator is zero refer to:

https://brainly.com/question/17546250

#SPJ2

Using the Insert tab, you can convert text into a table and a table into text.

True
or
False

Answers

The Answer is True Not false

Two types of are desktop computers and notebook computer

Answers

Answer:

personal computer is the correct answer.

Two types of personal computer are desktop computers and notebook computer. Thus, option A is correct.

Today personal computer is changed to laptop mode. Personal computer is made of CPU, monitor, keyboard, printer and mouse. All input device and output device connected with wire or without wire.

Personal computers are also called as desktop or workstation. These days all become compatible device which is called as laptop. Basically all input devices and output device are fixed in laptop so end user can carry the laptop and used anywhere.

Laptop is charged and used, whereas desktop or workstation just fixed in the table and used it.

Learn more about computer on:

https://brainly.com/question/32297638

#SPJ2


What are some ways to assess the credibility and accuracy of
an internet source?


A. Determine it’s purpose

B. Check the domain suffix

C. Make sure the author is credible

D. Make sure the site is up to date

Answers

Answer:

B, C, and D

Explanation:

All are ways to assess the credibility and accuracy.

What is the maximum field size ailowed in a text field?
O 20 characters
O 50 characters
O 255 characters
535 characters

Answers

255 characters is the correct answer

Tricia is managing tasks that have been assigned to her. She needs to enter mileage information in relation to a project which command must she use to access this option?​

Answers

Answer:

well she is doing a task

Explanation:

Answer:

task

Explanation:

4.7 Code Practice: Question 2

Answers

for x in range(56, 71):

   print(x, end=" ")

I hope this helps!

The code is in Java.

It uses for loop that iterates from 56 to 70 (inclusive) and prints the number in that range.

Recall that loops are used when there is a repetition. The repetition here is incrementing the number and printing it.

Comments are used to explain each line of code.

You may see the output in the attachment.

//Main.java

public class Main

{

public static void main(String[] args) {

   

    //create a for loop that iterates starting from 56 through 70

    //print the numbers in that interval

       for(int number = 56; number <= 70; number++)

           System.out.print(number + " ");

}

}

You may read more about the loops in the following link:

brainly.com/question/14577420

which monitor will you prefer in your school crt or fpd and why?​

Answers

Answer: CRT

Explanation: because just because

7.4 Code Practice 1

Write a program that prompts the user to input a letter grade in either capital or lowercase.
Your program should then output the correct
number of the GPA. See the table below for possible inputs and expected outputs. Your program should define at least one function named
GPACalc that is called from your main program.

The GPACalc function should take exactly one parameter-a string for the letter grade as lower or upper case. It will return either an
integer for the GPA value or a string Invalid, if the letter grade parameter is invalid.

Can someone please help me with this quickly cause I feel like I’m overthinking this

Answers

In python 3.8

def GPAcalc(grade):

   if grade.lower() == "a":

       return 4

   elif grade.lower() == "b":

       return 3

   elif grade.lower() == "c":

       return 2

   elif grade.lower() == "d":

       return 1

   elif grade.lower() == "f":

       return 0

   else:

       return "Invalid"

print(GPAcalc(input("Input a letter grade: ")))

I hope this helps!

The program illustrates the use of conditional statements.

Conditional statements are statements whose execution depends on the truth value of the condition.

The program in Python, where comments are used to explain each line is as follows:

#This defines the GPAcalc function

def GPAcalc(grade):

   #This converts grade to lower case

   grade = grade.lower()

   #The following if conditions returns the GPA value depending on the letter grade

   if grade == "a":

       return 4

   elif grade == "b":

       return 3

   elif grade == "c":

       return 2

   elif grade == "d":

       return 1

   elif grade == "f":

       return 0

   #If the letter grade is Invalid, then the function returns Invalid

   else:

       return "Invalid"

#This gets input for grade

grade = input("Letter Grade: ")

#This prints the corresponding GPA value

print("GPA value:",GPAcalc(grade))

At the end of the program, the corresponding GPA value is printed

Read more about similar program at:

https://brainly.com/question/20318287

Write a for loop to print all the even numbers from 200 to 300.

Expected Output
200
202
204
206
208
210
212
214
216
218
220
222
224
226
228
230
232
234
236
238
240
242
244
246
248
250
252
254
256
258
260
262
264
266
268
270
272
274
276
278
280
282
284
286
288
290
292
294
296
298
300

Answers

for x in range(200, 301, 2):

   print(x)

I hope this helps!

4.9 Code Practice: Question 4

Answers

Answer:

sum = 0

r = 0

while r < 10:

   p = float(input("Enter Temperature: "))

   sum += p

   r += 1

print("Sum = " + str(sum))

Explanation:

You can change the variables if you like.

In this exercise we have to use the knowledge of computational language in python to write the code.

This code can be found in the attached image.

To make it simpler the code is described as:

sum = 0

r = 0

while r < 10:

  p = float(input("Enter Temperature: "))

  sum += p

  r += 1

print("Sum = " + str(sum))

See more about python at brainly.com/question/22841107

Phil wants to make a dark themed superhero movie. What could be his target demographic

Answers

Answer:

d

Explanation:

i think, because it makes the most sense to me.

Answer: Male, aged 18-25


Sam wanted to send a document quickly to an individual 300 miles away. Sam used a
motherboard
fax machine
scanner
O hard drive

Answers

Answer:

Fax Machine its faster and digital

love me love me say that u love me fool me fool me go on and fool me : ) answer the question thx

Answers

Answer:

fido

Explanation:

i think sorry if wrong

Answer:

fidooo

Explanation:

which of the following is least likely to be a scientific experiment

Answers

Answer:

what causes gravity to have a amount of force on one object but not another

Explanation:

is spin to win paying or is a scam app​

Answers

Answer:

scam bro.

Explanation:

Answer:

yes it's a scam app when I tried it and after a few days it hasn't been delivered to my house though

Other Questions
if a cell displays a great amount of activity one possible reason for this could be that it has large quantities of???? 3 answers -4(-3n-8)=104A:11B:-6C:10D:6 Identify the property that justifies the statement. AB = CD and CD = EF. So AB = EFA. Reflexive Property of CongruenceB. Substitution Property of EqualityC. Symmetric Property of CongruenceD. Transitive Property of Congruence Write a short (4-6 panels) comic in which you use as many of your spelling words as you can. Underline the spelling words that you use.Helpppp Select the correct answer.Which of the following nutrients acts as an energy source?A. WaterB. CarbohydratesC. VitaminsD. Minerals Which of the following component is required to insert text in multimediaprogramme?i. Animationii. Textiii. Graphics Which of the following cities was the greatest of the Hellenistic age immediate help needed, google wont give me straight answer.im a k-9 unit officer in iraq and our medic just left us about a week ago. i have a bullet wound on my leg and my partner has one on his shoulder. We got no medical supplies except for whiskey, a combat knife, gunpowder, and some gauze. I really need some help here, how do i tend to these wounds. I need a good attention grabber for forrest Gump any suggestions? A pattern exists in the sum of the interior angles of polygons. The sum of the interior angles of atriangle is 180, of a quadrilateral is 360, and of a pentagon (5 sides) is 540. What is the sum ofthe interior angles of a nonagon (9- sided shape)? Add 1/2 + (-3/4)= show the work Select The answer that is correct giving brainliest Why is the force of gravity less on the moon than on Earth The national economic forecast for the next two years prepared by the staff of the Board of Governors is published in the Where in a human cell does the 1st stage of cellular respiration happen? x+y=7 in slope intercept form Please only answer if you 100% sure! Giving brainliest!!Which of these best describes the action of calling something to the attention of the public by a paid announcement?A Op-edB AdvertisementC CartoonD StatisticWhich of these best describes a medium of communication that is designed to reach the most people at one time such as television or radio?A peripheralB cranialC mass-mediaD nootropicWhich of these describes an effective ad?A It creates an impression.B It influences people to respond.C It makes the product stand out.D All of these are correct.Which of these best describes something that incites or has a tendency to cause action?A automotiveB autosomalC inventiveD incentiveWhich of these is not a basic part of an advertisement?A It is free of biasB it is paid forC there is an identifiable sponsorD it reaches a large audience2 The amplitude of a(n) transverse wave is a measure of how compressed or rarefied the medium becomes. True or False? The diagram shows two forces acting perpendicularly on an object. The forces have magnitudes F1 = 8.2 N and F2 = 20.6 N. What is the net force acting on the object?a) magnitude 22 N; direction 68 degrees counterclockwise fromb) magnitude 22 N; direction 22 counterclockwise fromc) magnitude 25 N; direction 34 counterclockwise fromd) magnitude 25 N; direction 68 counterclockwise from HELP PLEASE AND TY What's the slope?