Barcode scanners, printers, routers, and smartphones are examples of:
a. the graphical user interface.
b. an extranet.
c. system software.
d. hardware.

Answers

Answer 1

Barcode scanners, printers, routers, and smartphones are all examples of hardware. In general, hardware refers to the physical components of a computer system or electronic device. It includes everything from the central processing unit (CPU) and memory to input and output devices, such as keyboards, mice, monitors, and printers.Barcode scanners are used to read and interpret the information contained in a barcode.

They consist of a light source, a lens, and a sensor that detects the reflected light. Printers are devices that produce hard copies of documents or images. They can be connected to a computer or network, or they can be standalone devices that receive input from a USB drive or memory card. Routers are networking devices that forward data packets between different computer networks. They are typically used to connect local area networks (LANs) to the internet. Smartphones are handheld devices that combine the functions of a mobile phone with those of a personal computer. They typically feature a touchscreen interface, wireless connectivity, and a range of applications and services.System software, on the other hand, refers to the programs that run on a computer or electronic device. This includes operating systems like Windows and macOS, as well as utilities, drivers, and other tools that help manage the hardware and software resources of a system. The graphical user interface (GUI) is a type of user interface that allows users to interact with a computer or electronic device using visual elements such as icons, windows, and menus. An extranet is a private network that uses internet protocols and standards to enable communication between different organizations or groups, such as suppliers, customers, or partners.In conclusion, barcode scanners, printers, routers, and smartphones are examples of hardware.

To know more abotu computer visit:

https://brainly.com/question/32297640

#SPJ11


Related Questions

Effective nonverbal communication can cause tension.

True or False

Answers

Explanation:

When your nonverbal signals match up with the words you're saying, they increase trust, clarity, and rapport. When they don't, they can generate tension, mistrust, and confusion.

Answer:

False

Explanation:

The protocol used to communicate network errors is known as __________.

Answers

Answer:

It is know as the ICMP, which means Internet Control Message Protocol, and is used to communicate errors back to the client

Explanation:

Marking Brainliest if correct!
One purpose of a network is...
A. Sharing software
B. Compiling program
C. Changing software
D. Starting up the computer

Answers

B. Compiling Program

Answer:

compiling program os correct Mark me brainlist

lindsay plans to give her audience a handout with images of her powerpoint slides. lindsay should distribute this handout after her presentation to maintain audience control. True or False

Answers

False. Lindsay should distribute the handout before or during her presentation to enhance audience engagement and comprehension.

The statement is false. Lindsay should distribute the handout before or during her presentation, rather than after, to maximize audience engagement and comprehension. Providing handouts beforehand allows the audience to follow along with the content and take notes, which can enhance their understanding and retention of the material. By having the slides in front of them, the audience can reference the information easily and stay focused on the presentation.

Distributing handouts after the presentation can lead to potential distractions and may hinder audience control. If the handouts contain detailed information, the audience might be tempted to read through the material instead of paying attention to Lindsay's delivery. Additionally, distributing handouts at the end may limit the opportunity for the audience to ask questions or seek clarification during the presentation.

Finally, giving handouts before or during the presentation is more effective for maintaining audience control and maximizing engagement. It allows the audience to actively participate, take notes, and refer to the slides as Lindsay presents, promoting a better understanding of the content.

Learn more about presentation  here:

https://brainly.com/question/28233657

#SPJ11

URGENT! REALLY URGENT! I NEED HELP CREATING A JAVASCRIPT GRAPHICS CODE THAT FULFILLS ALL THESE REQUIREMENTS!

URGENT! REALLY URGENT! I NEED HELP CREATING A JAVASCRIPT GRAPHICS CODE THAT FULFILLS ALL THESE REQUIREMENTS!

Answers

In the program for the game, we have a garden scene represented by a green background and a black rectangular border. The cartoon character is a yellow circle with two black eyes, a smiling face, and arcs for the body. The character is drawn in the center of the screen.

How to explain the information

