Complete the following sentences by either filling in the blank or writing out the rest of the sentence (when there is a … ):

The internet is made up of _________ networks that all connect together to make a ____________ network.

The job of a router on the internet is to…


Clients allow people to…


Servers store _____________________ and send those to _____________ over the internet.


The internet is physically connected across the world using _______________


Computers break up information, like photos and emails, into ________________



The ___________ protocol tells computers how to break up the information and orders it.


The ________________ protocol tells the packets where they are going and where they are coming from.


The packets get to their destination by…


When the packets get to their destination, the __________ protocol…



Computers get the _______________ of servers by asking the ______________



Computers use the _____________ protocol to display a webpage.

Answers

Answer 1

Answer

hundreds,  massive, connect to the internet gigabytes, people, computers,

bytes, TCP/IP, TCP, internet, TCP, answers, questions, HTTP

Explanation:


Related Questions

Which of the following expressions in Java is equal to 4?

3% 7
7 % 3
17 % 7
11 % 7
28 % 7

Answers

Answer:

3% 7

Explanation:

because 7 because seven ate nine and three was lonely so seven decided to also eat three and became a lesser number somehow because three apparently was not as big as the number 9 so maybe eating three caused him to go down to 4

The expression "11 % 7" in Java is equal to 4.

The "%" operator calculates the remainder of a division operation.

In Java, the "%" operator is used to calculate the remainder of a division operation.

So, let's evaluate each expression and see which ones equal 4:

3 % 7 = 3 (remainder of dividing 3 by 7)

7 % 3 = 1 (remainder of dividing 7 by 3)

17 % 7 = 3 (remainder of dividing 17 by 7)

11 % 7 = 4 (remainder of dividing 11 by 7)

28 % 7 = 0 (remainder of dividing 28 by 7)

Based on these evaluations, the expression "11 % 7" is equal to 4.

To learn more about programming visit:

https://brainly.com/question/14368396

#SPJ3

What is the purpose of DNS round robin technique?

Answers

Answer:

DNS round robin work by providing different IP responses from a DNS server request for the same host. When netmask ordering is enable the DNS server will attempt to return a host IP address that is on the same subnet as the querying client.

The round-robin DNS technique was created to reduce the heavy loads brought on by numerous customers connecting to a single server at once. It enables the use of various servers for various clients connected to the same domain.

What is DNS round robin technique?

When using round robin DNS, each server's IP address is distributed before moving to the back of the list; the following server's IP address is then distributed before moving to the end of the list. With regard to the amount of servers being used, this process continues.

Routing method that distributes requests among a list of IP addresses and iterates over them one by one to balance internet traffic for IP addresses.

To lessen the tremendous demands caused on by many users connecting to a single server at once, the round-robin DNS mechanism was developed.

It makes it possible for different clients connected to the same domain to use different servers.

Thus, this is the main purpose of DNS round robin technique.

For more details regarding DNS, visit:

https://brainly.com/question/17163861

#SPJ2

- Discuss the input-process-output model as it relates to program development.
- Explain the purpose of each step and how that information is used in each step.
- What would be the impact on overall program performance if one of these steps was not included?

Answers

This is called IPO cycle.IPO stands for Input Process Output.All parts are necessary .

Lets see example.

Look at the program created in python below.

[tex]\tt num=int(input("Enter\:a\: number:"))[/tex]

[tex]\tt for\:i\:in\:range(3):[/tex]

[tex]\qquad\tt print(i*x)[/tex]

Suppose you missed the input or don't give that then you won't get an output.

The Input-Output Model is a multifunctional graph that shows the inputs, outputs, and processing activities needed to convert inputs into outputs.

The Input-Output Model:

The modeling is sometimes set up to incorporate any storage that occurs during the process. The inputs reflect the external flow of data and commodities into the operation.

All actions necessary to transform the inputs are included in the processing stage. The data and materials that flow out of the process of transformation are the outputs.

A small engineering business, for example, feels there are issues with its hiring procedure.

Several of the newly hired junior engineers stayed at the business for less than a year.

This is a significant expense for the company, since hiring and training new professionals is expensive and time consuming. The human resources department chooses to assemble a team of people with a lot of expertise in hiring new engineers. One from their first jobs is to create a hiring process input-output model. They come up with the following.

Find out more information about 'Input-output model'.

https://brainly.com/question/25519126?referrer=searchResults

What is printed when the following code has been executed?
int x = 15;
int y = 4;
System.out.println((2 * x + y) % x);
15
4
34
2
19

Answers

Hey it is 15 hope this helps

