what if the result of conectivity testing is 100%Loss?Explain.​

Answers

Answer 1

Answer:

If you have a 100% packet loss, it means that all packets get lost between certain hops on your connection. Which, in turn, renders you unable to reach the destination server


Related Questions

Explain the process of a for loop and how it is used in code

Answers

Ex:

FOR Count= 1 TO 50

.......................

Body

......................

NEXT

Next keeps incrementing count by 1

Hope it helps

All _______ that store more than one piece of data ​

Answers

Answer:All data structure that store more than one piece of data ​

.

Explanation:

Can someone urgently help me with my java code (I WILL GIVE BRAINLIEST)?! Ive been working on it for hours and its not working! (please give an actual answer...)

*examples of required output at the bottom*

code: public class CircularList
{
private ListNode head;
private ListNode tail;
private int size;







public CircularList()

{

head = tail = null;

size = 0;

}





public int size()

{

return size;

}





public boolean isEmpty()

{

return (size == 0);

}





public int first()

{

if (head != null) {

return head.getValue();

}

return -1;

}




public Integer last()

{

if (tail != null) {

return tail.getValue();

}

return -1;

}



public void addFirst(Integer value)

{

head = new ListNode(value, head);

if (tail == null) {

tail = head;

}

size++;

}





public void addLast(Integer value)

{

ListNode newTail = new ListNode(value, null);

if (tail != null) {

tail.setNext(newTail);

tail = newTail;

} else {

head = tail = newTail;

}



size++;

}





public void addAtPos(int pos, Integer value)

{

if (pos == 0) {

addFirst(value);

return;

}

if (pos <= 0 || pos > size) {

return;

}

if (pos == size) {

addLast(value);

return;

}



ListNode ptr = head;

for(int i=0; i = size) {

return retVal;

}

if (pos == 0) {

return removeFirst();

}

ListNode ptr = head;

for(int i=0; i
ptr = ptr.getNext();

}

retVal = ptr.getNext().getValue();

if (pos == size-1) {

tail = ptr;

tail.setNext(null);

} else {

ptr.setNext(ptr.getNext().getNext());

}



size--;

return retVal;

}





public int findNode(Integer find)

{

ListNode ptr = head;

for(int pos=0; pos
if (ptr.getValue() == find) {

return pos;

}

ptr = ptr.getNext();

}

return -1;

}




public void rotate()

{

addLast(removeFirst());

}




public String toString()

{

String output = "";

ListNode iter = head;

while(iter != null) {

output += String.format("%d ", iter.getValue());

iter = iter.getNext();

}

return output;

}



}

size = 6 first = 50 last = 60
50 20 10 40 30 60

removeFirst = 50
size = 5 first = 20 last = 60
20 10 40 30 60

removed = 30
size = 4 first = 20 last = 60
20 10 40 60

size = 4 first = 20 last = 60
20 10 40 60

found at -1
removed = -1
size = 4 first = 20 last = 60
20 10 40 60

size = 4 first = 10 last = 20
10 40 60 20

Answers

Answer:

code 345code 4537

Explanation:

All organizations need good quality cybersecurity to ensure _____. Select 4 options.

operational security

operational efficiency

operational tangibility

operational profitability

operational continuity

Answers

Answer:

option 1

Explanation:

it is because they need better security for operational

Answer:

operational continuity

operational profitability

operational security

Explanation:

ANSWER ASAP!!!!!

Which statement is true regarding achievers?
A.
Achievers bring about a reduction in socializers.
B.
Achievers interact with the environment.
C.
Achievers cause grief to other players.
D.
Achievers like to interact with other players.
E.
Achievers like to collect points and earn rewards.

Answers

Answer:

The correct answer will be:

E. Achievers like to collect points and earn rewards.

Explanation:

During which phase of the writing process is it best to have other
people review your document
O Pre-writing
O Drafting
Revising
O Publishing

Answers

Answer:

the answer should be Revising

What is used to see the fine details of
graphics on a screen

Answers

Answer:

graphics card

Explanation:

int x = 42
fill in the missing part of the following code to divide x by 3 using the shorthand division operator ​

Answers

42/3 will be equal to 14

Question 1 of 10
When you edit your slide by making sure that that first paragraph is right
justified, what are you correcting?
A. Hyperlinks that no longer work
B.Inappropriate content
C.Grammatical mistakes
D.Text alignment
B. Inappropriate content
C. Grammatical mistakes
D. Text alignment
SUBMIT

Answers

Text alignment is the answer

