The ________ command is one of the most commonly used command-line commands. It can be used to check IP connectivity between two network devices.

Answers

Answer 1

Answer:

ipconfig

Explanation:

That is the actual

command


Related Questions

Is this statement true or false? While in slide show mode, a click and drag is no different than a click. True false.

Answers

In slide show mode, it should be noted that a click and drag is the same as a click. Therefore, the statement is true.

It should be noted that slide show mode typically occupies the full computer screen. One can see how the graphics and animations will look during the actual presentation.

Rather than waiting and clicking, one can make the PowerPoint files open directly in the slide show mode. Therefore, it's not different from clicking.

Learn more about slideshow on:

https://brainly.com/question/25327617

Answer:

"True"

Explanation:

I took the test!

____________________ are protocols used by routers to make path determination choices and to share those choices with other routers.

Answers

Answer: Routing protocols

Explanation:

What changes the size of a video when played?
A
Adobe Flash

B
the player

C
video size

D
the browser

Answers

Answer:

D. the browser

Explanation:

it adjusts to the size of your device, including the browser.

hope i helped

D the browser I had a question like this

in python:
The mode of a list of numbers is the number listed most often. The median of a list of numbers is the value in the middle of the list if the list is arranged in order. For this software solution you will do the following:

Take 10 numbers as input from the user and display the number with the highest mode. If there is a tie, you will need to show all of those numbers.
Your program must create a user-defined function that takes an array of numbers as a parameter and returns the value that appears the most often in the array.
For those same 10 numbers your program must create a user-defined function that takes an array of numbers as a parameter and returns the value which is the median for those numbers.

please help!

Answers

Python can be used to implement central of tendencies such as mean, median and mode using the statistic module

The program in Python, where comments are used to explain each line is as follows:

#This imports the statistics module

import statistics

#This defines the function that calculates the mode

def calcMode(myList):

   #This prints the mode

   print(statistics.multimode(myList))

#This defines the function that calculates the median

def calcMedian(myList):

   #This prints the median

   print(statistics.median(myList))

#The main method begins here

#This initializes the list

myList = []

#The following iteration gets input for the list

for i in range(10):

   myList.append(int(input()))

#This calls the calcMode method

calcMode(myList)

#This calls the calcMedian method

calcMedian(myList)

Read more about similar programs at:

https://brainly.com/question/25026386

x = 9 % 2if (x == 1):  print ("ONE")else:  print ("TWO")

Answers

Answer:

ONE

Explanation:

It prints one because % is modulus, which is remainder division. It divides the numbers provided and returns the remainder of the division. 9 / 2 = 4 with 1 remainder, which leads us to our answer.

What is the interface of an app?
a storyboard software
the part the user sees
a sketch of your idea
a testing environment

Answers

Explanation:

An application interface or user interface ,is the set of features an application provides so that user may supply input to and recieve output from,the program.

What do software engineers use as tools to provide automated support for the development of the system

Answers

Answer: CASE

Explanation:

Megan owns a small neighborhood coffee shop, and she has fifteen employees who work as baristas. All of the employees have the same hourly pay rate. Megan has asked you to design a program that will allow her to enter the number of hours worked by each employee and then display the amounts of all the employees’ gross pay. You determine that the program should perform the following steps:

1. The text that is in the file is stored as one sentence. Incorporate the code that reads the file’s contents and calculates the following:
a. total number of words in the file
b. total average number of words per sentence
c. total number of characters in the file
d. total average number of characters per sentence


file name: employee_names.txt
file text:
George Thomas
Melinda Harris
Norah Jeddery
Jorge Ortiz
Samantha Gregory
Tanvi Gupta
William Edwards
Tania Gomez
Erica Sanders
Gracie Lou Freebush
Tony Montana
Obi-Wan Kenobi
Cruella De Vil
Marty McFly
Napoleon Dynamite

Answers

Answer:

she gives 10 dollars an hour

Explanation:

no

A numeric test score is to be converted to a letter grade of A, B, or C according to the following rules: A score greater than 90 is considered an A; a score between 80 and 90, inclusive, is considered a B; and any other score is considered a C. What code segments will assign the correct letter grade to grade based on the value of the variable score?

Answers

The code segment makes use of conditional statements.

Conditional statements in programming are used to make decisions

The code segment in C++ is as follows