The game uses Pygame library to handle the graphics and game loop. The garden is drawn using the draw_garden function, and the cartoon character is drawn using the draw_cartoon_character function.

The game loop continuously updates the scene by redrawing the garden and the cartoon character. It also handles user input events and ensures a smooth frame rate. The game exits when the user closes the window.

This example includes appropriate use of variables, a function definition (draw_garden and draw_cartoon_character), and a loop (the main game loop). Additionally, it meets the requirement of using the entire width and height of the canvas, uses a background based on the screen size, and includes shapes (circles, rectangles, arcs) that are used appropriately in the context of the game.

Learn more about program on

https://brainly.com/question/23275071

#SPJ1

Which type of cell references are automatically updated when copied?.

Answers

Answer:

By default, all cells are Relative Cell References within a formula and will update when copied or use of Autofill.

Explanation:

By default, all cells are Relative Cell References within a formula and will update when copied or use of Autofill.

Elias is writing poems and is formatting several to fit on a page that has been divided into columns. Which column break would allow him to end one poem and start the next poem on the same page?

Question 6 options:
next page
sequential
text wrap
continuous

Answers

Answer:

Explanation:

Column break continous

a variable of the c har data type can hold up to 256 characters at a time. question 80 options: true false

Answers

A variable of the 'CHAR' data type can hold up to 256 characters at a time. Thus, it is a true statment.

CHAR is short for the character; CHAR is a data type that can store character data in a fixed-length field. Data stored in CHAR can be a string of single-byte or multibyte numbers, letters, and other characters that are supported by the code set of a particular database locale. The maximum number of characters that can be stored by the CHAR data type is 256.

Thus, the CHAR data type can hold data, such as letters, numbers, and symbols, up to 255 characters at a time.

You can leran more about Data Types at

https://brainly.com/question/844140

#SPJ4

Which is NOT a valid sparkline type?

Answers

Explanation:::
Where are the types we are supposed to be choosing from?

An encryption system works by shifting the binary value for a letter one place to the left. "A" then becomes: 1 1 0 0 0 0 1 0 This binary value is then converted to hexadecimal; the hexadecimal value for "A" will be:

Answers

Answer:

The hexadecimal equivalent of the encrypted A is C2

Explanation:

Given

Encrypted binary digit of A = 11000010

Required

Hexadecimal equivalent of the encrypted binary digit.

We start by grouping 11000010 in 4 bits

This is as follows;

1100 0010

The we write down the hexadecimal equivalent of each groupings

1100 is equivalent to 12 in hexadecimal

So, 1100 = 12 = C

0010 is represented by 2 in hexadecimal

So, 0010 = 2

Writing this result together; this gives

1100 0010 = C2

Going through the conversion process;

A is first converted to binary digits by shifting a point to the left

A => 11000010

11000010 is then converted to hexadecimal

11000010 = C2

Conclusively, the hexadecimal equivalent of the encrypted A is C2

python

how do I fix this error I am getting

code:

from tkinter import *
expression = ""

def press(num):
global expression
expression = expression + str(num)
equation.set(expression)

def equalpress():
try:
global expression
total = str(eval(expression))
equation.set(total)
expression = ""

except:
equation.set(" error ")
expression = ""

def clear():
global expression
expression = ""
equation.set("")


equation.set("")

if __name__ == "__main__":
gui = Tk()



gui.geometry("270x150")

equation = StringVar()

expression_field = Entry(gui, textvariable=equation)

expression_field.grid(columnspan=4, ipadx=70)


buttonl = Button(gui, text=' 1', fg='black', bg='white',command=lambda: press(1), height=l, width=7)
buttonl.grid(row=2, column=0)

