What was the biggest problem with the earliest version of the internet in the late 1960’s?

Answers

Answer 1
Networks couldn't talk to each other. The TCP/IP protocol could only be used in universities, governments, and businesses.
Answer 2

Answer:

Google didn't exist

Explanation:

Google was born in 1998 so a bunch of things were a problem


Related Questions

in programming and flowcharting, what components should you always remember in solving any given problem?

Answers

Answer:

you should remember taking inputs in variables

The source document states:

(S) The range of the weapon is 70 miles.

The new document states:

(S) The weapon may successfully be deployed at a range of 70 miles.

Which concept was used to determine the derivative classification of the new document?

Select one:

a.
Revealed by


b.
Classification by Compilation


c.
Extension


d.
Contained in

Answers

Answer: its b i took the test

Explanation:

Select the correct answer from each drop-down menu. What data types can you suggest for the given scenario? Adja is working in a program for the school grading system. She needs to use a(n) (First drop down) to store the name of the student and a(n) array of (Second drop down) to store all the grade of each subject of each student.
Options for the first drop down are- A. Integer, B.String, C.Character.
Options for the second drop down are- A.Floats, B.Character, C.String.

Answers

Based on the given scenarios, the data types that would be best suited for each is:

C. Character.A. Floats

What is a Data Type?

This refers to the particular type of data item that is used in order to define values that can be taken or used in a programming language.

Hence, it can be seen that based on the fact that Adja is working in a program for the school grading system, she would need to use a character to store the name of the student and a float to store all the grades of each subject of each student because they are in decimals.

With this in mind, one can see that the answers have been provided above.,

In lieu of this, the correct answer to the given question that have been given above are character and floats.

Read more about data types here:

https://brainly.com/question/179886

#SPJ1

Answer:

A- String

B- Character

if your computer is frozen what is something you would do to troubleshoot the problem ​

Answers

Answer:

Ctrl+Alt+Del

Explanation:

It will take you to the task manager and you can highlight the program that is frozen, right click on it and select end task. Or hard reboot as a last resort.

how would you feel if the next version of windows becomes SaaS, and why?

Answers

If the next version of Windows becomes SaaS, SaaS or Software as a Service is a software delivery model in which software is hosted on the cloud and provided to users over the internet.

Moving Windows to a SaaS model means that Microsoft will continue to deliver updates and new features through a subscription-based service rather than through major new versions of the operating system.

This approach has its own advantages and challenges.

Benefits of the SaaS model for Windows:

Continuous Updates: Users receive regular updates and new features, ensuring they always have access to the latest improvements and security patches.

Flexibility: Subscriptions offer different tiers and plans so users can choose the features they need and customize their experience.

Lower upfront costs: A subscription model could reduce the upfront cost of purchasing Windows, making Windows more accessible to a wider audience.

Improved security: Continuous updates can help address vulnerabilities and security threats more rapidly, enhancing overall system security.

Challenges and concerns with a SaaS model for Windows:

Dependency on internet connectivity: Users would need a stable internet connection to receive updates and access features, which may not be ideal for those in areas with limited or unreliable internet access.

Privacy and data concerns: Users might have concerns about data collection, privacy, and the potential for their usage patterns to be monitored in a subscription-based model.

Cost considerations: While a subscription model may provide flexibility, some users may find it less cost-effective in the long run compared to purchasing a traditional license for Windows.

Compatibility issues: Continuous updates could introduce compatibility challenges for legacy software and hardware that may not be updated or supported in the new model.

Whether you view Windows' migration to a SaaS model as a positive or negative is ultimately determined by your personal perspective and specific implementations by Microsoft.

Cost: SaaS is a subscription-based model, which means users have to pay recurring fees to use the software.

They have to rely on the provider to update, maintain, and improve the software.To sum up, I would feel hesitant about using SaaS if the next version of Windows becomes SaaS.

For more questions on Software as a Service:

https://brainly.com/question/23864885

#SPJ8

can someone make me wamerise acc

Answers

This first-person shooter (FPS) does not need you to wait until the end of a round before respawning.

What can you expect from the game?

