Which technology or technique standardized the process of publicly sharing and accessing information over the internet?

A.
TCP/IP
B.
HTTP
C.
dial-up connections
D.
coaxial cables
E.
internet forum

Answers

Answer 1

Answer:

B. HTTP

Explanation:

The standard framework for the transmission of informations on the internet, it is known as the internet protocol suite or Transmission Control Protocol and Internet Protocol (TCP/IP) model. One of the very basic rule of the TCP/IP protocol for the transmission of information is that, informations are subdivided or broken down at the transport layer, into small chunks called packets rather than as a whole.

Generally, the standard Internet communications protocols which allow digital computers to transfer (prepare and forward) data over long distances is the TCP/IP suite.

HTTP is an acronym for hypertext transfer protocol and it can be defined as a standardized application layer protocol used for the transfer of data (Informations or files) such as image files, HTML files, query results, etc., over the internet (world wide web).

Hence, Hypertext Transfer Protocol (HTTP) is a technology that standardized the process of publicly sharing and accessing information over the internet. Thus, it's a standard protocol that ensures that the security of a data isn't compromised as they're been transferred from one node to another over the internet.

Also, the default port used for Hypertext Transfer Protocol (HTTP) is 80.

Answer 2

Answer:  HEY THERE, YOU ANSWER TO THIS QUESTION IS (B)....

HOPE THIS HELPS HAVE A NICE DAY ......     :)

 

Explanation:


Related Questions

-------- C++ ------

Assume you need to test a function named inOrder. The function inOrder receives three intarguments and returns true if and only if the arguments are in non-decreasing order: that is, the second argument is not less than the first and the third is not less than the second. Write the definition of driver function testInOrder whose job it is to determine whether inOrder is correct. So testInOrder returns true if inOrder is correct and returns false otherwise.

For the purposes of this exercise, assume inOrder is an expensive function call, so call it as few times as possible!

-------------------------------------------

Assume you need to test a function named max. The function max receives two int arguments and returns the larger. Write the definition of driver function testmax whose job it is to determine whether max is correct. So testmax returns true if max is correct and returns false otherwise.

------------------------------------------

Write a program that will predict the size of a population of organisms. The program should ask the user for the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message "The starting number of organisms must be at least 2.", display the prompt again and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message "The average daily population increase must be a positive value." and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message "The number of days must be at least 1."

Answers

Answer:

The function testInOrder is as follows:

bool testInOrder(){

bool chk= false;

   int n1, n2, n3;

   cin>>n1;cin>> n2; cin>> n3;

   if(n2>=n1 && n3 >= n2){chk = true;}

   bool result = inOrder(n1,n2,n3);

   if(result == chk){ return true;}

   else{return false;}

}

The function testmax is as follows:

bool testmax(){

   bool chk = false;

   int n1, n2;

   cin>>n1; cin>>n2;

   int mx = n1;    

   if(n2>=n1){        mx = n2;    }

   int returnMax = max(n1,n2);

   if(returnMax == mx){        chk = true;            }

   return chk;

}

The prediction program is as follows:

#include <iostream>

using namespace std;

int main(){

   int startSize,numDays;

   float aveInc;

   cout<<"Start Size: ";

   cin>>startSize;

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

   cout<<"Average Daily Increase: ";

   cin>>aveInc;

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

   cout<<"Number of days: ";

   cin>>numDays;

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

   cout<<"Predicted Size: "<<startSize;

}

Explanation:

testInOrder

This defines the function