if (score > 90) {

grade = 'A';

}

else if (score >= 80 && score < =90) {

grade = 'B';

}

else {

grade = 'C';

}

The above code segments take the score, make comparison, and then determine the appropriate letter grade.

Read more about code segments at:

https://brainly.com/question/20475581

II and III

Explanation:If it is the test i think it is

I is incorrect because it is saying that automatically it is set as C but if the score is over 90 then you get an A if it's anything else then it's a B. This is false because then your outcome will never be C. It would only be A or B.
II is correct because it starts off by saying that if the score is greater than 90 then you'll get an A if else then if your score is equal to or greater or equal to than 80 then you get B and then if anything else then it's a C. This incoorporates everything.
III is also true because it start off by saying if anything is below an 80 then you automatically get a C. If it's anything over than 80 then if it's equal to or less than 90 then you get a b and if it's anything else then you get an A. This also checks out which means it's true.
So the answer is II and III

if a granola bar has 5.7 grams of protein in it how many centigrams of protein does it contain?

A. 57

B. 0.57

C. 570

D. 5,700 ​

Answers

The answer is 570 hope it helps

A(n) ________ address is the address that external entities use when communicating with your network.

Answers

Answer:

IP adress

Explanation:

the IP adress is like your home address but for your computer. it tells the whatever is connecting where it's located so it can find where to send the data

Pls help me pls I’m struggling

Answers

Answer:

Forward(30)

Explanation:

To turn right you have to say right(Angle) and then forward(steps) to go that many steps in that direction

define the term malicious program

Answers

Malware, or malicious software, is any program or file that is intentionally harmful to a computer, network or server.

According to popular science Web sites, the scientific process of digital forensics normally starts with a(n) ________.

Answers

Answer:

a hypothesis that forms into a question.

Explanation:

What are two characteristics of switches? (Choose two.) * 1 point A. Switches identify the intended destination of the data that they receive B. Switches cause more data collisions than hubs b C. Switches are capable of sending and receiving data at the same time D. Switches send each packet to all of the computer that are connected to them.​

Answers

Answer:

A. Switches identify the intended destination of the data that they receive. And C. Switches are capable of sending and receiving data at the same time

Explanation:

Switches can be used as inputs (Analog), or outputs (digital). These inputs and outputs are signals that the switches send or receive- Or at least as push button switches... But the same applies to network switches.

Hope this helps! Have a great day!

This computer is used by touching your finger.
A Desktop
C. Mainframe
B. Laptop
D. Tablet​

Answers

Answer:

a tablet because it's controlled by the touch of a finger.

Can anyone help me out with my photography questions?

Answers

Verifying, The answer above me is correct

How do I type fast?

Give me an actual answer...

Answers

Practice!
And a good keyboard I recommend mechanical key boards
But the best way to improving your WPM is definitely practice one way you can practice is playing typeracer it’s pretty fun way

Hope this helps!
Brainliest is much appreciated!

Answer:

Use all 10 fingers and remember where the keys are.

Explanation:

This may take a while to get used to, but just let your hands flow across the keyboard. There really isn't a specific way to do it, but there are websites that'll help you.

Which of the following programming scenarios would benefit most from the use of lists?

Answers

The programming scenarios which would benefit most from the use of lists is: B. writing a program to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score).

Computer programming involves the process of designing and developing an executable instructions (codes) or collection of data to perform a specific task.

In Computer programming, a list can be defined as an abstract data type that represents a finite number of either ordered or unordered values. Thus, a list can be used to perform the following tasks:

Store data items.Delete data items.Add data items.

A computer program that is used to calculate statistics about a large set of exam scores (e.g highest/lowest score, median average score) would benefit most from the use of lists because it comprises a set of numerical values that can be sorted in either an ordered or unordered array.

Read more on lists here: https://brainly.com/question/15092271

who develop computer first?​

Answers

sorry bro...,......................................

Database management packages based on the _______________ model can link data elements from various tables to provide information to users.

Answers

Answer:

Database management packages based on the relational model can link data elements from various tables to provide information to users.

When you empty the trash on your computer what happens?

Answers

It goes to your recently deleted after deleting from your recently deleted a file is saved from that image or png for legal use only

It is saved from that image or png for lawful usage only after being erased from your recently deleted folder.

What is recently deleted folder?