First-person shooting game Warmerise is brand-new and ground-breaking. First off, there is no need to download a client or software. Second, you only need to register using your email address. The cost of getting access to the game is completely free.

First off, the Unity engine was used in the game's creation, so you can expect slick, fantastic graphics without straining your Internet connection. The game loads and runs without a hitch, even at high resolution settings. The key is to not worry about details and procedures so that you can enjoy playing and taking in the views.You can anticipate playing in ultra-modern settings because Warmerise is a futuristic first-person shooter.

To learn more about warmerise refer to :

https://brainly.com/question/16150258

#SPJ1

In which of the following situations must you stop for a school bus with flashing red lights?

None of the choices are correct.

on a highway that is divided into two separate roadways if you are on the SAME roadway as the school bus

you never have to stop for a school bus as long as you slow down and proceed with caution until you have completely passed it

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

Answers

The correct answer is:

on a highway that is divided into two separate roadways if you are on the OPPOSITE roadway as the school bus

What happens when a school bus is flashing red lights

When a school bus has its flashing red lights activated and the stop sign extended, it is indicating that students are either boarding or exiting the bus. In most jurisdictions, drivers are required to stop when they are on the opposite side of a divided highway from the school bus. This is to ensure the safety of the students crossing the road.

It is crucial to follow the specific laws and regulations of your local jurisdiction regarding school bus safety, as they may vary.

Learn more about school bus at

https://brainly.com/question/30615345

#SPJ1

1.Create a function that accepts any number of numerical (int and
float) variables as positional arguments and returns the sum ofthose variables.
2.Modify the above function to accept a keyword argument
'multiplier'. Modify the function to return an additional variable
that is the product of the sum and the multiplier.
3.Modify the above function to accept an additional keyword
argument 'divisor'. Modify the function to return an additional
variable that is the quotient of the sum and the divisor.

Answers

Answer:

This function accepts any number of numerical variables as positional arguments and returns their sum:

python

Copy code

def sum_numbers(*args):

   return sum(args)

This function accepts a multiplier keyword argument and returns the product of the sum and the multiplier:

python

Copy code

def sum_numbers(*args, multiplier=1):

   total_sum = sum(args)

   return total_sum * multiplier

This function accepts an additional divisor keyword argument and returns the quotient of the sum and the divisor:

python

Copy code

def sum_numbers(*args, multiplier=1, divisor=1):

   total_sum = sum(args)

   return total_sum * multiplier, total_sum / divisor

You can call these functions with any number of numerical arguments and specify the multiplier and divisor keyword arguments as needed. Here are some examples:

python

# Example 1

print(sum_numbers(1, 2, 3))  # Output: 6

# Example 2

print(sum_numbers(1, 2, 3, multiplier=2))  # Output: 12

# Example 3

print(sum_numbers(1, 2, 3, multiplier=2, divisor=4))  # Output: (8, 3.0)

a. Write code to implement the above class structure. Note the following additional information:
Account class: Create a custom constructor which accepts parameters for all attributes. The withdraw method should check the balance and return true if the withdrawal is successful.
SavingsAccount class: Create a custom constructor which accepts parameters for all attributes.
CurrentAccount class: Create a custom constructor which accepts parameters for all attributes. The withdraw method overrides the same method in the super class. It returns true if the withdrawal amount is less than the balance plus the limit.
Customer class: Create a custom constructor which accepts parameters for name, address and id.
b. Driver class:
Write code to create a new Customer object, using any values for name, address and id. Create a new SavingsAccount object, using any values for number, balance and rate. Set the SavingsAccount object as the Customer’s Savings account. Create a new CurrentAccount object, using any values for number, balance and limit. Set the CurrentAccount object as the Customer’s Current account.
Prompt the user to enter an amount to deposit to the Savings account and deposit the amount to the customer’s Savings account.
Prompt the user to enter an amount to withdraw from the Current account and withdraw the amount from the customer’s Current account. If the withdraw method is successful print a success message, otherwise print an error.
Finally print a statement of the customer accounts using methods of the Customer object. Output from the program should be similar to the following:

Enter amount to withdraw from current account:
500
Withdrawal successful
Enter amount to deposit to savings account:
750
Customer name: Ahmed
Current account no.: 2000
Balance: 1000.0
Savings Account no.: 2001
Balance: 1500.0

Answers

According to the question, the code to implement the above class structure is given below:

What is code?

Code is the set of instructions a computer uses to execute a task or perform a function. It is written in a programming language such as Java, C++, HTML, or Python and is composed of lines of text that are written in a specific syntax.

public class Account{

   private int number;

   private double balance;

   //Custom Constructor

   public Account(int number, double balance){

       this.number = number;

       this.balance = balance;

   }

   public int getNumber(){

       return number;

   }

   public double getBalance(){

       return balance;

   }

   public void setBalance(double amount){

       balance = amount;

   }

   public boolean withdraw(double amount){

       if(amount <= balance){

           balance -= amount;

           return true;

       }

       return false;

   }

}

public class SavingsAccount extends Account{

   private double rate;

   //Custom Constructor

   public SavingsAccount(int number, double balance, double rate){

       super(number, balance);

       this.rate = rate;

   }

   public double getRate(){

       return rate;

   }

}

public class CurrentAccount extends Account{

   private double limit;

   //Custom Constructor

   public CurrentAccount(int number, double balance, double limit){

       super(number, balance);

       this.limit = limit;

   }

   public double getLimit(){

       return limit;

   }

   private String name;

   private String address;

   private int id;

   private SavingsAccount savingsAccount;

   private CurrentAccount currentAccount;

   //Custom Constructor

   public Customer(String name, String address, int id){

       this.name = name;

       this.address = address;

       this.id = id;

   }

   public SavingsAccount getSavingsAccount(){

       return savingsAccount;

   }

   public void setSavingsAccount(SavingsAccount savingsAccount){

       this.savingsAccount = savingsAccount;

   }

   public CurrentAccount getCurrentAccount(){

       return currentAccount;

   }

   public void setCurrentAccount(CurrentAccount currentAccount){

       this.currentAccount = currentAccount;

   }

   public String getName(){

       return name;

   }

   public void printStatement(){

       System.out.println("Customer name: " + name);

       System.out.println("Current account no.: " + currentAccount.getNumber());

       System.out.println("Balance: " + currentAccount.getBalance());

       System.out.println("Savings Account no.: " + savingsAccount.getNumber());

       System.out.println("Balance: " + savingsAccount.getBalance());

   }

}

public class Driver{

   public static void main(String[] args){

       Customer customer = new Customer("Ahmed", "123 Main Street", 123);

       SavingsAccount savingsAccount = new SavingsAccount(2001, 1000, 0.1);

       customer.setSavingsAccount(savingsAccount);

       CurrentAccount currentAccount = new CurrentAccount(2000, 1000, 500);

       customer.setCurrentAccount(currentAccount);

       Scanner scanner = new Scanner(System.in);

       System.out.println("Enter amount to withdraw from current account:");

       double amount = scanner.nextDouble();

       if(currentAccount.withdraw(amount)){

           System.out.println("Withdrawal successful");

       }

       else{

           System.out.println("Error");

       }

       System.out.println("Enter amount to deposit to savings account:");

       double amount2 = scanner.nextDouble();

       savingsAccount.setBalance(savingsAccount.getBalance() + amount2);

       customer.printStatement();

   }

}

To learn more about code

https://brainly.com/question/30505954

#SPJ1

Attempting to write a pseudocode and flowchart for a program that displays 1) Distance from sun. 2) Mass., and surface temp. of Mercury, Venus, Earth and Mars, depending on user selection.

Answers

Below is a possible pseudocode and flowchart for the program you described:

What is the pseudocode  about?

Pseudocode:

Display a menu of options for the user to choose from: Distance, Mass, or Surface Temperature.Prompt the user to select an option.If the user selects "Distance":a. Display the distance from the sun for Mercury, Venus, Earth, and Mars.If the user selects "Mass":a. Display the mass for Mercury, Venus, Earth, and Mars.If the user selects "Surface Temperature":a. Display the surface temperature for Mercury, Venus, Earth, and Mars.End the program.

Therefore, the Flowchart:

[start] --> [Display menu of options] --> [Prompt user to select an option]