Philip took pictures with his smartphone and save them into his computer unless you delete the photos from the computer they will remain strong because the a computer has a​

Answers

Answer:

Storage drive

Explanation:

1. Philip took pictures on a smartphone; given

2. Philip saved pictures from smartphone onto computer; given

Philip saved the pictures onto the computer. This means that the data was transferred from the phone's storage drive onto the computer's storage drive. Storage drives are strong/hard storage mediums. This means that the storage drive will not be deleted on each start-up, unlike weak/soft storage of random access memory (RAM).

HDD = Hard Disk Drive; strong/hard medium (non-volatile); a mechanical actuator etches data into magnetic platters.

SSD = Solid State Drive; strong/hard medium (non-volatile); NAND logic gates on electronically erasable programmable read-only memory (EEPROM) chips are controlled through a SSD controller

RAM = Random Access Memory; weak/soft medium (volatile); Double Data Rate (DDR) Synchronous Dynamic Random Access Memory modules (SDRAM) are controlled most commonly through a central processor unit (CPU) or through a dedicated memory chip (specialized tasks most commonly).

what are computer specification​

Answers

Answer:

They are basically all of your computer's information. It displays everything that has to do with the computer like model name, processor speed and etc.

They are basically all of your computer



does industry-recognized certifications (microsoft office suite) boost your resume and
increase your earning potential?

Answers

Answer:Having Microsoft Office training can make you more productive, confident, and satisfied with your job. ... Productivity is crucial to success in the administrative assisting field, and your employers will thank you for it. 3. Industry-recognized certification will boost your resume and increase your earning potential.

Explanation: i no it

Select the correct locations on the image.
In which of these images would the rule of thirds become an evaluating factor?

Answers

Answer:

apple

Explanation:

the one of the apple is right

What is a segmentation?

Answers

Answer:

Segmentation means to divide the marketplace into parts, or segments, which are definable, accessible, actionable, and profitable

Language is Python
9.9 LAB: Count input length without spaces, periods, exclamation points, or commas

Given a line of text as input, output the number of characters excluding spaces, periods, exclamation points, or commas.

Ex: If the input is:

Listen, Mr. Jones, calm down.
the output is:

21

Answers

Answer:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

Explanation:

i answered this same exact question the other day.

line by line, the first line asks for input with a prompt.

the second line replaces spaces, the next one replaces periods, the next exclamation marks, the next commas. then the last line prints the total number of characters

In this exercise we have to use the computer language knowledge in python to write the code as:

the code is in the attached image.

In a more easy way we have that the code will be:

text = input('Please enter a line of text')

text = text.replace(" ", "")

text = text.replace(".", "")

text = text.replace("!", "")

text = text.replace(",", "")

print(len(text))

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

Number 1 is what part of an application







Title Bar


Ribbon


Quick Access Toolbar


Status Bar

Answers

Answer:

The correct answer is Quick acces tool bar. You litteraly probably don't even use brainly anymore lol.

Explanation:

I absolutly confirm this is correct.

The number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.

What does the Quick Access toolbar contain 1 point?

The customizable Quick Access Toolbar contains a set of commands that are independent of the currently displayed tab on the ribbon. You can move the Quick Access Toolbar from one of the two possible locations, and you can add buttons that represent commands to the Quick Access Toolbar.

According to the context of this question, the quick access toolbar is located in the title bar of the application window but can be configured to display below the ribbon usually consisting of the number 1 part of an application.

Therefore, number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.

To earn more about Quick access toolbar, refer to the link:

https://brainly.com/question/13523749

#SPJ6

ive atleast 10 examples of FAKE anti-virus and anti- spyware software

Answers

Answer:

Explanation:

protegent

spysheriff

doctor antivirus

winwebsec

spybouncer

thespybot

malwarealarm

macsweeper

spywarestop

spylocked

Describe psychographic differences among the past five generations of Americans that you learned about in this course. What type of game would you create for each generation based on that generation’s psychographic characteristics? Give reasons for your choices. You may do some online research to find existing games (if any) that may appeal to each generation of players.

Answers

Answer:

sorry I don't know about this question

For what purpose does a programmer use flowcharts and pseudocode?

A- to execute code
B- to translate code into assembly language
C- to communicate the steps needed to write a program
D- to communicate methods to test code

Answers

When there’s a quizlet theirs a way. So the answer is C. Pls give brainliest.

please answer this now I need please.


write a statement to do the following.
a)to give yellow colour to the for writing text on the graphics window
b)To give green as background colour to the graphics window
c)to give pink colour to the brush which is used to fill the shapes in the graphics window​

Answers

Answer:

You can change the color of text in your Word document. Select the text that you want to change. On the Home tab, in the Font group, choose the arrow next to Font Color, and then select a color.

You can display a graphics window and draw colorful shapes in it if you use the Show operation of the GraphicsWindow object. You can also specify properties of the graphics window, such as its title, height, width, and background color.

Explanation: Sorry I couldn't do the third question but hope it helps.

Answer:

hii , you are an army?

reply in the comment

What protocol is used to discover the hardware address of a node with a certain IP address?

Answers

Answer: ARP hope this helps

a. Get a value for x from the user.

b. Test to determine if x is positive. If not, tell the user that he or she has made a mistake.

c. Take the cube root of x.

d. Do Steps 1.1, 1.2, and 1.3 x times

Answers

Program (Python):-

[tex]\tt x=int(input("Enter\:your\:number:"))[/tex]

[tex]\tt if \:x<0:[/tex]

[tex]\tt \qquad print("You\:have\:made\: mistake")[/tex]

[tex]\tt else:[/tex]

[tex]\qquad\tt print("Well\:done")[/tex]

[tex]\tt cuberoot=x**1/3[/tex]

[tex]\tt print("Cube\:root=",cuberoot)[/tex]

[tex]\tt for\:i\:in\:range(x):[/tex]

[tex]\qquad\tt print(x)[/tex]

Sample output

Enter your number:-8

You have made mistake

Cuberoot=-2

-8

-8

-8

-8

-8

-8

-8

-8

How have computers affected education?​

Answers

Explanation:

Computers have supplied infinite resources for learning and made education more flexible and easy to access. Students can now gain knowledge and information not only from classroom assignments and libraries but also from available online resources.

Computers provide teachers and students the means to communicate quickly via email. Online grading systems also make it easier to view and audit a student's progress. In addition, computers open doors to social media, providing students and teachers tools to interact, collaborate and communicate.

A reference is _____.

Answers

Answer:

a written or spoken comment that mentions somebody/something

the action of mentioning or alluding to something.

What happens to the Menu Bar when the
object (image, shape, etc.) is "active"?

Answers

Answer: Ok so Sorry about this but I will answer thing at 10:20 tommorow I promise

Explanation:

When you use a library in your code, how do you give attribution?

Answers

When you use a library in your code, you give attribution: by writing the source, title, author and license in your code.

Attribution can be defined as a process which typically involves the citation (reference) of an original source of information such as a library, quote, paraphrase or summary, especially by using the author's full name, source, and job title (position) as the case may be.

In software development, you give attribution when you use a library in your code by writing the following:

The source in your code.The title in your code.The author in your code.The license in your code.

Read more: https://brainly.com/question/21172316

Write a program that can add, Subtract, multiply and divide entered numbers.

Answers

In Python:

def add(x, y):

   return x + y

def subtract(x, y):

   return x - y

def multiply(x, y):

   return x * y

def divide(x, y):

  return x / y

what is keyboard buffer tell me the answer nicely and I will give brainlitst​

Answers

Answer:

A keyboard buffer is a very small partition of memory that is usually stored in the computer memory in random access memory (RAM) and captures all the keystrokes made on a keyboard.

Explanation:

What are the data type(s) will be used to declare the variable(s) needed to
create the algorithm?*

1.. integer only
2.. real only
3..integer and real
4..real and string

Answers

The three primitive data types used in this course are int (integer numbers), double (decimal numbers), and boolean (true or false). Each variable has associated memory that is used to hold its value.

What is another name for a switch A.Number system B.Variable C.Logic Gate D.Boolean

Answers

Answer:

logic gate

Explanation:

took the test lol

Which telemetry is used for monitoring astronauts in space​

Answers

Answer:

I believe it is medical telemetry

It’s Astroskin for there health the use the to help them in space

Types of cloud storag?

Answers

Answer:

There r 3 types of data storage: object storage, file storage, and block storage. Each offers their own advantages and have their own use cases: Object Storage - Applications developed in the cloud often take advantage of object storage's vast scalablity and metadata characteristics.

In which of these images would lines become an evaluating factor?

Answers

Answer: The fish?

Explanation:

Answer:

birds in flight  and railroad tracks

Explanation:

i got it right

IT professionals ensure servers connected to the network operate properly. (2 points) True False

Answers

Answer:

True

Explanation:

Thats one of their most important jobs

Which type of game is least likely to need a structured narrative?


a first-person shooter, ,

an adventure game ,

a role-playing game ,

a sports game







Question 4

Answers

Answer:

an adventure game

Explanation:

It is this because people explore more than rather have certain dialouge or storylines like perspective games. so in that case i hope this answer helps!!!

Other Questions
A chess player played 44 chess games total. If he won 16 games, what is the ratio of the games. He lost to games he won can someone help..its music When Great Britain and France went to war in 1793, whose side did Washington take Can someone help me plz!! Please help its due today and i have practically everything else filled out Can someone please show me their working on these on how to work out? You and a group of friends went out to eat at Red Lobster. Your bill came to $89.75. You gave the waitress a 28% tip. What is the total bill including the tip? Which of the following is an appropriate time to use anti-septic handle Constitutional Democracy: Federalism: Question 6Which of the following Supreme Court cases established the supremacyof federal law over state law in the event of a conflict between the two?aSelect one:Brown v. Board of EducationO Marbury v. MadisonO Mapp v. OhioOGibbons v. Ogden Wickedly Wonderful is a small summer (25) ______ in the UK for children aged 6 to 13 years old. The children (26) ______ a week outdoors at the camp, making new friends and learning new activities (27) ______ having a lot of fun. (328) ______ the summer camp, they sail, horse ride, kayak, enjoy games on the beach and the beach (29)______, swim, surf, go crabbing and ride bikes. Children will enjoy holidays with Wickedly Wonderful, and those are holidays that they will remember forever!25. A. term B. course C. camp D. holiday26. A. take B. spend C. use D. pass27. A. which B. what C. where D. while28. A. At B. In C. On D. During29. A. firing camp B. campfire C. fire camp D. firing campRead the passage and choose the best answer among A, B, C or D to each question below.THIS IS MY HOUSE!Hello! My name is Peter and this is my house.My house is quite big. It has got two floors a ground floor and a first floor. It has also got an attic and a basement. On the ground floor, there is a kitchen, a living room, a big dining room and a bathroom. On the first floor, there are three bedrooms, one bathroom and a big corridor. My bedroom is between my parents bedroom and the bathroom. My sisters bedroom is in front of mine.I love my bedroom, but I also like the attic. In the attic I keep some of my books and my old toys. I like to spend my time there because it is very spacious and there is a big sofa there where I sometimes take a nap.At the back of the house, there is a garage where my parents park the family car, and a lovely garden with many green spaces, flowers, two swings and a small swimming pool.I love my house! Its very comfortable and cozy.30. How is Peters house?A. Its quite small. B. Its quite big. C. Its old. D. Its new.31. How many rooms are there on the ground floor?A. There are 2 rooms. B. There are 3 rooms.C. There are 4 rooms. D. There are 5 rooms.32. Where is Peters bedroom?A. Between his parents bedroom and the bathroom.B. Between his sisters bedroom and the bathroom.C. Between his parents bedroom and his sisters bedroom.D. Between his parents bedroom and the attic.33. Why does Peter like to be in the attic?A. Because it is very spacious.B. Because there is a big sofa there.C. Because he keeps some of his books and old toys.D. Because it is very spacious and he can sometimes takes a nap.34. Where is the garage?A. In front of the house.B. In front of the garden.C. At the back of the house.D. At the back of the garden.IV. WRITINGRearrange the words to make correct sentences.35. going/ on/ They/ to/ the / supermarket/ Sunday/ are.___________________________________________________________________________36. me/ please/ can/ pen/ your/ lend/ you/ ?___________________________________________________________________________37. usually/ homework/ I/ after/ do/ school._____________________________________________________________________________Complete the second sentence so that it means the same as the first.38. Nam is hard-working.Nam isnt __________________________________________________________________39. She has long curly hair.Her _______________________________________________________________________40. The living room has two chairs and a sofa.There _____________________________________________________________________ What is a name of a isotope of carbon how do scientist test thier hypothesis who composed the music for the films gone with the wind, casablanca, and the original king kong? how did some american leaders view latin american colonies and their struggles for independence USE THE CLUES TO CRACK THE CODEThe digits of the code are 4,4, 0, and 2.The number is less than 1. The value of the thousandths digit isvalue of the hundredths digit.the10 A measurement has high when it is very close to thetrue value? An Investment of $10,000 yields 8% interest compounded quarterly.What will be the accumulated capital after 6 months?What will be the accumulated capital after 5 years? which idea of Jean-Jacques Rousseau was different from those of thomas hobbes?A. Rousseau believed that education needed changes.B. Rousseau believed that the government should be strong.C. Rousseau believed that humans are naturally good.D. Rousseau believed people should give up freedom. Subtract 2y - 3 from 8y-2. =Find the slope of the graph of 4x + 2y = 10 byrewriting the equation in slope-intercept form.