bool testInOrder(){

bool chk= false;

This declares all three variales

   int n1, n2, n3;

This gets input for the three variables

   cin>>n1; cin>>n2; cin>>n3;

This correctly check if the numbers are in order, the result is saved in chk

   if(n2>=n1 && n3 >= n2){chk = true;}

This gets the result from inOrder(), the result is saved in result

   bool result = inOrder(n1,n2,n3);

If result and chk are the same, then inOrder() is correct

   if(result == chk){ return true;}

If otherwise, then inOrder() is false

   else{return false;}

testmax

This defines the function

bool testmax(){

This initializes the returned value to false

   bool chk = false;

This declares the two inputs as integer

   int n1, n2;

This gets input for the two numbers

   cin>>n1; cin>>n2;

This initializes the max of both to n1

   int mx = n1;    

This correctly calculates the max of n1 and n2

   if(n2>=n1){        mx = n2;    }

This gets the returned value from the max() function

   int returnMax = max(n1,n2);

If returnMax and max are the same, then max() is correct

   if(returnMax == mx){        chk = true;            }

   return chk;

}

Prediction program

This declares all necessary variables

   int startSize,numDays;  float aveInc;

This gets input for start size

   cout<<"Start Size: ";    cin>>startSize;

The loop is repeated until the user enters valid input (>=2) for startSize

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

This gets input for average increase

   cout<<"Average Daily Increase: ";    cin>>aveInc;

The loop is repeated until the user enters valid input (>=1) for aveInc

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

This gets input for the number of days

   cout<<"Number of days: ";    cin>>numDays;

The loop is repeated until the user enters valid input (>=1) for numDays

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

The following loop calculates the predicted size at the end of numDays days

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

This prints the predicted size

   cout<<"Predicted Size: "<<startSize;

Will Give Brainiest 75pts

Read the following excerpt from "Did You R e a l l y Just Post That Photo?" by Kristin Lewis: There is no way to know for sure if the photos you posted on F a c e b o o k (you know, the ones that got you grounded) are the reason you were denied [college admission]. But you'll always be h a u n t e d by the possibility that the college found them. The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e. If they don't like what they find out about you, you could miss out on a scholarship or even get rejected. Colleges aren't the only ones scouring the Internet for your name either. Potential employers are looking too. An i n a p p r o p r i a t e photo can cost you a job, whether it's the babysitting gig you're hoping to land next week or the internship you will apply for five years from now. Which of the following is a paraphrase of the bolded lines that could be used for note-taking purposes? Applicants use social media to research potential colleges and jobs. Potential employers are looking up applicants online to help make hiring decisions. Social media can negatively impact a user's college and job prospects. "The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e."

Answers

Answer:

it's not C. Social media can negatively impact a user's college and job prospects. I answered that and I got it wrong. I think it might be B, im like 80% sure, so sorry if I'm wrong

hope this helps!

The option that paraphrase  the bolded lines is Potential employers are looking up applicants online to help make hiring decisions.

Is it right for a potential employer to use the Internet in this way?

The use of social media for any kind of monitoring, investigation, and job decision making by the employer is one that is advisable to all.

Conclusively, It is moral to use information that will help one in terms of job performance and if the employer uses the internet in line with their policies and practices, then there is no issue with it.

Learn more about employers from

https://brainly.com/question/26355886

Which of these statements about the truck driving occupation in the U.S. are accurate?

Answers

Answer:

I'm unsure 38373672823

Answer:

I really hate to not give answers when answering for people but I'm not sure. It is definitely not A or D, I am tied between B and C. I'm so sorry I couldn't give the answer but hopefully you can narrow them down

Collin wants to insert and center a title at the top of his spreadsheet. Collin should _____.


A. highlight the cells in row 1, select Center command, and type the title

B. type the title in cell A1 and click on the center icon

C. select cells in row 1, select the Merge and Center command, and type the title

D. click on cell A5 and type the title

Answers

Answer:

C. select cells in row 1,select the merge and center command, and type the title.

What type of internet connection do you think you'd get in Antarctica?

A.
cable
B.
DSL
C.
dial-up
D.
satellite
E.
ISDN

Answers

Hello!
My best guess is you would have to use mediocre satellites that float over for internet connection.

Where ....................... the books that you borrowed? *
1 point
(A) is
(B) are
(C) was
(D) will be​

Answers

Where ARE the books that you borrowed?

ANSWER ASAP, PLEASE !! 40 POINTS!
In 1-2 sentences, explain how to save a spreadsheet.

Answers

Answer:

Click the Microsoft Office Button , and then click Save As, or press CTRL+S. Important: If you don't see the Microsoft Office Button , click Save As on the File menu.

How to mark someone the Brainliest

Answers

Answer:

Explanation: Once u get more than 1 answer of a question. A message is shown above each answer that is "Mark as brainiest". Click on the option to mark it the best answer.

Answer:

above

Explanation:

Which activity might be a job or task of an IT worker who manages networks?
A. Setting up a LAN for the office
B. Checking employee eligibility for promotions
C. Developing software to help retirement planning
D. Checking driver's licenses for tampering

Answers

A

THE WONDERFUL ANSWER IS A

The activity that might be a job or task of an IT worker who manages networks is Setting up a LAN for the office. The correct option is A.

What is LAN?

A LAN (Local Area Network) is a type of computer network that connects devices in a small geographical area, such as an office building, school, or home.

IT network administrators are in charge of designing, installing, and maintaining computer networks that allow organisations to communicate and share information.

They are usually in charge of configuring routers and switches, configuring firewalls and security protocols, troubleshooting network issues, and ensuring that the network runs smoothly and efficiently.

Setting up a LAN (local area network) for an office is one of the most important tasks that an IT network manager may take on.

Thus, the correct option is A.

For more details regarding LAN, visit:

https://brainly.com/question/13247301

#SPJ7

What are benefits of using debugging tools? Check all that apply.
A. Debugging tools help programmers catch errors they might otherwise miss.
B. Debugging tools can save time.
C. Debugging tools can introduce new errors into the code.
D. Debugging tools help programmers make methodical assessments of the problem.

Answers

Answer:

It's

A. Debugging tools help programmers catch errors they might otherwise miss.

B. Debugging tools can save time.

D. Debugging tools help programmers make methodical assessments of the problem.

Explanation:

got it right on edge.

Answer:

A, B and C

Explanation:

Which of the following represents over one million characters, including emojis?
A. ASCIU
B. Java
C. Turing
D. Unicode

Answers

Answer:

Unicode is responsible for emojis.

what adaptation Judy and her parents have that help them run from predators coming?​

Answers

Answer:

.57

Explanation:

The adaptation which Judy and her parents have that helps them run from predators coming is:

Self preservation/survival

According to the given question, we are asked to state the adaptation which Judy and her parents has that helps them run from predators coming and continue to survive.

As a result of this, we can see that humans have adapted over the years to run from predators who are capable of killing them because of the sense of self preservation or survival which is helped by the adrenaline to escape from danger

Read more here:

https://brainly.com/question/20594263

CUANDO QUEREMOS EJECUTAR ALGUN TIPO DE EMPRENDIMIENTO, DEBEMOPS DE PENSAR EN TRES TIPOS DE MEDIDAS BASICAS​

Answers

When we want to execute some type of entrepreneurship, we must think about three types of basic measures

How can you adjust an audio or video clip to only play a small portion?

Open the Format tab, and click the Trim Audio button.

Drag the start and end point markers to the desired locations on a file.

Use the Bookmark feature to reduce the timing of a video or audio clip.

Tick the Loop until Stopped box for users to select a section for themselves​

Answers

Answer:

b. Drag the start and end point markers to the desired locations on a file.

Explanation:

I got it correct

Rafi is developing an application to send urgent information about global health crises over the Internet to hospitals. He is worried about packets getting lost along the way and the effect that will have on the accuracy of the information. What is his best option for dealing with lost packets

Answers

Have the packets virtual

Answer:

Rafi can use the Transmission Control Protocol for communication since TCP has ways to recover when packets are lost.

Explanation:

TCP is a data transport protocol that works on top of IP and includes mechanisms to handle lost packets, such as the retransmission of lost packets.

Need the answer ASAP!!!

Type the correct answer in the box. Spell all words correctly.
What does the type of documentation depend on?

Apart from the documents required in SDLC phases, there is also other documentation (or variations in documentation) depending upon the nature, type, and_________of the software.

Answers

Answer: type and create of the software

Explanation:

pls mark brainliest

Which act passed by the US government in 1998 criminalizes the production and distribution of technology that intends to evade anti-piracy laws?

A.
Stop Online Piracy Act (SOPA)
B.
Digital Millennium Copyright Act (DMCA)
C.
Preventing Real Online Threats to Economic Creativity and Theft of Intellectual Property Act (PROTECT IP or PIPA)
D.
World Intellectual Property Organization (WIPO) Copyright Treaty

Answers

Answer:

B

Explanation:

When the condition of an if statement is false, the computer will return an error message to the user.
A. True
B. False

Answers

The correct answer to your problem is A, True

what are th sensors of street lights
only light or there something else ?

Answers

Answer:they also provide satellites to vision where roads are

Explanation:

Which of these is a type of software that prevents, finds, and removes
dangerous software on computers and networks?
Internet browser
Antimalware or antivirus
Operating system
Multimedia software

Answers

Answer:

Antimalware

Explanation:

It is literally in the name of the software what it does.

Need the answer ASAP PLZ!!!! I’ll mark brainliest if it’s correct

Select the correct answer.
Suzanne, a project manager, wants to change the style and font of the text in the document. What documentation standards should Suzanne
follow?

OA
interchange standards
ОВ.
identification standards
OC.
update standards
OD
process standards
OE.
presentation standards

Answers

Answer:

update standards

i think this is correct

don't be afraid to correct me if im wrong

Explanation:

mrk me brainliest

A group of students writes their names and unique student ID numbers on sheets of paper. The sheets are then randomly placed in a stack.

Their teacher is looking to see if a specific ID number is included in the stack. Which of the following best describes whether their teacher should use a linear or a binary search?

A. The teacher could use either type of search though the linear search is likely to be faster
B. The teacher could use either type of search though the binary search is likely to be faster
C. Neither type of search will work since the data is numeric
D. Only the linear search will work since the data has not been sorted

Answers

Answer:

D.

Explanation:

Binary searches are required to be first sorted, since they use process of elimination through halving the list every round until the answer is found. Linear searches just start from the beginning and check one by one.

Please Help!
Computer Sci

Answers

Answer:

A.

Explanation:

Hope this helps :)