Content that users delete from their accounts now automatically goes to Recently Deleted. The content may then be permanently erased. Or, if users change their minds, they can recover the information from the Recently Deleted folder and add it back to their profile.

The Recently Deleted folder is where files go after you delete them from iCloud Drive or On My [device]. Your files are deleted from Recently Deleted after 30 days. You have 30 days to get a file back if you decide against it or unintentionally erase it.

Photos and movies that you've moved to your Recently Deleted album can be permanently deleted files remain there for 30 days. View here for more information on removing photos.

Thus, It is saved from that image or png for lawful usage

For more information about recently deleted folder, click here:

https://brainly.com/question/1445705

#SPJ5

Please help explain Loops question. I will give brainliest.

Answers

Answer:

And 1 and 2 and 3

Explanation:

It is asked to display the 'and' every time, and the count is equal to 1 plus the previous count starting at zero, so it runs 3 times

Does anybody have the answer for 2.19.6 checkerboard for codehs??

Answers

Answer:

speed(0)

penup()

setposition(-200,-200)

pendown()

def draw_square_row():

color_value = 0

for i in range (10):

if color_value %2 == 0:

begin_fill()

color("red")

for i in range (4):

forward(40)

left(90)

forward(40)

color_value = color_value + 1

end_fill()

elif color_value %2 == 1:

begin_fill()

color("black")

for i in range (4):

forward(40)

left(90)

forward(40)

color_value = color_value + 1

end_fill()

def draw_square_row_2():

color_value = 1

for i in range (10):

if color_value %2 == 0:

begin_fill()

color("red")

for i in range (4):

forward(40)

left(90)

forward(40)

color_value = color_value + 1

end_fill()

elif color_value %2 == 1:

begin_fill()

color("black")

for i in range (4):

forward(40)

left(90)

forward(40)

color_value = color_value + 1

end_fill()

def move_up_a_row():

left(90)

forward(40)

right(90)

backward(400)

for i in range (5):

draw_square_row()

move_up_a_row()

draw_square_row_2()

move_up_a_row()

Explanation:

tell me if you get it right

In an attempt to reach an all-time record for its premier, ads for the highly anticipated Avengers: Endgame are run on all the major networks and cable stations across the country from 8:00 p.m. to 10:00 p.m., or during ________ time.

Answers

Based on the contextual situation, the cable stations across the country from 8:00 p.m. to 10:00 p.m., or during Late-fringe time.

What is Late-Fringe Time?

Late Fringe time is a term used in television that describes the television hours that follow the prime time.

Generally, the prime period is usually between 8:00 p.m. to 10:00 p.m., while the Late Fringe time is around 11 p.m. to 1 a.m.

Hence, in this case, it is concluded that the correct answer is "Late-Fringe period."

Learn more about Television hours here: https://brainly.com/question/1006994

which subunit of a heterodimeric cdk is the regulatory subunit?

Answers

The answer is cyclin subunit

A _____ is a network operating on a radio frequency (RF), consisting of radio cells, each served by a fixed transmitter.

Answers

Answer:

A cellular network is a network...

12. In Justify the text is aligned both to the right and to the left margins, adding extra space between words as necessary *
Maybe
False
True

Answers

[tex]\blue{<><><><><><><><><><><><><}[/tex]

[tex]\green{<><><><><><><><><><><><><}[/tex]

Answer:

False

Explanation:

Because, aligment the tex are aligned in the centre of the page.

[tex]\pink{<><><><><><><><><><><><><}[/tex]

[tex]\red{<><><><><><><><><><><><><}[/tex]

False
:)))))))))))))))))

which camera is interchangeable

freeform

hybrid

DSLR

point and shoot

Answers

Answer:

DSLR

Explanation:

Double check my answer

The ____ layer in the TCP/IP model is a direct equivalent to the Network layer in the OSI reference model.

Answers

Answer: Application

Explanation:

Other Questions
What does it mean for the brain to process information contralaterally? What about ipsilaterally? How does the corpus callosum play a role in theseprocesses (both contralateral and ipsilateral)? What happens when someone has a split-brain procedure? write the definition of a void function that finds the integer value of an ascii character every child has a right to education. To encourage children to attend school, the government of India launched the mid day meal scheme in 1995. FOR CLASS 8 3. You need to hire a taxi. Taxi A charges $9.25 plus $1.50 per mile. Taxi B charges $10.50 plus $1.25 per mile. Find the number of miles for which the total costs are the same for each taxi. Read these passages from the Article. Which one shows that olive trees are very strong?Press enter to interact with the item, and press tab button or down arrow until reaching the Submit button once the item is selectedA. There are about 800 million olive trees in the world today.B. Ekron had about 35,000 olive trees.C. Olive trees are able to survive fire and drought.D. The trees are tourist attractions, too. i need help with this question please help :(Which of the following defines a cash crop?any crop grown to be sold for direct saleany crop grown to be sold to other growersany crop grown to be sold as a raw materialany crop grown to be sold on the commodities market Translate to Spanish One cant use bicycles here Major cities all over the world are changing color. The tall gray buildings that make up the landscape of urban environments are becoming greener. They aren't getting a fresh coat of paint. Instead, their roofs are being covered in grass and small shrubbery. Many rooftops are beginning to look like nature parks. This change isn't just for fun. It is an attempt to add plants that can clean city air, absorb waste water, and generally add beauty to the city environment.Green roofs started in Europe and are now gaining a strong foothold in the United States. They are a way to add a little nature to the city environment. People plant vegetable gardens, flowers, and decorative grasses on their rooftops. One green roof in New York City is built on top of a processing and distribution facility. It is the largest green roof in the country. It has survived snow and rain, given employees a beautiful place for a lunch break, and helped clean the city air.It is more expensive to build a green roof than it is to lay asphalt or shingles. The basic green roof requires a frame and a waterproof membrane. It also requires gravel for drainage. Special material needs to be laid to retain moisture. Of course, soil for planting and a barrier that prevents roots from penetrating the building are also necessary materials for a green roof. Despite the extra cost, the trend is growing.The city of Chicago now has more green roofs than any other U.S. city. There are 7 million square feet of green roofs planted across the city. Toronto, Canada, is the first city in the western hemisphere to mandate green roofs on all new tall buildings. Green roofs are beneficial to the environment and the cities that build them. A recent study in Toronto suggested that if 75 percent of the flat roofs were greened, the city could save $37 million a year on storm water management and energy bills. If this is true, we may begin to see more and more green added to cities around the world.Why does the author include the point that there are 7 million square feet of green roofs planted across the city of Chicago?A. To paint a picture of what the green roofs in Chicago look like.B. To exaggerate how many green roofs there are in the city.C. To show that Chicago has not accepted the green roof trend.D. To prove that Chicago has the most green roofs in the United States. square pyramid has _______ spaces Question locate in image show working one kilogram of cheese costs 9.48chris buys 650 g of this cheese work out how much chris pays Two handymen can do a home repair in 2 hours if they work together. One of the men takes 3 hours more than the other man to finish the job by himself. How long does it take for each handyman to do the home repair individually? I'm 17 and wanna learn the piano is it too late, also if it's not how would I learn when I can't get a piano or keyboard because we can't afford it and my family doesn't support me? Mr. Smith collected 200 eggs from his chickens on Saturday. When he sorted the eggs by their sizes, he found out tha 60% of the eggs are extra-large. How many extra-large eggs did Mr. Smith collect from his chickens? need help ASAP pls Decide whether the sentence is gramatically CORRECT or INCORRECT as written.Tengo ganas de ir afuera.correctincorrect A CD has a diameter of 12.0 cm. If the CD is rotating at a constant angular speed of 200 revolutions per minute, then the tangential velocity of a point on the circumference is: Why was Douglas MacArthur placed in chargeof the rebuilding of Japan after WWII?A. He was known as a strict military leader who disliked Japan.B. He was a respected leader in the Pacific whom the Japaneseknew.C. He had already helped to rebuild Germany after WWII.D. He was running for president and needed the media coverage. Qu dificultades experimentaron los jvenes? Tuvieron problemas armando la carrocera. Answer A: Tuvieron problemas armando la carrocera. A No encontraron piezas para ensamblar el vehculo. Answer B: No encontraron piezas para ensamblar el vehculo. B Se dieron cuenta que el motor no funcionaba. Answer C: Se dieron cuenta que el motor no funcionaba. C No disponan de las herramientas necesarias. Mr. Bloss made 36 out of 48 free throws while practicing for basketball. What percent of his free throws did he make?