How is the Internet Simulator similar to the Actual Internet? How is it different?

Answers

Answer 1
The Internet Simulator is a tool developed by Code.org for our new high school Computer Science Principles class. ... The Internet Simulator was designed to be used in a classroom with students working collaboratively in-person to solve problems.
Answer 2

This deals with the difference between actual internet and internet simulator.

1) They are similar because the link multiple devices to form a network.

2) They are different because the speed of the internet simulator is much more slower than the actual internet.

The Internet Simulator is simply a tool that was designed to assist students in gaining a hands on practical experience in approaching different problems that arise in association with networked computers.

In contrast, the internet is a large network that connects computers around the world.

Now, from both definitions, we can see that they are similar in the sense that they connect with devices to create a network.

However, they are different in terms of reach and speed.

The internet simulator is much more slower than the actual internet because it doesn't convey information as fast as the actual internet does.

Read more at; brainly.com/question/18543195


Related Questions

differentiate between third and fourth generation of computer​

Answers

Answer: third generation of computer are larger than fourth generation. ... IC chips were used whereas in fourth generation microprocessor were used. fourth generation consumed less electricity than third generation.

Can Anybody Answer This

Answers

Answer:

1 2 and 3 (A) give me brainiest

In the space below, explain how creating a multilevel list makes the Nutrients That the Human Body Needs information more readable.

Answers

Answer:

If you add a multilevel list the person or people reading the document know what protein does and it helps it look more readable.

Explanation:

Answer:

Lists allow you to emphasize important ideas. They also increase the readability of text by simplifying long sentences or paragraphs and adding aesthetic passive space to make reading more pleasant.

Explanation:

Which genres of film would need the most work and input from a screenwriter? (Select all that apply).
a) action films
b) adventure films
c) comedies
d) nature documentaries

Answers

Answer:

action films

Explanation:

plz make me brainliest

Answer:

c and d may I have big brian plz

Explanation:

Which best describes a paraphrase?

Answers

to rewrite something , but in your own words


Compare and contrast the shooting system using a film camera and a digital camera.

Answers

Answer:

Compared to film, digital cameras are capable of much higher speed (sensitivity to light) and can perform better in low light or very short exposures. The effective speed of a digital camera can be adjusted at any time, while the film must be changed in a film to change the speed.

I only have the compare :\

Explanation:

please give me my poitns packl

Answers

Answer:

wutt??????

Explanation:

Answer:

What?

Explanation:

You mean... you’re giving free points.

list 10 inventions and innovations

Answers

Answer:

The creation of a product or introduction of product for the first time is referred as Inventions.

If someone makes significant contribution to the existing product it is referred as Innovations.

The Ten Inventions are:

AirplaneBulbCompassClock TelephonePersonal computerPrinting pressAutomobileCalendarWaterwheel

The Ten Innovations are:

Paper CurrencySteelTransistorMagnifying LensesTelegraphAntibioticsTelevisionMicroprocessorSmart PhoneMicroscope

Part of performing routine computer maintenance includes cleaning up after any spills. deleting Internet browsing history. removing the Internet connection. reinstalling faulty software programs.

Answers

Answer:

If I'm not wromg it would be B I'm not completely sure

The Part that is responsible for performing routine computer maintenance is deleting Internet browsing history.

What is Computer maintenance about?

Computer maintenance is known to be the act of keeping one's computers and laptops in good shape  via constant or regular cleanings, hard drive updates, and also a kind of virus prevention.

By doing so, one can prolong the lifespan of their devices and it can also help one browse safely on the web.

Conclusively, by the routine work of computer maintenance that involves deleting Internet browsing history, another person would not be able to access what you did on your internet history.

Learn more about computer maintenance from

https://brainly.com/question/25243683

what is tuple and attribute of a relation​

Answers

Answer:

An attribute value is an attribute name paired with an element of that attribute's domain, and a tuple is a set of attribute values in which no two distinct elements have the same name. Thus, in some accounts, a tuple is described as a function, mapping names to values.

Explanation:

Mac or PC (need opinions please)

Why did you choose Mac/PC?

Answers

Answer:

obviously Mac like mac

Answer:

I think mac obviously Mac

How would you monitor the performance of others that you have to lead

Answers

Answer:

Check over their progress daily.

Explanation:

What statement best describes operating systems?
O It's possible for modern computers to function without operating systems.
O Most operating systems are free or very inexpensive.
Operating systems are managed by the computer's microprocessor (CPU).
O Operating systems manage the computer's random access memory (RAM).

Answers

Answer: D) Operating Systems manage the computer's random access memory (RAM)

Explanation:

It's not A because all modern computers use some form of an Operating System.