--> {If "Distance" is selected} --> [Display distance from sun for Mercury, Venus, Earth, and Mars]

--> {If "Mass" is selected} --> [Display mass for Mercury, Venus, Earth, and Mars]

--> {If "Surface Temperature" is selected} --> [Display surface temperature for Mercury, Venus, Earth, and Mars]

--> [End program] --> [stop]

Read more about pseudocode  here:

https://brainly.com/question/24953880

#SPJ1

Multimedia can be used in
a) schools
b) advertising
c) all of these

Answers

c) all of these

multimedia can be used in schools, specially when there' an educational videos.

C) all of these
Multimedia can be used for multiple purposes including school and advertising

What is the relationship model in this ER digram?

What is the relationship model in this ER digram?

Answers

Answer:

ER (ENTITY RELATIONSHIP)

Explanation:

An ER diagram is the type of flowchart that illustrates how "entities" such a person, object or concepts relate to each other within a system

Which of the following is NOT a computer hardware?

Question 2 options:

Monitor


Internet


Keyboard


Mouse

Answers

Answer:

Internet

Explanation:

please make my answer as brainelist

Where is the ‘Chart’ button in Powerpoint?

Answers

Answer:

The picture attached

Where is the Chart button in Powerpoint?

Would you expect all the devices listed in BIOS/UEFI setup to also be listed in Device Manager? Would you expect all devices listed in Device Manager to also be listed in BIOS/UEFI setup?

Answers

Answer:

1. Yes

2. No

Explanation:

1 Note that the term BIOS (Basic input and Output System) refers to instructions that controls a computer device operations. Thus, devices that shows up in BIOS should be in device manager.

2. Not all devices listed in devcie manager of a computer system will be listed in BIOS.

Imagine you're an Event Expert at SeatGeek. How would you respond to this customer?

* Hi SeatGeek, I went to go see a concert last night with my family, and the lead singer made several inappropriate comments throughout the show. There was no warning on your website that this show would not be child friendly, and I was FORCED to leave the show early because of the lead singer's behavior. I demand a refund in full, or else you can expect to hear from my attorney.

Best, Blake

Answers

By Imagining myself as an Event Expert at SeatGeek.I would respond to the customer by following below.

Dear Ronikha,

Thank you for reaching out to SeatGeek regarding your recent concert experience. We apologize for any inconvenience caused and understand your concerns regarding the lead singer's inappropriate comments during the show.

We strive to provide accurate and comprehensive event information to our customers, and we regret any oversight in this case.

SeatGeek acts as a ticket marketplace, facilitating the purchase of tickets from various sellers. While we make every effort to provide accurate event details, including any warnings or disclaimers provided by the event organizers, it is ultimately the responsibility of the event organizers to communicate the nature and content of their shows.

We recommend reaching out directly to the event organizers or the venue where the concert took place to express your concerns and seek a resolution.

They would be in the best position to address your experience and provide any applicable remedies.

Should you require any assistance in contacting the event organizers or obtaining their contact information, please let us know, and we will be happy to assist you further.

We appreciate your understanding and value your feedback as it helps us improve our services.

Best regards,

Vicky

Event Expert, SeatGeek

For more such questions Event,click on

https://brainly.com/question/30562157

#SPJ8

For what kind of shot is a fisheye lens most appropriate?

a. candid
b. panoramic landscape
c. large group
d. wildlife

Answers

Answer: B

Explanation: a fisheye lense is good for wide shots.

Describe three (3) software packages that can be used to capture data?

Answers

Answer:

SingleClick

SingleClick is an Optical Character Recognition (OCR) tool that can be used to capture machine produced characters in low volume ad-hoc capture applications and populating a line of business application.

OCR (Optical Character Recognition)

OCR as a technology provides the ability to successfully capture machine produced characters in preset zones or, full page. OCR systems can recognise many different OCR fonts, as well as typewriter and computer-printed characters. Dependent upon the capabilities of the particular OCR product, this can be used to capture low to high volumes of data, where the information is in consistent location(s) on the documents. 

ICR (Intelligent Character Recognition)

