Answers

Answer 1

Answer:

A motherboard is the main printed circuit board in general-purpose computers and other expandable systems. It holds and allows communication between many of the crucial electronic components of a system, such as the central processing unit and memory, and provides connectors for other peripherals


Related Questions

what would happen without satellites???

Answers

Answer: without satellites there would be no way for the world to communicate

Explanation:

Answer:

Explanation:

Without satellites, we wouldn't have much choice in our television programs either, because there would be no more direct-to-home broadcasting, and cable operators would no longer have easy access to such a wide variety of channels.

meaning and explanation of fortran​

Answers

Definition of FORTRAN. : a computer programming language that resembles algebra in its notation and is widely used for scientific applications. Hope this helped!

Answer:

is a general-purpose, compiled imperative programming language that is especially suited to numeric computation and scientific computing.

Explanation:

Fortran, as derived from Formula Translating System, is a general-purpose, imperative programming language. It is used for numeric and scientific computing. Fortran was originally developed by IBM in the 1950s for scientific and engineering applications.

A friend is working on piecing together a computer. He calls and explains that he needs to buy a circuit board with ports and sockets that connects the main devices of his computer. Which computer component is he most likely explaining? Group of answer choices

Answers

So this component is the motherboard

Hope this helps.

-scav

ASAP PLZZ

1. In the space below, explain how the Table Tools can be accessed in Word.

Answers

Answer:

Creating a Table

1) Click the Insert tab on the Ribbon

2) Click on Table

3) Highlight the number of columns and rows you’d like

OR

4) Click Insert Table

5) Click the arrows to select the desired number of columns

6) Click the arrows to select the desired number of rows

7) Click OK

Which of the following best describes the protocols used on the Internet?

The protocols of the Internet are designed by government agencies to ensure they remain free to use

The protocols of the Internet are secret to maintain the privacy and security of people using them

Each device connected to the Internet will use a protocol designed by the company that manufactured it

The protocols of the Internet are open and used by all devices connected to the network

Answers

The protocols of the Internet are open and used by all devices connected to the network

-scav

2. You go to an intemet cafe to send an email to your friend upon returning home you
realize that you forgot to log out your account. What probably could happen to your
account?​

Answers

There is a risk that someone else would gain access to your account as well as your personal information.

Pueden cojer los datos privados hackear la cuenta

Which of the following terms refers to the legal protection provided against
copying, distributing, performing, or changing both published and
unpublished works?
A.intangible property
B.tangible property
C.copyright
D.intellectual property

Answers

Answer:

The answer is C is your answer I guarantee it is I know it

List two building techniques or materials that should be considered if you are building in Tornado Alley.

Answers

Have a strong foundation and a tornado shelter.

What is the purpose of a hyperlink in a presentation?
A to add a joke to a presentation
B to create an attractive image
C to connect a user to a new slide, a file, or a webpage
D to keep track of the order of slides

Answers

Answer:

Answer:c to connect a user to a new slide, a file, or a webpage

Explanation:

Explanation:c

Answer:

c

Explanation:

Which service uses a broadband connection?
Select one:
O a. DSL
O b. 3G and 4G
O c. dial up
O d. all connections use broadband

Answers

Answer:

d

Explanation:

because all in one question form

what is the output of this line of code
print("hello" + "goodbye")
A - "hello" + "goodbye"
B- hello + goodbye
C - hello goodbye
D - hellogoodbye

Answers

Answer:

D - hellogoodbye

Explanation:

since your merging two string together you will simply just get one string in total

Answer:

D

Explanation:

Harold is working on a science project that includes a spreadsheet containing calculated results based on the data. An obviously incorrect result is being calculated and displayed. The data is correct, but the formula must be flawed. To get the correct information, Harold clicks on the cell containing the incorrect results and adjusts information contained in the:
A. the formula bar.
B. the shortcut toolbar.
C. the calculator pop-up.
D. the column header.

Answers

Answer: When entering a formula into a cell, you begin with  an equal sign

Functions and formulas are calculations a spreadsheet program applies to data.

Functions are preset calculations within spreadsheet software.

Formulas are user-entered calculations that may contain cell references, numerical values, and preset calculations.

Question #4
Multiple Choice
MEZEA
Which is immutable?
O dataset
O tuple
O deque
O list

Answers