button2 = Button(gui, text=' 2', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button2.grid(row=2, column=1)

button3 = Button(gui, text=' 3', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button3.grid(row=2, column=2)

button4 = Button(gui, text=' 4', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button4.grid(row=3, column=0)
button5 = Button(gui, text=' 5', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button5.grid(row=3, column=1)
button6 = Button(gui, text=' 6', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button6.grid(row=3, column=2)
button7 = Button(gui, text=' 7', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button7.grid(row=4, column=0)
button8 = Button(gui, text=' 8', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button8.grid(row=4, column=1)
button9 = Button(gui, text=' 9', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button9.grid(row=4, column=2)
button0 = Button(gui, text=' 0', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
button0.grid(row=5, column=0)


Add = Button(gui, text=' +', fg='black', bg='white',command=lambda: press("+"), height=l, width=7)
Add.grid(row=2, column=3)

Sub = Button(gui, text=' -', fg='black', bg='white',command=lambda: press(2), height=l, width=7)
Sub.grid(row=3, column=3)

Div = Button(gui, text=' /', fg='black', bg='white',command=lambda: press("/"), height=l, width=7)
Div.grid(row=5, column=3)

Mul = Button(gui, text=' *', fg='black', bg='white',command=lambda: press("*"), height=l, width=7)
Mul.grid(row=4, column=3)

Equal = Button(gui, text=' =', fg='black', bg='white',command=equalpress, height=l, width=7)
Equal.grid(row=5, column=2)

Clear = Button(gui, text=' Clear', fg='black', bg='white',command=clear, height=l, width=7)
Clear.grid(row=5, column=1)

Decimal = Button(gui, text=' .', fg='black', bg='white',command=lambda: press("."), height=l, width=7)
buttonl.grid(row=6, column=0)

gui.mainloop()

Answers

Answer:

from tkinter import *

expression = ""

def press(num):

global expression

expression = expression + str(num)

equation.set(expression)

def equalpress():

try:

 global expression

 total = str(eval(expression))

 equation.set(total)

 expression = ""

except:

 equation.set(" error ")

 expression = ""

def clear():

global expression

expression = ""

equation.set("")

if __name__ == "__main__":

gui = Tk()

 

equation = StringVar(gui, "")

equation.set("")

gui.geometry("270x150")

expression_field = Entry(gui, textvariable=equation)

expression_field.grid(columnspan=4, ipadx=70)

buttonl = Button(gui, text=' 1', fg='black', bg='white',command=lambda: press(1), height=1, width=7)

buttonl.grid(row=2, column=0)

button2 = Button(gui, text=' 2', fg='black', bg='white',command=lambda: press(2), height=1, width=7)

button2.grid(row=2, column=1)

button3 = Button(gui, text=' 3', fg='black', bg='white',command=lambda: press(3), height=1, width=7)

button3.grid(row=2, column=2)

button4 = Button(gui, text=' 4', fg='black', bg='white',command=lambda: press(4), height=1, width=7)

button4.grid(row=3, column=0)

button5 = Button(gui, text=' 5', fg='black', bg='white',command=lambda: press(5), height=1, width=7)

button5.grid(row=3, column=1)

button6 = Button(gui, text=' 6', fg='black', bg='white',command=lambda: press(6), height=1, width=7)

button6.grid(row=3, column=2)

button7 = Button(gui, text=' 7', fg='black', bg='white',command=lambda: press(7), height=1, width=7)

button7.grid(row=4, column=0)

button8 = Button(gui, text=' 8', fg='black', bg='white',command=lambda: press(8), height=1, width=7)

button8.grid(row=4, column=1)

button9 = Button(gui, text=' 9', fg='black', bg='white',command=lambda: press(9), height=1, width=7)

button9.grid(row=4, column=2)

button0 = Button(gui, text=' 0', fg='black', bg='white',command=lambda: press(2), height=1, width=7)

button0.grid(row=5, column=0)

Add = Button(gui, text=' +', fg='black', bg='white',command=lambda: press("+"), height=1, width=7)

Add.grid(row=2, column=3)

Sub = Button(gui, text=' -', fg='black', bg='white',command=lambda: press("-"), height=1, width=7)

Sub.grid(row=3, column=3)

Div = Button(gui, text=' /', fg='black', bg='white',command=lambda: press("/"), height=1, width=7)

Div.grid(row=5, column=3)

Mul = Button(gui, text=' *', fg='black', bg='white',command=lambda: press("*"), height=1, width=7)

Mul.grid(row=4, column=3)

Equal = Button(gui, text=' =', fg='black', bg='white',command=equalpress, height=1, width=7)

Equal.grid(row=5, column=2)

Clear = Button(gui, text=' Clear', fg='black', bg='white',command=clear, height=1, width=7)

Clear.grid(row=5, column=1)

Decimal = Button(gui, text=' .', fg='black', bg='white',command=lambda: press("."), height=1, width=7)

Decimal.grid(row=6, column=0)

gui.mainloop()

Explanation:

I fixed several other typos. Your calculator works like a charm!

pythonhow do I fix this error I am gettingcode:from tkinter import *expression = "" def press(num): global

Numerical weather prediction models use equations based on the laws of physics to calculate variables at:a. Airport locations.b.Surface weather station locations.c. Grid points.d.Random points.e. Upper-air measurement locations

Answers

Numerical weather prediction models use equations based on the laws of physics to calculate variables at grid points, which are usually evenly spaced points covering the entire model domain. Hence, option C is correct.

These grid points can include airport locations, surface weather station locations, upper-air measurement locations, and other points of interest. The models calculate variables such as temperature, pressure, humidity, wind speed and direction, and precipitation at each grid point using the equations that govern the behavior of the atmosphere. The accuracy of the model output depends on the resolution of the grid and the complexity of the equations used to simulate atmospheric processes.

To learn more about weather prediction models, click here:

https://brainly.com/question/30504402

#SPJ11

When creating a budget you musk track both your budgeted expenses and your blank expenses

Answers

Answer:

actual

Explanation:

A budgeted cost refers to expenses for transactions and operations that the company and the management have to make in the future based on forecasts and future goals.

Actual costs refer to costs incurred on actual operations and transactions during the period recently ended.

When creating a budget you must track both your budgeted expenses and your actual expenses.

how do I fix when it hits the second session it skips scanf.
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
main() {
double first, second;
while(1){
printf(" Calculator\n");
printf("\n 7 8 9 / \n 4 5 6 x \n 1 2 3 - \nEnter operator: ");
char op;
scanf("%c" ,&op); //entering operators such as + - \ *
printf("Enter two operands:");
scanf("%lf %lf", &first, &second); //entering operands such as 1 2 5 8 12 414
switch (op) { // printing the math
case '+'://if its +
printf("%.1lf + %.1lf = %lf\n\n", first, second, first + second);
break;
case '-'://if its -
printf("%.1lf - %.1lf = %lf\n\n", first, second, first - second);
break;
case '*'://if its *
printf("%.1lf * %.1lf = %lf\n\n", first, second, first * second);
break;
case '/'://if its :
printf("%.1lf / %.1lf = %lf\n\n", first, second, first / second);
break;
default://if its not + - / *
printf("error!");
}
}
}

Answers

Answer:

scanf(" %c" ,&op); //entering operators such as + - \ *

Explanation:

put space before %c

Which is an example of artificial intelligence in computers? A. multimedia software B. encryption software C. voice recognition software D. security software

Answers

Answer:

its option b encryption software

Explanation:

Artificial intelligence (AI) is intelligence demonstrated by machines, unlike the natural intelligence displayed by humans and animals, which involves consciousness and emotionality. The distinction between the former and the latter categories is often revealed by the acronym chosen. 'Strong' AI is usually labelled as AGI (Artificial General Intelligence) while attempts to emulate 'natural' intelligence have been called ABI (Artificial Biological Intelligence). Leading AI textbooks define the field as the study of "intelligent agents": any device that perceives its environment and takes actions that maximize its chance of successfully achieving its goals.[3] Colloquially, the term "artificial intelligence" is often used to describe machines (or computers) that mimic "cognitive" functions that humans associate with the human mind, such as "learning" and "problem solving".

How many passes will it take to find the five in this list? 1, 5, 10, 15, 20, 22, 30 edgenutiy 2020​

Answers

Answer:

1

Explanation:

Answer:

The answer is 2

Explanation:

edge 2020

talis shoots a photo with his 20 megapixel digital camera. how is the image stored as digital data? group of answer choices as a collection of lines in the primary colors format of rby as a combination of letters, numbers, and symbols as a list of the binary color numbers for all the pixels it contains

Answers

Since Talis shoots a photo with his 20 megapixel digital camera, the way that the image is stored as digital data is option  D)As a list of the binary color numbers for all the pixels it contains.

Pixels come in what shades?

Information that is electronically represented in a language or format that computers can read and interpret is known as digital data. Digital data is information that has been translated from a binary format into a machine-readable digital format, to use more technical terminology.

Therefore, Each pixel on a display actually comprises of the three colors red, green, and blue. These three colors combine to produce a color on the screen. The RGB value of the pixel is a common term for these. Consider, for illustration, that a pixel can have 256 possible values for red, green, and blue, ranging from 0 to 255.

Learn more about digital camera from

https://brainly.com/question/22789334
#SPJ1

See full question below

Talis shoots a photo with his 20 megapixel digital camera. How is the image stored as digital data?

A)As a collection of lines

B)In the primary colors format of RBY

C)As a combination of letters, numbers, and symbols

D)As a list of the binary color numbers for all the pixels it contains

Match each action to the steps used to complete it.

adding slides

reordering slides

removing slides

Use Reuse and New Slide options or press

Ctrl+M.

Click and drag in Normal or Slide Sorter

view.

Select slides and press Delete.

Answers

The following are the steps used to complete each action: Adding slides: Use Reuse and New Slide options or press Ctrl+M. Reordering slides: Click and drag in Normal or Slide Sorter view. Removing slides: Select slides and press Delete.

Adding slides: To add a new slide to a presentation, you can use the "New Slide" option under the "Home" tab, or press the shortcut key Ctrl+M. Reordering slides: To change the order of slides in a presentation, you can click and drag the slides to the desired position in either Normal or Slide Sorter view. Removing slides: To remove a slide from a presentation, you can select the slide to be removed and press the Delete key, or use the "Delete Slide" option under the "Home" tab.

To add slides, you can use the Reuse and New Slide options available in the presentation software, or simply press Ctrl+M as a shortcut to insert a new slide.
2. To reorder slides, switch to either Normal or Slide Sorter view, then click and drag the slides to rearrange them in the desired order.
3. To remove slides, select the slides you want to delete and then press the Delete key on your keyboard to remove them from your presentation.

To know more about Adding slides visit:

https://brainly.com/question/30271401

#SPJ11

A. Formulate a related decision problem for the independent-set problem, and prove that it is NP-complete. (Hint: Reduce from the clique problem. )

b. Suppose that you are given a "black-box" subroutine to solve the decision prob- lem you defined in part (a).

Give an algorithm to find an independent set of max- imum size. The running time of your algorithm should be polynomial in jV j and jEj, counting queries to the black box as a single step

Answers

If a problem is in NP, then we can verify (ask whether the solution provided is accurate or not) the certificate in polynomial time given a "certificate,”.  Which is a solution to the issue and an instance of the issue (in this case, a graph G and a positive integer k).

What proof that it is NP-complete?

An NP-Complete issue can be solved in polynomial time by a non-deterministic Turing machine. If and only if there is an NP-Complete issue, such as Y, that can be reduced into a NP-Hard concern, X, in polynomial time, can NP-Complete concerns be solved.

Therefore, If a concern is included in both NP and NP-Hard Problems, it is said to be NP-Complete.

Learn more about NP complete here:

https://brainly.com/question/15097934

#SPJ1

Ms. Osteen gives her class an assignment to insert background color that gradually changes from blue to green. To accomplish this design
effect the students must add a:
O A. swatch.
OB. fill.
C. gradient.
D. pattern.
Need help

Ms. Osteen gives her class an assignment to insert background color that gradually changes from blue

Answers

Answer:

C

Explanation:

Consider sending a stream of packets from host a to host b using ipsec. typically, a new sa will be established for each packet sent in the stream. true or false

Answers

Consider sending a stream of packets from Host A to Host B using Ipsec. Typically, a new SA will be established for each packet sent in the stream. True or False? Tweet Answer FALSE. REASON: Ipsec SA is first connect with Host A and Host B. So, all packets in the stream use the new SA.

Pixar is a company that creates a huge amount of images, audio recordings, and videos, and they need to decide what compression algorithms to use on all those files. When would Pixar most likely use lossless compression

Answers

feels like im getting outta touch, maybe im juust staying inside too much, lately its getting harder to pretend i can do this alone without my friends

Complete each sentence using the drop-down menu. Information on local driving laws can be found on a website. A class textbook can be found on a website. An article about how to donate blood can be found on a website. An popular magazine can be bought off of a website.

Answers

Answers:

1. D

2. A

3. B

4. C

Explanation: I just did it and got a 100%

The correct option are D, A, B and C.

What is Drop Down Menu?

A drop-down menu is a list of choices that can only be seen if a user interacts with it, either by clicking on it or by moving their mouse over it. The menu options then vertically descend and vanish after the user leaves the menu.

Dropdown menus are frequently used on websites and web applications to hide information.

It is  that consumers might not need to view after the initial page load but still might want to utilize since they let you add additional content and connections to a page without making it look cluttered.

Therefore, The correct option are D, A, B and C.

To learn more about Dropdown, refer to the link:

https://brainly.com/question/27625347

#SPJ3

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

Where does Reiner take eren after they have a fight?

Answers

Answer:

So Reiner And Bertoldt wanted to take Eren and Ymir to Marley, a nation on the other side of the ocean so they can be devoured and there power can be given to a warrior canidate.

Answer:

what season tho?

Explanation:

Reiner took eren to the Forest

For a new version of processor, suppose the capacitive load remains, how much more energy will the processor consume if we increase voltage by 20% and increase clock rate by 20%?

Answers

Answer:

The answer is below

Explanation:

The amount of power dissipated by a processor is given by the formula:

P = fCV²

Where f = clock rate, C = capacitance and V = Voltage

For the old version of processor with a clock rate of f, capacitance C and voltage of V, the power dissipated is:

P(old) = fCV²

For the new version of processor with a clock rate of 20% increase = (100% + 20%)f = 1.2f, capacitance is the same = C and voltage of 20% increase = 1.2V, the power dissipated is:

P(new) = 1.2f × C × (1.2V)² = 1.2f × C × 1.44V² =1.728fCV² = 1.728 × Power dissipated by old processor

Hence, the new processor is 1.728 times (72.8% more) the power of the old processor

Which type of computer serves as the heart of the computing systems for many, perhaps most, major corporations and government agencies

Answers

Answer:

Mainframes

Explanation:

Mainframes are utilized by many major corporations and government agencies. They are also used in banking, accounting, and healthcare to name a few.

which of the following is an open standard used for authentication on cisco routers?

Answers

The open standard used for authentication on Cisco routers is called Remote Authentication Dial-In User Service (RADIUS). This protocol provides centralized authentication and authorization services for network devices, including routers, switches, and firewalls.

Explanation:

RADIUS is an open standard protocol used for authentication, authorization, and accounting (AAA) services in computer networks. It provides centralized authentication and authorization services for network devices, allowing network administrators to manage user access to network resources. RADIUS is commonly used in enterprise environments to authenticate remote users who connect to the network through VPN or dial-up connections.

In Cisco routers, RADIUS is used as a security feature to control access to the router's management interface. When RADIUS is enabled on a router, users must provide a valid username and password to access the router's configuration and management functions. RADIUS also provides an additional layer of security by allowing administrators to define access policies that restrict users to specific commands or resources on the router.

Overall, RADIUS is an important open standard protocol used for authentication on Cisco routers and other network devices. It provides centralized authentication and authorization services that help network administrators manage user access to network resources in a secure and efficient manner.

To learn more about  authentication click here, brainly.com/question/30699179

#SPJ11

which type of network treats all processors equally and allows peripheral devices to be shared without going to a separate server? lan wireless windows domain network peer-to-peer man

Answers

The type of network that treats all processors equally and allows peripheral devices to be shared without going to a separate server is known as Peer-to-Peer man. Thus, the correct option for this question is D.

What is a Network?

A network may be defined as a collection of computers that significantly share resources that are located on or provided by network nodes. It basically consists of two or more computers that are linked in order to share resources, exchange files, or allow electronic communications.

According to the context of this question, a peer-to-peer network tends all kinds of processors equally and is considerably utilized primarily in small networks with 10 or fewer users.

The numerous computers on the network can transmit or exchange data by direct access and can share peripheral devices without going through a separate server.

Therefore, a peer-to-peer network is a type of network that treats all processors equally and allows peripheral devices to be shared without going to a separate server. Thus, the correct option for this question is D.

To learn more about Peer-to-peer networks, refer to the link:

https://brainly.com/question/10571780

#SPJ1

Help HELP HELP HELP HELPE JE

Answers

Answer:

What do you need help with?

Other Questions
The seventh grade class is putting on a variety show to raise money. It cost $500 to rent the banquet hall that they are going to use. If they charge $15 for each ticket, how many tickets do they need to sell in order to raise at least $1000? 60 marks out of 75 full marksexpress in percent Identify the electron transport chain complex that does not pump protons across the inner mitochondrial membrane. oComplex I oComplex II oComplex IIIoComplex IV The Four Modernizations helped China prosper by focusing on what areas? Choose four answers.revolutionindustrydefensecollectivizationagriculturedemocracyscience ruth gehrig has received contract offers from three professional aquatic badminton teams. the details are below. which contract is most valuable? The angle measure in degrees that corresponds to of a circle is . Its corresponding measurement in radians is /. please answer meee...... Explain each method of disenfranchisement:Poll TaxLiteracy TestWhite PrimaryGrandfather Clause The International Air Transport Association surveys business travelers to develop quality ratings for transatiantic gateway airports. The maximum possible ratin is 10. Suppose a simple random sample of 50 business travelers is selected and each traveler is asked to provide a rating for the Miami international Airport. The ratings obtained from the sample of 50 business travelers follow. Develop a 95% confidence unerval estrmate or the population mean rating for Miami, Round your answers to two decimal places. How old are Llama's? What was the main point of paragraph 3 For the functions f(x) = 2x-5 and g(x) = 3x-x, find (fog)(x) and (gof)(x). 5/6 divided by - 1/3 Whats the fraction? Because the current surge in starting multiple motors is too great for the system, there must be a delay between the starting of each motor. PLS HELP!!! NEED IT BY THURSDAY!!!!1. If the measure of angle D= 162 and angle C= 122 Angle A = B=2. If the measure of angle D = 171 and angle C = 128 Angle A= B=3. If the measure of angle A = 22 and angle B = 35 Angle C= D=4. If the measure of angle A = 20 and angle B = 29 Angle C= D=P.S - I need two answers for the angles on each question pls. A tank with 1 m1.2 m base and a height of 3.6 m is open at one end. It is placed below the water surface with its open end down. If the closed end of the tank is 3 m below the water surface, what is the depth of water inside the tank? Explain why S is not a basis for R2 S = {(2,8), (1, 0), (0, 1)) A. Sis linearly dependentB. S does not span RC. Osis linearly dependent and does not span R. Use the given D to find the range of each function:a) g(x)=3x+1, D={2, 1, 4}b)f(x)=2x+6, D={5, 1, 4}c)g(x)=5x3, D={ 3, 2, 1}d)f(x)=x4, D={2, 1, 3} What are the 7 types of muscle endurance? Suppose a school borrows R300 000,00 to purchase a new bus. They repay the loan with payments of R10 180,59 at the end of each month. The interest rate is 13,5% per year, compounded monthly. The repay