ICR is the computer translation of hand printed and written characters. Data is entered from hand-printed forms through a scanner, and the image of the captured data is then analysed and translated by sophisticated ICR software. ICR is similar to optical character recognition (OCR) but is a more difficult process since OCR is from printed text, as opposed to handwritten characters.

(copied from Google)

; )

What subject did this person struggle in, "I ain't never gonna nead to no this stuff."

Answers

Answer:

English

Explanation:

:D

Write a function pop element to pop object from stack Employee

Answers

The function of a pop element to pop object from stack employee is as follows:

Stack.Pop() method from stack employee. This method is used to remove an object from the top of the stack.

What is the function to pop out an element from the stack?

The pop() function is used to remove or 'pop' an element from the top of the stack(the newest or the topmost element in the stack).

This pop() function is used to pop or eliminate an element from the top of the stack container. The content from the top is removed and the size of the container is reduced by 1.

In computer science, a stack is an abstract data type that serves as a collection of elements, with two main operations: Push, which adds an element to the collection, and. Pop, which removes the most recently added element that was not yet removed.

To learn more about functional pop elements, refer to the link:

https://brainly.com/question/29316734

#SPJ9

(a) Discuss why the concepts of creativity, Innovation and initiative are important to conduct before one goes into business:

Answers

Answer:

Creativity, innovation and initiative are important concepts to consider before starting a business because they provide the foundation for success. Creativity is essential for coming up with new ideas and solutions to problems that can help a business stand out from its competitors. Innovation is necessary for taking those creative ideas and turning them into tangible products or services that customers will find useful. Initiative is needed to take action on these ideas, as well as the courage to take risks in order to make progress. Without creativity, innovation and initiative, businesses may struggle to stay competitive in their industry or even survive in the long run.

Explanation:

How do I make the most honey very quickly in Bee Swarm Simulator?

Answers

Answer:

Best ways to get honey faster are: Quests, LOTS of quests (specifically the lower tear ones like mama bear and black bear) Do your mobs Take FULL advantage of events Codes, they usually give honey and also give a capacity boost so you would have a good shot

Explanation:

please mark me brainliest

You have a Direct Mapped cache with following parameters
Cache Data Size (C) 128
Block Size (b) 4
After partitioning the address, which is 32 bits big, into Tag, Set, and Offset, how many bits will be in each field?

Answers

Yes... so it would be 134 seeing as, 128 and 4 both common denominators.. and the offset would be to the 40%


1. Write down a prediction.
What do you think will happen when a teaspoon
of salt is added to each jar?

Answers

When a teaspoon of salt is added to each jar, a prediction can be made based on our understanding of the properties and behavior of salt.

The addition of salt to each jar is likely to result in several observable changes. Firstly, the salt crystals will dissolve in the water, causing the water to become saline. This will increase the conductivity of the water, making it a better conductor of electricity.

As a result, if electrodes are placed in the jars and an electrical current is passed through the solution, the conductivity will be higher in the jars with salt compared to the ones without salt.

Secondly, the salt will also affect the taste of the water in each jar. The water in the jars with salt will have a distinct salty taste, while the water in the jars without salt will taste relatively plain.

Additionally, the salt may have an impact on the density of the water. Saltwater is denser than freshwater due to the dissolved salt particles. Therefore, the water in the jars with salt may exhibit a higher density compared to the jars without salt.

It is important to note that these predictions are based on general knowledge about the properties of salt and its behavior when added to water. The specific outcome may vary depending on factors such as the temperature of the water, the concentration of salt, and other variables. Experimental verification would be required to confirm the actual observations.

For more such questions on prediction visit:

https://brainly.com/question/29889965

#SPJ11

You are a sports writer and are writing about the world legend mushball tournament. And you are doing an article on the 2 wildcard teams the 2 teams with the best record who are not. Division? Leaders according to. The table shown which two teams are the wild card teams?

Answers

The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.

The table presented depicts a ranking of teams for a particular tournament. Wildcard teams are teams that do not lead their divisions but have the best records; they get to participate in the tournament. In this case, we will determine the two wildcard teams and their records based on the table.  