Which of the following would be the
reason a science technician would be
taking photographs in the lab?
A. to place employees on a blog or web page
B. to keep track of updates needed for the facilities
C. to use as part of the funding for the project
D. to document the process of chemical reactions

Answers

Answer:

D. to document the process of chemical reactions.

Explanation:

A chain of custody can be defined as a paper trail containing the chronological order of items of evidence and how they have been handled, controlled, transferred, analyzed, and disposed during the investigation of a case.

This ultimately implies that, a chain of custody contains all the details or informations regarding the investigators (people) who handled, controlled, transferred, analyzed, and disposed an evidence in the course of carrying out investigations on a particular case. The most important and significant part of an investigation is the evidence because it helps to unravel the truth and facts relating to a case. Therefore, it is very important and essential to document and maintain a chain of custody so as to preserve the evidence.

A chemical reaction can be defined as a reaction in which two or more atoms of a chemical element react to form a chemical compound.

Hence, the possible reason a science technician would be taking photographs in the lab is to document the process of chemical reactions by generating pictorial evidences.

What are some of the ways that a computer or business can be infected with a computer virus?

Answers

Answer: A way a computer or business can be infected with a virus is via a USB. A person can come into the business with a copy of a C.V. which is destroyed in some way. You give the USB to the receptionist and ask to print you a new one. When they do, a virus hidden in the USB will begin to attack the computer. Another way to infect a computer with a virus is to upload it in a comment box. If a website has a comment/complaint section, a hacker can put in code to a virus. This virus will enact itself once the user opens the website. A fake anti-virus program will appear, and the virus will begin installing itself.