Answer:

tuple

Explanation:

the inner machinations of my mind ar- hey wait i´m not Patrick

What are benefits for robots doing work instead of humans?
What are some drawbacks for robots replacing humans?
write in complete sentences.

Answers

Answer:

Explanation:

Robots are able to complete tasks more efficiently and with more perfection than humans.

Humans in many production based jobs will loose their lively hood.

N an AWS design template, the "depends on" property of a resource is represented by an _________ color dot. Red Orchid Blue Black

Answers

Answer:

Black

Explanation:

Explicit dependencies in Amazon Web Services are used to determine the order in which resources are added or deleted on AWS Cloud Formation. If a user wishes to create explicit dependency, a line from the "dependson" dot located at the route is moved to the gateway-VPC attachment.

The "dependson" dot helps to specify which resource is created before another. It is signified by a black dot (*). It can be used to override parallelisms and also to determine when a wait condition becomes activated.

1. What are you going to do if someone ask for your personal information online?​

Answers

Answer:

Ask them why they need such information.

Explanation:

If they can't give you a good reason, please don't share your personal info. ♥

Answer:

If someone ask my personal information online i'll  trun off  my mobile data or wi-fi  and then i'll block the user's Id

Explanation:

hope it is helpful to you

name the default Package of java

Answers

Answer:

java.lang package

Explanation:

Java compiler imports java. lang package internally by default. It provides the fundamental classes that are necessary to design a basic Java program.

The following procedure is intended to return true if the list of numbers myList contains only positive numbers and is intended to return false otherwise. The procedure does not work as intended. PROCEDURE allPositive(myList) { index ←← 1 len ←← LENGTH(myList) REPEAT len TIMES { IF(myList[index] > 0) { RETURN(true) } index ←← index + 1 } RETURN(false) } For which of the following contents of myList does the procedure NOT return the intended result?

Answers

Answer:

[-1, 0, 1]

Explanation:

Given

The above procedure

Required

Which list does not work as intended

The question has missing options (the options are available online).

From the question, we understand the procedure is to return true for lists that contain only positive numbers.

However, the list does not work for [-1, 0, 1]

The reason is that; the procedure starts checking from index 1.

i.e. index ←← 1

In [-1, 0, 1], the element at index 0 is negative (-1).

Since the procedure starts checking from index 1, the procedure will not check the element at index 0 (i.e. -1).

Hence, it will return true, instead of false

In this exercise we have to use the knowledge of computational language in python, so we have that code is:

It can be found in the attached image.

So, to make it easier, the code in python can be found below:

NumList = []

Number = int(input("Please enter the Total Number of List Elements: "))

for i in range(1, Number + 1):

   value = int(input("Please enter the Value of %d Element : " %i))

   NumList.append(value)

print("\nPositive Numbers in this List are : ")

for j in range(Number):

   if(NumList[j] >= 0):

       print(NumList[j], end = '   ')

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

1.The hardware that allows data to be transmitted from a computer along a telephone line to another computer at the other end is a_____

modem

keyboard

visual display unit

printer



Answers

So this is called a modem we use it to send  and receive info over telephone lines

Hope this helps

-scav

how do i turn off itallics on a school chromebook i accidentally turned them on in another tab and i dont know how to undo them

Answers

u go in to the bar with i b u the is italics and u press it again and it will turn it off but u have to have the text selected

What technology standard is commonly used today for hard drives to interface with the motherboard in a system? pasago po salamat ^_^

Answers

Answer:

Serial Advanced Technology Attachment (SATA).

Explanation:

The hardware component of a computer can be defined as the physical parts or peripherals that enables it to work properly. Thus, the hardware components of a computer are the physical parts that can be seen and touched. Some examples of hardware components are monitor, speaker, central processing unit, motherboard, hard-drive, joystick, mouse, keyboard, etc.

Digital storage of data refers to the process which typically involves saving computer files or documents on magnetic storage devices usually having flash memory. Some examples of digital storage devices are hard drives, memory stick or cards, optical discs, cloud storage, etc. A reliable storage such as a hard-disk drive ensures that computer files or documents are easily accessible and could be retrieved in the event of a loss.

Serial ATA (SATA) is a technological standard which is commonly used today for hard drives to interface with the motherboard in a computer system. Thus, it's simply a bus interface on computer systems that is typically used for connecting mass storage devices to host bus adapters such as motherboards.