The wild card teams in the world legend mushball tournament are Team C and Team D.Team C and Team D are the two wildcard teams in the tournament. They are selected based on their record, as shown in the table. Wildcard teams are often determined by the records of the teams.

The two teams are not division leaders, but their records are impressive enough to get them to participate in the tournament. The teams' records are as follows: Team C with 8-3 record and Team D with a 7-4 record. These teams are the second-best teams in their respective divisions, and that is what gets them a spot in the tournament.

The wildcard teams offer a chance to other teams that may not have made the playoffs a chance to show their skills. The top team in each division automatically qualifies for the playoffs, and the other spots go to the wild card teams. Wild card teams are often the teams that show resilience and a fighting spirit; they do not give up easily and always give their best.

For more such questions on tournament, click on:

https://brainly.com/question/28550772

#SPJ8

Which validation method would you use for first name on a data form

Answers

Which validation method would you use for first name on a data form

what is the process for creating a new merge document for adress lables ? ​

Answers

Answer:

on Microsoft Word 2013 Mail Merge?

Explanation:

Open on the "Mailings" tab in the menu bar.

Click "Start Mail Merge."

Select "Step-by-Step Mail Merge Wizard."

Choose "Labels" and click "Next: Starting document."

Select the "Start from a template" option and click "Next: Select recipient."

How to write a C++ program that allows a user to enter their rating of the three movies in the Dark Knight Trilogy and then display each rating entered, the highest rating, the lowest rating, and the average of the ratings??

Answers

The program is an illustration of arrays.

Arrays are used to hold multiple values in one variable.

The program in C++ where comments are used to explain each line is as follows:

#include <iostream>

using namespace std;

int main(){

   //This declares an array of three elements for the three ratings

   int ratings[3];

   //This initializes the sum of the ratings to 0

   int total = 0;

   //The following iteration gets input for the three ratings

   for(int i = 0; i<3;i++){

       cin>>ratings[i];

       //This calculates the sum of all inputs

       total+=ratings[i];

   }

   //This declares and initializes the lowest and the highest ratings

   int lowest = ratings[0], highest = ratings[0];

   //This iterates through the array

   for(int i = 1; i<3;i++){

       //The following if condition determines the lowest rating

       if (lowest > ratings[i]){    lowest = ratings[i];        }

       //The following if condition determines the highest rating

       if (highest < ratings[i]){            highest = ratings[i];        }

   }

   //This prints the output header

   cout<<"The ratings are: ";

   //The following iteration prints the three ratings

   for(int i = 0; i<3;i++){

       cout<<ratings[i]<<" ";   }

   //The prints the highest ratings

cout<<endl<<"Highest: "<<highest<<endl;

   //The prints the lowest rating

   cout<<"Lowest: "<<lowest<<endl;

   //The prints the average rating

cout<<"Average: "<<total/3<<endl;

   return 0;

}

At the end of the program, the ratings entered, the highest rating, the lowest rating, and the average of the ratings are printed.

See attachment for sample run

Read more about similar programs at:

https://brainly.com/question/13261254

How to write a C++ program that allows a user to enter their rating of the three movies in the Dark Knight

List and briefly describe the major types of system in organization?​

Answers

1. operational-level systems

2. management-level systems

3. strategic-level systems

1. operational-level systems = support operational activities by keeping track of the elementary activities and transactions of the organization, such as assigning employees to tasks and recording the number of hours they work, or placing a purchase order. Operational activities are short-term in nature.

2. management-level systems = Management-level systems serve the monitoring, controlling, decision-making, and administrative activities of middle managers. Management-level systems typically provide periodic reports rather than instant information on operations.

3. strategic-level systems = Strategic-level systems (SLS) are information systems at the strategic level of an organization designed to address unstructured decision-making.

The major types of systems in the organization are:

Operational Level systemManagement Level systemStrategic Level system  

The classification of information systems based on organization levels is determined by the specialties and interests in some functional areas.

Operational-level systems assist operational managers by tracking the organization's basic operations and transactions, as well as the movement of materials in a factory. The primary function of systems at this level is to respond to routine inquiries and to record the movement of transactions via the organization. In general, information must be easily accessible, up to date, and accurate.