A USB can be used to spread a virus to a computer or organization. Someone could enter the company with a duplicate of a CV that has been damaged in some way. You hand the receptionist the USB and ask them to print you a new one.

What is a computer virus?

A computer virus is a piece of malicious software that spreads by copying itself to a document, the boot sector of a computer, or another program. It modifies how a computer operates in the process. A virus starts to spread among computer systems after some type of human interaction.

When they do, a computer will start to be attacked by a virus that was hidden in the USB. Uploading a virus in a comment box is another technique to get it onto a computer.

Thus, A USB can be used to spread a virus to a computer or organization.

For more information about computer virus, click here:

https://brainly.com/question/14467762

#SPJ2

in 2 or 3 sentences, describe one advanced stradegy and how its useful

Answers

Answer:

A search strategy is useful because it helps you learn about things that are not available to you in person. One advanced search strategy is to form words carefully. I could copy 'describe one advance search strategy and how it is useful' and put it into a search engine and get many different results that aren't helpful. But if I shorten it to 'advance search strategies' I get helpful information.

Explanation:

Which feature of REPL.it would you use to transmit your program to a friend?
execute
share
run
post

Answers

Answer:

share

Explanation:

It's in the name of the option.

Answer:

Its share because Share is when you share to someone or your friend

execute is wrong

run doesnt make sense

post means that your posting a program to the world

Explanation:

A computer consists of both software and hardware. a)Define the term software​

Answers

Answer: We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Have a nice day!

Answer/Explanation:

We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Which of the following was (and still is) used by computer programmers as a first test program?