When you edit your slide by making sure that that first paragraph is right justified, here, one is correcting Text alignment. The correct option is D.

What is Text alignment?

Text alignment is a paragraph formatting attribute that determines how text appears throughout a paragraph.

For example, in a left-aligned paragraph (the most common alignment), text is aligned with the left margin. Text in a justified paragraph is aligned with both margins.

Alignment or range is the setting of text flow or image placement relative to a page, column, table cell, or tab in typesetting and page layout.

The type alignment option is also known as text alignment, text justification, or type justification.

Text alignment is corrected when you edit your slide by ensuring that the first paragraph is right justified.

Thus, the correct option is D.

For more details regarding text alignment, visit:

https://brainly.com/question/13423071

#SPJ7

HELP ME ASAP AND YIU GET THE POINTS
Use the drop-down menus to complete statements about multiple calendar options in Outlook.
The default multiple calendar view is
Overlay view will color-code multiple dates in
Calendar
include multiple users' calendars as a team

Answers

Answer:

The default multiple calendar view is

✔ side-by-side

.

Overlay view will color-code multiple dates in

✔ one view

.

Calendar

✔ groups

include multiple users’ calendars as a team.

Explanation:

Answer:

The default multiple calendar view is

✔ side-by-side

.

Overlay view will color-code multiple dates in

✔ one view

.

Calendar

✔ groups

Explanation:

When using e-mail for business purposes, employees should _____.


be brief

use spell check

use appropriate punctuation

write in all capital letters when the message is important

use correct grammar

send out jokes to increase employee morale

proofread messages

use extra exclamation marks to indicate urgency

Answers

Answer:use spell check

proofread messages

use appropriate punctuation

be brief

use correct grammar

Explanation:

a___ is a placeholder where you can enter text to manipulate and give new graphical effects.​

Answers

Answer:

A "text box" is a placeholder where you can enter text to manipulate and give new graphical effects

The following statements describe the use of graphics in presentations.

Graphics should be large enough to be seen by the audience.
Graphics should be used on every slide.
Graphics should be used when they are relevant to the content.
Many graphics will make a boring presentation interesting.

Select all that apply

Answers

Answer:

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

Explanation:

Presentation can be defined as an act of talking or speaking formally to an audience in order to explain an idea, piece of work, project, and product with the aid of multimedia resources, slides or samples.

PowerPoint application refers to a software application or program designed and developed by Microsoft, to avail users the ability to graphically create various slides containing textual and multimedia informations that can be used during a presentation.

Some of the features available on Microsoft PowerPoint are narrations, transition effects, custom slideshows, animation effects, formatting options etc.

Hence, the following statements describe the use of graphics in presentations;

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

Answer:

I. Graphics should be large enough to be seen by the audience.

II. Graphics should be used when they are relevant to the content.

Explanation:

PLS HELP! Prompt
What is exporting?

Answers

Answer:

spread or introduce (ideas and beliefs) to another country.

Explanation:

Exporting is sending goods or services to another country for money. For example, Japan exported $16 million worth of mussels, meaning they sold $16 million worth of mussels to another country. Hope this helps!

Helppppp plzzzz it's computer science helpp plzzz

Answers

1. String

2. "is assigned to"

If a coach sent a weekly update to her team every week, it would be to her benefit to create a _____ to expedite the process.

confidential group
contact group
custom contact
networked group

Answers

Answer:

contact group

Explanation:

Answer:

contact group

Explanation:

Which is not a unit of Personal Computer?

Answers

Generally a system unit of personal computer do not contain modem

Discuss two business information systems that are used in two different sectors in a modern economy.

Answers

Explanation:

Two business information systems that are used in two different sectors in a modern economy are:

Transaction Processing System (TPS):

The Transaction Processing System (TPS) is a type of data system for capturing, storing, updating and recovering a company's data operations. Transaction systems often try to provide consistent response times to requests even if this is not as important as in real-time systems.

Management Information System (MIS)

MIS is the study of persons, technological systems and associations between them. Management Information Systems (MIS) Professionals at MIS allow businesses to profit maximally from staff, facilities and business process expenditure. MIS is a field of people with a focus on technological support.

Mention the usage of crop concept in ms-word​

Answers

Answer:

Every image editing software has a crop tool that allows you to trim or eliminate the edges of an image. Cropping tools in Ms.word allow you to hide portions of picture that you do not want to be displayed in the final result.

[tex]\huge\underline\mathbb\pink{ANSWER:}\\\\[/tex]