Management-level systems support middle managers' observing, regulating decision-making, and administrative operations. The primary question tackled by such systems is:

Are things running smoothly?

Management-level systems usually give regular reports rather than real-time operational data.

Strategic-level systems assist senior management in addressing strategic challenges and long-drawn patterns, both inside the organization and in the external world. Their primary focus is harmonizing external adjustments in the environment with current organizational capacity. 

Therefore, from the above explanation, we can conclude that we've fully understood the types of systems in the organization of information systems.

Learn more about information systems here:

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

While setting up annetwork segment you want to check the functionality cable before putting connectors on them. You also want to meaure the termination point or damange in cable which tool used

Answers

A network is divided into several parts (subnets) using network segmentation, which creates smaller, independent networks for each segment.

What is network Segementation?

Segmentation works by regulating the network's traffic flow. The term "network segmentation" should not be confused with "microsegmentation," which limits east-west communication at the workload level in order to lower an organization's network attack surface.

Despite having some uses, microsegmentation should not be confused with standard network segmentation.

A network is divided into several zones via network segmentation, and each zone or segment is independently managed. To regulate what traffic is allowed to pass through the segment and what is not, traffic protocols must be used.

Dedicated hardware is used to create network segments that are walled off from one another and only permit users with the proper credentials to access the system.

Therefore, A network is divided into several parts (subnets) using network segmentation, which creates smaller, independent networks for each segment.

To learn more about network, refer to the link:

https://brainly.com/question/15088389

#SPJ1

Other Questions
HEEEEEEEEEEEEEEELP!!!! is it bad to not eat ?i dont get hungry very much On November 1, 2020, Elle Supplies, Inc. purchased 2,000 shares of FashionWorks, Inc. for $30,000. FashionWorks shares are actively traded. The per share stock prices were: Find two numbers whose difference is 5 and sun of whose squares is 100. Drag and drop the correct person/group to their quote.Answer slots:Cherokee NationJohn MarshallAndrew JacksonGeorgia Farmer Give two pieces of independent evidence for a hot dense past to the universe, and describe the cosmic signal that confirms the universe was indeed like this about 14 billion years ago? Turn -1/8 into a terminating decimal pls step by step pls! Abby earns a monthly salary of $3462 plus 2% commission. Last month, she sold$5,250 worth of products. What was her gross pay? Abraham Lincoln and the Radical Republicans believed that freedom for enslaved people would require: Atwelerpaita diriaene in 2a30 of 12 mition Wheeler Corporation had retained earnings as of 12/31/10 of $15 million. During 2011 , Wheeler's net income was $7 million. The retained earnings balance at the end of 2011 was equal to $14 million. Therefore,. a Wheeler paid a dividend in 2010 of $8 million b Wheeler paid a dividend in 2010 of $2 million c Wheeler sold common stock during 2010 for $5 million Solve each equation for x 2x+6x=1000 What is the central idea of this passage Elizabethans do not understand infection and contagion as we do? If a manager has an expectation of ongoing inflation, this means she believes that: a. inflation has been negative but will soon turn positive. b. wages will rise. c. deflation will occur. d. cost of inputs will rise. A school age client recovers from a streptococcal infection. parents notice periorbital edema, dark urine with decrease output, and loss of appetite. the nurse plans which priority client goal? In the beginning of chapter 6 in the pearl what are Kino, juana, and coyotito doing? what is their plan HELP IN THE ENST % MINUTES AND ILL MARK YOU BRAINLY One endpoint of a line segment has coordinates represented by (x+2,14y). The midpoint of the line segment is (6,3).How are the coordinates of the other endpoint expressed in terms of x and y? an earth satellite moves in a circular orbit with an orbital speed of 6200 m/s draw the fbd for the satellite. find the time for one revolution of the satellite. find the radial acceleration of the satelllite in its orbit to develop a humanlike robot with a sense of touch, technological advancements must occur in what area? Please undertake a careful study of the Case No. 23 of your prescribed textbook, SouthwestAirlines in 2020: Culture, Values, and Operating Practices. For Part A, please study the firstnine pages of the case material, excluding the statistical Exhibits 1, 2, and 3.