Answers

Answer:

The "Hello World!" program

Explanation:

Options are not given, However, the answer to the question is the "Hello World!" program.

For almost all (if not all) programming language, this program is always the test program.

In Python, it is written as:

print("Hello World!")

In C++, it is:

#include <iostream>

int main() {

   std::cout << "Hello World!";

   return 0; }

Answer:

the following was (and still is) used by computer programmers as a first test program is "Hello world!".

and its computer program is:

Explanation:

[tex]\:{example}[/tex]

#include <stdio.h>

int main()

{

/* printf() displays the string inside

quotation*/

printf("Hello, World!");

return 0;

}

Why would a designer choose to use a static layout? Check all of the boxes that apply.

It helps to avoid horizontal scrolling.

It adjusts the size and shape of content blocks.

It is easier to control layout choices.

It always fits the width of the screen.

Answers

Answer:

Explanation:a & c

Answer:

a c core

Explanation:

Other Questions
$15 for 4 quarters Find the untie rate. Don't forget to write the label Bill's product manager continues to perform well in the market. However, a competing product is coming on strong and is looking to take over as the market share leader in the segment. Without sacrificing contribution margin, what can the Bill product manager do in order to improve upon the buying criteria, and thus potentially increase demand what do you mean by quality of life explain any two PLS HELO ME I WILL GIVE BRAIN THINGYYYYY Anne works in a factory she recieves a salary of $8 per hour and piecework pay of 12 cents per unit produced The greatest common factor of two numbers is 4. The sum of the numbers is76. What are the two numbers?O A) 14 and 52OB) 12 and 54OC) 38 and 48OD) 24 and 52 A Raisin in the Sun: Make 2 predictions on Walter Lee Younger on what you think will happen to him sometime in the future, after the play is over. Please help me!! anyone please help? !!!DUE IN 10 MINS!!! PICKING BRAINLIEST TO WHOEVER IS RIGHT!!! What is a therapeutic community?A. a treatment program without medical help that consists of group and individual counseling sessions for people recovering from drug abuseB. a drug treatment method in which the abused drug is replaced with a substitute that has fewer harmful effectsC. a treatment method where people recovering from drug abuse live together and learn to adjust to their new drug-free lives Guys please help on this I barely understand it PLSSS HELPPP!!!i dont know The purpose of life insurance is to protect your car in case of an accident. O True. False. pizza size price in dollarssmall. 11.60mediumlarge. 16.25a)You had a coupon that made the price of a large pizza $13.00. For what percent off was the coupon?b) Your friend purchased medium pizza for $10.31 with a 30% off coupon. what is the price of a medium pizza without a coupon?c) Your friend has a 15% off coupon and $10. what is the largest pizza that your friend can afford? The probability that Tommy has his calculator for his mathematics lesson is 0.4 . There are 120 mathematics lessons in one year. Work out an estimate of the number of mathematics lessons in one year that Tommy has his calculator In Spanish write one complete sentence for each of the following verbs. Be sure to conjugate them correctly. 1 - Yo (hacer) ..... 2 - Yo (poner) ..... 3 - Yo (salir) ..... 4 - Yo (conocer) ..... 5 - Yo (tener) ..... Pay attention to (a) correct conjugation of the verb, (b) use of supporting vocabulary, and (c) overall quality of the sentence. Alina is building a roof for a dog house. She uses plywood to make the roof with the dimensions shown, but with an open bottom.A net of a square pyramid has a square base with side lengths of 4 feet, and 4 triangular sides with heights of 3 feet.How many faces will she need to consider when deciding the amount of shingles to buy for the roof? faces I need a prompt for my writing class pls help. The curly toe phenotype is controlled by 4 genes that act in an additive manner. The environment does not have an effect on this trait. A dominant allele (represented by the capital letters) has 6 units of risk. A recessive allele (represented by the lower case letters) has 2 units of risk. Individuals with more than 35 units of risk have curly toes. Individuals with 35 or fewer risk units have straight toes. What is the highest number of risk units an individual can have with this model? Give your answer as a whole number, not in words. What is the phenotype of an individual of genotype AaBbCCDd? .Curly Toes Straight Toes notype AAbbCcDd is married to an individual of genotype AaBbCCDd. Is it possible for them to have a child with curly toes? hello please help ill give brainliest determain if the red line is a leg or Hypotenuse of the right triangle