Every image editing software has a crop tool that allows you to trim or eliminate the edges of an image. Cropping tools in Word allow you to hide portions of pictures that you do not want to be displayed in the final result.

[tex]\\\\\\\\[/tex]

HOPE IT HELPS

PLEASE MARK ME BRAINLIEST ☺️

I am doing a inquiry task for A.I. taking over coding I need answer for in the coding industry be ok with A.I. taking over their job. Any links to webs pages like this would be useful too

Answers

Answer:

hi! How are you? I’m sorry I really need points, but I hope you find the answer soon tho <3

Explanation:

libre office is what program​

Answers

I’m not 100% sure what this question is asking, but I believe the answer would be “an open-source office productivity software”.

PLS REPLY ASAP WILL MARK BRAINLIEST

Answers

Answer:

I replied ...?

Explanation:

He removed vertical borders, kept only vertical borders for the header and the totals. He also added shading to the rows.

where can i make an animation for free?

Answers

Answer:

I've heard of flipabook and apparently that's good for simple animations

Explanation:

Hope that helped! Have a nice day!

In honor of Black History Month, write an essay about a black person who has inspired YOU in some way. This person does not have to be famous, it can be a coach, a pastor, or family friend. This essay must be 10 sentences or more.​

Answers

Answer:

I will be talking about Jackie Robinson. Robinson was known for playing baseball with the Brooklyn Dodgers from 1947 to 1956, I will share a few of his other accomplishment.

In 1935, Robinson graduated from Washington Junior High School and enrolled at John Muir High School Recognizing his athletic talents, Robinson's older brothers Mack (himself, an accomplished athlete and silver medalist, at the 1936 Summer Olympics) and Frank inspired Jackie to pursue his interest in sports.

At Muir high school , Robinson played several sports , football, basketball, track, baseball and tennis. He played shortstop and catcher on the baseball team, quarterback on the football team, and guard on the basketball team. With the track and field squad, he won awards for the broad jump.

In 1936, Robinson won the junior boys singles championship at the annual Pacific Coast Negro Tennis Tournament.

He earned a place on the annual baseball tournament all-star team,

In late January 1937, the News newspaper reported that Robinson "for two years had been the outstanding athlete at John Muir, starring in football, basketball, track, baseball and tennis.

As Jackie was encouraged to move forward by his brothers Mack and Frank. Today, his accomplishments inspires me to keep moving forward.

Explanation:

round 74,361 to the nearest 10​

Answers

Answer:

74,400 i think

Explanation:

A computer game picks a random number between 1 and 100, and asks the player to guess what the number is. If the player makes a correct guess, the game congratulates them, and stops. If the player does not make a correct guess, the game tells the player that their guess is either too high, or too low. If the player guesses with an answer that is not a number between 1 and 100, an error message is displayed. The game continues to give the player chances to guess, until the player guesses correctly. You are going to plan an interactive program to implement this game. do this using scratch

Answers

Answer:

In Python:

import random

computerguess = random.randint(1,101)

userguess = int(input("Take a guess: "))

while not (userguess == computerguess):

   if userguess<1 or userguess>100:

       print("Error")

   elif not (userguess == computerguess):

       if userguess < computerguess:

           print("Too small")

       else:

           print("Too large")

   userguess = int(input("Take a guess: "))

print("Congratulations")

Explanation:

This imports the random module

import random

Here, a random number is generated

computerguess = random.randint(1,101)

This prompts the user for a guess

userguess = int(input("Take a guess: "))

The following loop is repeated until the user guess correctly

while not (userguess == computerguess):

If user guess is not between 1 and 100 (inclusive)

   if userguess<1 or userguess>100:

This prints error

       print("Error")

If the user guessed is not correct

   elif not (userguess == computerguess):

If the user guess is less

       if userguess < computerguess:

It prints too small

           print("Too small")

If otherwise

       else:

It prints too large

           print("Too large")

This prompts the user for a guess

   userguess = int(input("Take a guess: "))

The loop ends here

This prints congratulations when the user guess correctly

print("Congratulations")

Complete the sentence.

involves placing a device on the network that captures all the raw data in the network traffic to try to find something valuable
A. Dumpster diving
B. Packet sniffing
C. Social engineering
D. Phishing

Answers

Answer:

D. Phishing

Explanation:

Answer: B. Packet sniffing

Explanation:

right on edge

Which software documentation guideline did the IEEE establish?
A.
Avoid spelling errors.
B.
A glossary should be present to define technical terms and acronyms.
C.
The font has to be in black.
D.
Documents should not have page numbers.