Generally, SATA comprises of two ports and these are the power and data connector.

One way to use contiguous allocation of the disk and not suffer from holes is to compact the disk every time a file is removed. Since all files are contiguous, copying a
file squires a seek and rotational delay to read the file, followed by the transfer at full speed. Writing the file back requires the same work. Assuming a seek time of 5 msec, a rotational delay of 4 msec, a transfer rate of 8 MB/sec, and an average file size of 8 KB, how long does it take to read a file into main memory and then write it back to the disk at a new location? Using these numbers, how long would it take to compact half of a 16-GB disk?

Answers

Answer:

The answer is below

Explanation:

a) Seek time = 5 msec, transfer time = 4 msec, transfer rate = 8 MB/sec = 8000 KB/sec, average file size = 8 KB

Transfer time = 8 KB ÷ 8000 KB/sec = 1 msec

The time required to read and write is twice the sum of the seek and transfer time.

Total time = (5 msec + 4 msec) * 2 + 1 msec = 19 msec

b) half of 16 GB = 8 GB = 8000000 KB

number of read and writes = (8000000 KB of total file size/ 8 KB of average file size) * 2 = 2000000

Transfer rate = 8 MB/sec = 0.008 GB/sec

Transfer time = 8 GB ÷ 0.008 GB/sec = 1000 sec

Total time = (5 msec + 4msec) * 2000000 + 1000 sec = 19000 sec

Which security option should be used to ensure the integrity and validity of an Access database?

digital signature
database password
trust center options
start-up options

Answers

Answer:

The best security which could be used to ensure integrity and validity of Access database is:  

O. database password

Explanation:

Database password is the only option that best guarantee the integrity of an Access database due to the fact that, it limits the number of people who would be able to have access to it. This password is an administrative right given to those who are meant to access it and it is expected to be renewed every few months (probably every 3 months).

Without the password, no other person can be able to login. Also, no two individual can be able to login in same time using same credential login details assigned (that is, in scenario of using the same Username and password)

Answer:

A) digital signature

Explanation:

jdr-wivg-vmb
co.me a.nd jo.in fa.st...
go.ogle me.et​​​​​

Answers

Explanation:

what is this don't post like this

Using complete sentences post a detailed response to the following.

Many users do not like pop-ups such as alert boxes. Some people even have pop-up blockers in their browsers, which means that no boxes can pop up. As a website developer, would you include pop-up boxes? Why or why not? Should users block them in their browsers?

Answers

Answer:

No, I would not include pop-up ads in a website.

Explanation:

In my opinion, pop-up ads are very distracting and make it harder to navigate the website. If a website I'm on has too many pop-up ads I would leave. It drives people away and it annoys them.

What is the first step to understand the potential impact to the business about a Security threat?

Answers

Answer:

Identify assets and their values

Explanation:

As a security analyst, the first step to determine the potential security threat is to understand

what kind of assets needs to be protected?what is the value of such assets?

algorithm of how to calculate the area of a square.

Answers

Answer:

In order to calculate area of a square, 'A' be the area of square and the length of the square be 'a'. Then we need to calculate A= a*a. Step 2 :- Accept as input, the length of the sides of the square, and store the value in variable a. Step 3 :- Calculate the area of the square (a*a) and store in a variable A.

Explanation:

Answer:

Area = side x side. For example, the area of a square of each side of length 8 feet is 8 times 8 or 64 square feet.

What is a commerce platform?

Answers

Answer:

In basic terms, a commerce platform simply refers to technology that enables a transaction (the commerce bit). The platform part allows you to overlay that technology across various channels such as online and in-store.

Answer:

Explanation:

a commerce platform simply refers to technology that enables a transaction (the commerce bit). The platform part allows you to overlay that technology across various channels such as online and in-store.20 Feb 2017

Which of the following best describes the purpose of an IP address?

IP addresses provide a unique number for identifying devices that send and receive information on the Internet

IP addresses assist in the reconstruction of a message that has been divided into many packets

IP addresses indicate the location where an internet-connected computing device was manufactured

IP addresses indicate how many times an individual packet has been requested by a router

Answers

IP addresses provide a unique number for identifying devices that send and receive information on the Internet