It's not B because some Operating Systems can cost hundreds of dollars.

While C has some truth to it, it's reversed. Operating Systems are there to manage and allocate system resources, and D is the better choice.

The statement that best describes operating systems is D. Operating systems manage the computer's random access memory (RAM).

Operating systems simply means the software which supports the basic functions of a computer like scheduling tasks and the control of peripherals.

An operating system is a system software that helps in managing computer hardware and software resources. It's vital in managing the computer's random access memory.

Read related link on:

https://brainly.com/question/18978060

Which of the following is true of a procedure? Check all that apply.

It can be reused.

It saves programmers time.

It is a block of code that performs a single task.

It lets you exit a function.

Answers

Answer:

A, B, C

Explanation:

ye

Answer:

It is

A

B

C

Explanation:

Got it right on edge

Adnan is creating a presentation about engineers using geometric shapes in bridge construction. He wants to insert
an illustration of a bridge saved in a folder on his computer.
How can he access the folder using the images command group?
After choosing the illustration he wants to add, which button should he click?
Add
Insert
OK
Done
Intro

Answers

Answer:Click Pictures, Insert

Explanation:

Got it right

Answer:

A. A

B. B

Explanation:

What is the purpose of a career portfolio?
to introduce a resume and ask for a job interview
to provide relevant information in a job application
to keep track of all of the jobs you’ve applied for throughout your career
to collect work samples and the data that is used in a resume

Answers

Answer:

To provide relevant information in a job interview

Explanation:

Answer:

b.) on edg.

Explanation:

got it right

Instructions
Write the code to input a number and print the square root. Use the absolute value function to make sure that if the user enters a
negative number, the program does not crash.

Answers

Answer:

*** Python Code ***

from math import sqrt

def squareRoot(x):

   print(sqrt(abs(x)))

squareRoot(float(input("Square-root of this number: ")))

*** Sample Input ***

Square-root of this number: 4

*** Sample Output ***

2.0

Explanation:

For this problem, we will simply use the python built-in methods for finding the square root and taking the absolute value of a number.

Line 1:  from math import sqrt

This line of code imports the square root method from the math module so we can compute the square root of our number

Line 2: def squareRoot(x):

This line of code is a function definition of a method we are creating called "sqareRoot" in which it takes a single argument x

Line 3:  print(sqrt(abs(x)))

This line of code takes the absolute value of the function argument x, takes the square root of that number, and then prints the result to the console

Line 4:  squareRoot(float(input("Square-root of this number: ")))

This line of code takes in a user input number, converts the string to a float, and then passes the number as the argument to our user defined function squareRoot

Cheers.

2. Discuss how science and mathematics have influenced technological development. Cite examples of how products have evolved.​

Answers

Answer:

Science helps technology by. Scientist creating the tech, and creating the technology we need. Math helps by, Animation creating

(layers, frames, etc) I can also help with coding. Coding is very important when using technology. We need math and science when it comes to technology. Hoped this helped :)

Explanation:

The impact made by the advancement in technology cannot be overemphasized, this has largely been down to the leverage of mathematical and scientific knowledge in the aspect of computer literacy, engineering and research.

Technology has been developed heavily in the aspect of computing where mathematical and scientific knowledge has been hugely developed in building mathematical and statistical models on the aspect of artificial intelligence and machine learning.

Robotics engineering and space exploration are have been made possible largely due to the computational mathematics and physics.

Therefore, science and mathematics have largely influenced technological development.

Learn more : https://brainly.com/question/15584303

It is a small hand tool used generally in decorative works such as making garnishes

Answers

it will probably be a channel knife

What is a class in CSS?
a grouping of HTML tags for which style properties can be declared
a selector used to define a unique style
a tag used to apply styles to a block of content
the part of a declaration describing the type of style to be applied

Answers

A tag used to apply styles to a block of content.

Answer- A: a grouping of HTML tags for which style properties can be declared

Explanation: "In CSS, a class is a group of elements that are the same or similar. You can have as many elements as you want in a class. And each element can be the member of multiple classes. Every class has CSS attributes (like color and font-size) that are specific to that class. CSS classes are similar to a real-life class." skillcrush.com

Question # 2
Multiple Choice
Which of these scenarios demonstrates why an art director is necessary?


A group of theme park designers meet to discuss ideas for a new attraction.

An artist graduates from a prestigious school, but can’t find work in fine art.

An advertising executive looks at a print layout and says, “I don’t like it. It’s too odd-looking.”

A game designer must take a popular game and design a sequel for it.
Question # 3
Multiple Choice
An applicant for the position of art director has a fine reputation as a designer and innovator, but his supervisor says that he is awkward and uncommunicative around non-artists. Should the artist be hired as art director?