Answers

Answer:

B

Explanation:

I am big brain

Describe how checksum detects errors​

Answers

Answer:

For error detection by checksums, data is divided into fixed sized frames or segments. Sender's End − The sender adds the segments using 1's complement arithmetic to get the sum. It then complements the sum to get the checksum and sends it along with the data frames.

What is the theory of relativity? How does it relate to the creation of electricity through solar energy?

Answers

Answer and Explanation:

The theory of relativity applies to all physical phenomena in the absence of gravity and explains the law of gravitation and relation to nature's force. Solar energy is regarded as the power source of the future and uses sunlight to generate electricity. It is a potential solution to the ongoing environmental problem and caused by the overuse of Earth resources. Solar energy is a power source and widely used by the scientific community. It is a potential solution to the environmental problems caused by Earth resources and high fossil fuel conception. The theory of relativity proposes a fundamental and straightforward presentation of fission with some application. Some characteristics of solar energy produced from the fusion process and deducted from the same equation. Relativity determined physics law for all non-accelerating observers and showed the speed of light within a vacuum. Space and time were interwoven in the single continuum.

Other Questions
A trial balance consists of:Multiple ChoiceA two-column financial statement intended for distribution to interested parties outside the business.A two-column schedule showing the totals of all debits and of all credits made in journal entries.A two-column schedule listing names and balances of all ledger accounts.A two-column schedule of all debit and credit entries posted to ledger accounts. Ensemble Co.Unadjusted Trial BalanceFor the Year Ending December 31, 2018Debit BalancesCredit BalancesCash42,900Accounts Receivable123,500Prepaid Insurance27,000Equipment300,000Accounts Payable52,000Salaries Payable4,800Common Stock40,000Retained Earnings137,200Dividends5,000Service Revenue1,216,000Salary Expense660,000Advertising Expense275,000Miscellaneous Expense16,6001,801,5001,801,500How does grading work?Ensemble Co.UNADJUSTED TRIAL BALANCEACCOUNT TITLEDEBITCREDIT1 Cash2 Accounts Receivable3 Prepaid insurance4 Equipment5 Accounts Payable6 Salaries Payable7 Common Stock8 Retained Earnings9 Dividends10 Service Revenue11 Salary Expense12 Advertising Expense13 Miscellaneous Expense14 Totals 8+4+10-4?? how to do ?? re write these using the suffix -itoPLEASE HELPP1. perros2. hermana3. culebra4. hijo5. conejos 8. By using coupons, Mary Jo is able to decrease the retail price of her groceries, g, by $125. you find the nroduct of the base and height and then divide by 2. Expression. what is the surface area? PLEASE HELP WILL MARK BRAINLY A layer of ethyl alcohol (n= 1.361) is on top of the water ( n=1.333) . At what angle relative to the normal to the interface of the two liquids is light totally reflected please help me ASAP...have a good day Read this excerpt from Exploring the Titanic.Soon I had spent more hours in the deep ocean than any other scientist. But the Titanic continued to haunt me. My oceanographic colleagues scoffed at my Titanic dreams and told me I should devote myself to "real" scientific projects.Colleagues aresubjects in a science experiment.friends who have different interests.fellow workers in the same field of study.family members who support each other Which sentence from the PRO article supportsthe idea that many people would prefer to live inthe suburbs rather than in big cities?One of the most important is that many of thebest jobs are in big cities.B Crime and pollution remain far worse in citiesas well.Traveling from suburb to city center willbecome much less tiring.DInstead, they will stay put in nearby suburbs. roles performed by managers How did economic opportunities for free African Americans differ from enslaved African Americans during the early 1800s?A. Free African Americans could own property and had some rights, while enslaved African Americans had no rights at all.B. Free African Americans had no rights to own property but could operate a business, while enslaved African Americans had no rights at all.C. Free African Americans had the right to own businesses and property, while enslaved African Americans only had the right to own personal property.D. Free African Americans could own and operate their own business, while enslaved African Americans could not own but could only operate a few small types of businesses. what is 349/36 + 34x6 Correct form of Ser/Estar in the blank. Will give brainliest! Mary and John are choosing fish for dinner for their children. What should they choose? what is the volume of a sphere with a diameter of 6.3 rounded to the nearest tenth Conflict can have a ripple effect touching others who are not directly engage in the conflictTrue or false The Attack on Pearl Harbor Short answers What case overturned this decision i will give you brainliest whoever answers correct first!!