The best describes the purpose of an IP address is, that IP addresses provide a unique number for identifying devices that send and receive information on the Internet. The correct option is A.

What is an IP address?

An IP address is an address of the network of computers connected to the internet. The address is a sequence of numbers that are provided by the internet servers.

The full form of the IP address is internet protocol. It is the online address that is provided by the internet provider, The address will easily recognize if the person is using the internet. This address will be connected to the computers.

Thus, the correct option is A. IP addresses provide a unique number for identifying devices that send and receive information on the Internet.

To learn more about IP addresses, refer to the link:

https://brainly.com/question/16011753

#SPJ6

Hey, Another question. I'm sure it's possible in the future, but I wanted to ask if HIE would be possible. I'm sure it would be, I just want to hear other people's comments on this. (Beatless)

Answers

Answer:

Originally Answered: Will there ever be a band as big as the Beatles? No, there will never be a band as popular as the Beatles. For one thing they were exceptionally good in a time of great music in general.

Explanation:

please mark this answer as brainliest

Other Questions
PLEASE HELP ME WITH MATHS The diameter of a bacteria species A is 1 micrometre long while bacteria B is 1 x 10^-3 the size of bacteria species A.a) What is the diameter of bacteria species B in metres? how is it possible two people can experience the same event but have two different memories of it? Which set of numbers is ordered from least to greatest? What food borne illness has a preventative vaccine BEST ANSWER GETS BRAINLIEST!The following data shows the weight, in pounds, of 6 bags:6, 4, 8, 7, 8, 9What is the value of the mean absolute deviation of the weight of the bags, and what does it represent about the weight of a bag? A) 1.8 pounds; on average, weight of a bag varies 1.8 pounds from the mean of 7 pounds B) 1.3 pounds; on average, weight of a bag varies 1.3 pounds from the mean of 7 pounds C) 1.3 pounds; the weight of 50% of the bags is greater than 1.3 pounds D) 1.8 pounds; the weight of 50% of the bags is greater than 1.8 pounds Write the following numbers in increasing order (list the smallest as #1 and the largest as #5)7, 24, 36, 4.7, 18dont put answer in file i have to download pls lol Read the excerpt from "Water Efficiency Strategies."What does the phrase "water loss control mean?O preventing pipes from rusting and growing moldWater Loss Control-National studies indicate that, onzverage, 14 percent of the water treated by water systems is lostto leaks. Some water systems have reported water lossesexceeding 80 percent Accounting for water and minimizingwater loss are critical functions for any water utility that wants tobe sustainablelimiting the number of household sinks and toiletso preventing water from being wasted due to leaksO limiting use of dishwashers and washing machinesno I need help with adding letters and numbers into the diagram mm You are dealt one card from a standard 52-card deck. Find the probability of being dealt a spade.The probability of being dealt a spade is Rocky's class recently got pet turtles. When putting together the habitat, decomposers were added to the soil, as well as some smaller organisms that turtles eat. Some students wanted to get "fake" plants for the terrarium, but Rocky insisted that this would negatively affect the carbon and oxygen cycles. Which of the following reasons support why Rocky is correct?Group of answer choicesA) Carbon won't be removed from the air.B) Photosynthesis won't occur.C) The turtles won't be able to breathe.D) All of these are correct.Will mark as brainliest if correct ASAPPPP18. The steps used to solve the equation 2x + 8 = 20 for x are shown below.2x + 8 = 20Step I: 2x = 12Step II: x = 6Which property makes Step I true?A. Division property of equalityB. Reflexive property of equalityC. Subtraction property of equalityD. Symmetric property of equality Find the Area of the figure below, composed of a rectangle and a semicircle. Theradius of the circle is shown, Round to the nearest tenths place.12 6. True or False: Your "lats" are your shoulder blades. If you wanted to find out the average temperature in Africa, what kind of map would you use? PLease help thanks...... HELP ME AGAIN PLEASE.... Several hours after departure the two ships described to the right are 50 miles apart. If the ship traveling south traveled 10 miles farther that the other how many miles did they each travel. Sally's bank account had a balance of 230 at the beginning of the month. She had two deposits of 50 and 420 and just one withdrawal of 190. Her balance at the end of the month was $______ ? Write in your own wordsWhy is it important to know there are good and bad bacteria? Can you guys help me please I want an answer