No, because he lacks the finesse needed to deal with both creatives and marketing personnel.

Yes, because it is more important for an art director to communicate with artists than anyone else.

No, because he most likely couldn’t take the stress that goes with the job.

Yes, because he should be given a chance to improve his social skills.
Question # 4
Multiple Choice
The art director is meeting with the brand strategist. What are they most likely doing?


discussing where the copy will be placed in the latest print ad

comparing images proposed for an updated logo

reviewing the music for an online video commercial

brainstorming ideas for a social media campaign

Answers

Answer:

1. An advertising executive looks at a print layout and says, “I don’t like it. It’s too odd-looking.”

2. No, because he lacks the finesse needed to deal with both creatives and marketing personnel.

3. Brainstorming ideas for a social media campaign

Explanation:

1. An Art Director is mostly involved in the development of images and visual content that would appeal to a specific audience. So, when the advertising executive looks at a print layout and wants some adjustments done to it, the art director would be needed because this work involves visuals.

2. If an applicant for the position of an art director is excellent at his job, but does not communicate well with non-artists, he should not be hired for the job because his work mainly revolves around artists such as the creative directors and brand strategists as well as the marketing team members and he needs to effectively communicate with them especially in an advertising agency.

3. The brand strategist basically brainstorms ideas meant to sell a product and this might require discussing with the art director on the best ways to implement this.

Which term describes a protocol to manage a network, able to configure a network, monitor activity, and control devices?

Post Office Protocol version 3 (POP 3)

Simple Mail Transfer Protocol (SMTP)

Internet Message Access Protocol (IMAP)

Simple Network Management Protocol (SNMP)

Answers

Answer:

Simple Network Management Protocol (SNMP)

Explanation:

Answer:

SNMP

Explanation:

vote brainliest please.

Hope has now created her sublist. 1. Oxygen a. Helps living things produce energy b. Helps protect living things from harmful rays of the sun 2. Nitrogen a. Part of the muscles and organs of living things b. Part of substances that make living things function Hope wants to add a third use at the end of her nitrogen list. What should Hope do first? What is Hope's next step?

Answers

Too lazy to type it all out, C then B are correct.

Order the steps to take when drawing electron dot diagrams.


Count the dots to make sure that all of the valence electrons are represented. 1,2,3,4


Draw dots around the chemical symbol to represent the valence electrons of the atom.1,2,3,4


Use the periodic table to find the chemical symbol of the atom and the number of electrons in the valence shell. 1,2,3,4





write the chemical symbol of the atom. 1,2,3,4

Answers

Answer:

i just got to this question but the answers are

Explanation:

4

3

1

2

Hello, can you help me answer these questions?
1.How are machines located on the Internet?
2.What equipment allows data to be sent from the sender to the recipient over the Internet?
3.What is the name of the rules that standardize data exchange on the Internet and allow different hosts on the network to communicate?

Thank you in advance !

Answers

Answer:

Ans 1.To connect to the Internet and other computers on a network, a computer must have a NIC (network interface card) installed. A network cable plugged into the NIC on one end and plugged into a cable modem, DSL modem, router, or switch can allow a computer to access the Internet and connect to other computers.

Ans 2.Data travels across the internet in packets. Each packet can carry a maximum of 1,500 bytes. ... When you send an e-mail to someone, the message breaks up into packets that travel across the network. Different packets from the same message don't have to follow the same path.

Ans 3.protocol is a set of rules that governs the communications between computers on a network. A network protocol defines rules and conventions for communication between network devices.

Ans3 A protocol is a set of rules that governs the communications between computers on a network. A network protocol defines rules and conventions for communication between network devices.

Hope this fine

Pls Make me a brainlest

Answer:

This is basically how searches are made

This is a pretty detailed answer which I wrote in my own words so.... you might not understand fully also you might not get all the answers here. BUT I HOPE IT HELPS!!

You are writing a paper and find some information you want to use in a journal article: Original text: Among students with incorrect answers at pre- and posttest, the largest percentage had trouble recognizing an example of patchwork plagiarism. Apparently, many did not understand that cutting and pasting is plagiarism. Source: Fenster, Judy. "Teaching Note—Evaluation of an Avoiding Plagiarism Workshop for Social Work Students." Journal of Social Work Education, vol. 52, no. 2, Apr-Jun 2016, pp. 242-248. Academic Search Complete, doi:10.1080/10437797.2016.1151278 Entry in your paper: Among students with incorrect answers, most couldn't recognize patchwork plagiarism and did not understand that cutting and pasting is plagiarism. What is your judgment- is this plagiarism?

Answers

Answer:

The answer is "True".

Explanation:

The term Plagiarism is a word, that implies as a form of cheating, which includes the usage, of all or part, of its thoughts, words, designs, arts, the music of anyone else without any of the author's recognition or permission.

In the question, it is already defined that students copy and paste the data, which is lying in the criteria of plagiarism, that's why the given statement is "true".

knowing a companys buisness standards will

Answers

Answer:

Imma say it will give you a better chance to reach those standards and get the job <3

Explanation:

Answer:

increase your ability to become enhanced at the job

Explanation:

coding could help prevent car crashes with automatic driving cars; however, some are afraid of tha because it allows control over people.what do you think? safety verse power verse privacy?​

Answers

Answer:

Honestly self driving cars are the future of humans and it can and will help us evolve. It could possibly be more dangerous if someone messed up the coding and it can be hacked by almost anyone with coding abilities, so it all depends on how safe you think you will be not driving yourself anywhere. Overall it could go both ways( good or bad.)

Hope this helped

Explanation:

what do you mean by secondary memory ?

Answers

Answer:

The answer is a computer memory that is a non-volatile and persistent in nature and it's not directly accessed by a computer or a processer.

Why do we have to watch a video to get answers?

Answers

Answer:

The videos contain the answers.

Explanation:

Hey there!

Watching a video can help understand the concept better. If you watch the video, you will learn more. It's also a  benefit to watch a video. For many people who can't understand, they can learn by watching the video. So this is a good way to understand things better: watching a video.

Hope this helps!

Other Questions
solve the equation for x Solve for k.(2k + 2)=(k + 5) Type the correct answer in each box. Use numerals instead of words. What is the y intercept of this quadratic function f(x)=-x*2+10x-22 the approximate mass of Mars is 6.42 X 10^23 kg write this mass and standard notation Which of the following is an indirect competitor for a company that makes chocolate chip cookies? A. Another company that makes chocolate chip cookies B. A company that makes potato chips C. A company that makes baking pans D. A company that makes brownies how does adding more substrate effect an enzyme reactionPLEASEEEE HELPPPP :( Which material would result in the least amount of energy transfer?A reflector that is bright in color and smooth. A reflector that is dark in color and smooth. An absorber that is bright in color and rough. An absorber that is dark in color and rough. 4(x-7)=2x-6 (show work) In your own words create your personal reflection about cognitive development ASAP PLEASE Laurie is designing a type of candy dispenser for use at grocery stores. When pressure is applied to a lever by the customer, candy will fall into a container. As pressure on the lever increases, so will the amount of candy that is dispensed. For each pound per square inch of pressure placed on the lever, the amount of candy dispensed will triple.Which of the following does this situation represent? How might a persons place in the life cycle influence investment decisions? Which surface has the least amount of friction? The pH of a substance added to a citrate buffer, y, depending on the ratio of citric acid to sodium citrate, x, can be modeled using the equation y = 6.4 log x. If the pH of the substance is 6.5, what is the ratio of citric acid to sodium citrate? xxxxA.0.79B. 1.26C. 5.59 D.7.20It's A Scientific Notation is made up of two number parts. The second part is a powerof base 10.FalseTrue If positive integer number n has exactly 8 divisors, what is the least number of divisors can n^2 have? Read the excerpt from Immigrant Kids, by RussellFreedmanThe second doctor watched for contagious andinfectious diseases. He looked especially for infectionsof the scalp and at the eyelids for symptoms oftrachoma, a blinding disease. Since trachoma causedmore than half of all medical detentions, this doctor wasgreatly feared. He stood directly in the immigrant's path.With a swift movement, he would grab the immigrant'seyelid, pull it up, and peer beneath it. If all was well, theimmigrant was passed onHow does the author's use of concrete details such as"stood directly in the path," "swift movement," and"grabbed" affect the reader's impression of the doctor?These details describe how the doctor felt about doingtrachoma inspections.These details provide information about medicalexaminations from the doctor's perspective.These details describe the doctor's actions as directand focusedThese details provide a list of medical examinations. The number of pages that Rosa can write varies directly with the amountof time that she spends writing. She can write 4 pages in 1/3 hour. Howmany pages can Rosa write in 7 hours? Find the slope of the line passing through each of the following pairs of points and draw the graph of the line. (5, 2), (3, 3) This is the question: -10.7 + (- 3.5 ) Explain how the Agricultural Adjustment Act would prevent the following scenario from occurring in the situation described below.A drought recently occurred in southern Georgia and wiped out thousands of acres of cotton. The farmers decided to cut their losses and pool together all the crops they could yield and try to salvage their business. Unfortunately, many farmers went out of business and severely upset the crop market the following season.