What are the safety precautions related to networks?

Answers

Answer 1

Answer:

The following are some of the common safety precautions mentioned in the Network+ objectives.

...

Installation Safety

Lifting equipment. When lifting equipment, it's best to lift with your legs, not your back. ...

Rack installation. ...

Placement. ...

Tool safety.

Answer 2

Answer:

*we should not give details about ours bank, otps etc


Related Questions

What are some ways you can give staying off your phone a "boost" and make it easier to do?

If you're trying to break a bad habit, what are some things you can do so that you don't slip back into old ways?

Please help this is due today and I really need help.

Answers

Answer:

go do something outside and leave your phone inside to charge

Explanation:

what is out put following code?​

Answers

Answer:

please provide full picture of the code and then i will be able to help u

Explanation:

Answer:

Do you have the entire question?

Explanation:

can enyone tell me a book to read thats eazy and for 4th grade hurry and help me PLEASE

Answers

Answer:

Try any Geronimo Stilton books. They are the ones with the brownish orange mouse with glasses.

James and the Giant Peach

Explanation:

easy to read for forth graders.

What are the steps for inserting an internal link?
1. Type into a cell.
2. Then, select the that includes the cell you wish to link to.
3. Next, click the cell you wish to reference.
4. Finally, press .

Answers

Answer:

=

Worksheet

Ctrl + Enter

Explanation:

Answer:

=, worksheet, Ctrl+Enter

Explanation:

NARIO 1

Amy scheduled herself from 8:00 AM–1:00 PM Sunday through Wednesday. On Wednesday, she

needed to release her intervals from 11:00 AM 1:00 PM at the last minute. She serviced all of the

other time for which she posted. What was her overall Commitment Adherence percentage?

Answers

Answer:

85%

Explanation:

8:00 a.m - 1:00 pm = 5 hours

Sunday - Wednesday = 4 days

Total scheduled hours = 5 * 4 = 20 hours

Hours in adherence :

Sunday to Tuesday (3 * 5 hours) = 15 hours

Wednesday : (11:00 a.m - 1:00 a.m) = 2 hours

Total hours adhered = (15 + 2) = 17 hours

Commitment adherence percentage :

(Total hours adhered / total scheduled hours) * 100%

(17 / 20) * 100%

0.85 * 100

= 85%

hey Guys I wanted to have fun so I made a riddle first to solve gets the crown \

When John was six years old he hammered a nail into his favorite tree to mark his height. Ten years later at age sixteen, John returned to see how much higher the nail was. If the tree grew by five centimeters each year, how much higher would the nail be?

Answers

Answer:

how.much higher??? 5cm.

Explanation:

or unless it was a different approach-

then it would have gone 50 cm which is 19.6 inches

Which of the following represents a bit?

0

01010110

3F02C

12.356

Answers

Answer:

0

Explanation:

A bit is a single piece of information and the smallest unit that can possibly represented by a computer, like 1 or 0.

The one that represents a bit is 0. The correct option is A.

What is a binary digit?

A binary digit (bit) is the smallest unit of binary data that can be stored in a computer system.

A bit can only be in one of two states: on or off, which are frequently represented by ones and zeros. Which information is entered into and processed by the computer is determined by the combination of ones and zeros.

One of the four types of number systems is a binary number system. Binary numbers are basically represented in computer applications by merely two symbols or digits, namely 0 (zero) and 1 (one).

A bit is a binary digit, which is the smallest data increment on a computer. A bit can only hold one of two values: 0 or 1, which correspond to the electrical values off or on.

Thus, the correct option is A.

For more details regarding binary number, visit:

https://brainly.com/question/28222245

#SPJ2

Consider the following code segment

Answers

Answer:

D:

2

54

Explanation:

In line 3 Math.random() will return a number between 0 and 1, so the minimum is 3 (0*5+3=3), therefore it is impossible for line 4 to return the value 2

HTML code to display square bullets in an unordered list.​

Answers

Answer:

Find the source code below.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.

The complete code for the unordered list with square bullets is written below;

<! DOCTYPE html>

<html>

<head>

<title> Square bullets in an unordered list. </title>

</head>

<body>

<h1> My Favorite Subjects </h1>

<p> This is a list of my favorite subjects; </p>

<ul style =" list- style- type:square">

<li> Computer </li>

<li> Mathematics</li>

<li> Physics </li>

<li> History </li>

</ul>

</body>

</html>

Note: The code isn't indented because i'm not using an appropriate code editor.

Since we are creating a document with an unordered list, we would use the <ul> and </ul> parent tag while the child tag <li> and </li> sorts the list. Also, we would use the style attribute to specify the required inline style (square bullets) for the list.

Consider the following code segment - 3

Answers

Answer:

The answer is "Choice C".

Explanation:

In the above-given code, a 1D array "list" is declared that holds integer values, and it uses three print which can be defined as follows:

In a first print method, it uses the length method that holds the array length that is "9".In a second print method, it uses the array that prints the first element value of the array that is "22".In the last print method, it uses the array that holds the length of the array, which will give an error message that is "ArrayIndexOutOfBoundsException".   That's why only the choice C is  correct.

Who wrote Hamlet?

Brainliest for the right answer​

Answers

Answer:

William Shakespeare wrote hamlet

Explanation:

it’s wroten by a William Shekespeare

Could somebody please find the bugs and amend them? This question is worth 25 Brainly points!
---------------------------------------------------------------------------

#Tax Calculator with 4 bugs

salary = int(input("Please enter your annual salary: £"))

if salary < 30000
#Salaries under 30000 are taxed at 20%
tax = salary * 0.2
elif salary >= 30000:
#Salaries over 30000 are taxed at 40% for anything over 30000
salary = salary - 30000
tax = salary * 0.4 + 6000
else:
#Salaries over 150000 are taxed at 45% for anything over 150000
salary = salary - 150000
tax = salary * 0.45 + 6400 + 48000


print("Earnings of £",salary,"will attract taxes of £",round(tax,2))
input("Press ENTER to quit")

Answers

line 4

if salary < 30000

error missing ":"

solution

if salary < 30000:

line 6

tax = salary * 0.2

error is missing identifier for tax

solution add identifier for tax on line 3

tax = 0.0

line 11

error syntax

solution is move tax = salary * 0.4 + 6000 to the right

tax = salary * 0.4 + 6000


How is an informal outline organized?

Answers

Answer:

An informal outline usually organizes information with bullet points. ... And even lower case letters (the lowercase letter O) are conventionally used in ASCII (text only) or other environments where list point characters are not available. When writing by hand, bullet points can be drawn in any style

What is the significance of XML tags?
A.) They are self-descriptive.
B.) They are predefined.
C.) They are only computer readable.
D.) They are only human readable.

Answers

Answer:

your answer would be to ur question would be B

Answer:

It is self-descriptive

Explanation:

Plato Users

Please its argent and I will give you BRAINLIEST ANSWER 6. How would you confirm that a colourless liquid given to you is pure water?

Answers

Answer:

Evaporate the colourless liquid on a low flame. If no residue is left and boiling exactly at 100 ºC then it is pure water otherwise not.

Explanation:

Write a program code which asks for 80 numbers between 100 and 1000 to be entered.
It checks that the numbers are in the correct range, and stores them in an array. It
counts how many of the numbers are larger than 500 and then outputs the result when
the program is finished.

Answers

Answer:

If you are using Python,

```count = 0

for i in range(0, 79):

a = int(input("Input a number: "))

if 100 <= a <= 1000:

 if a > 500:

  count += 1

else:

 print("Please input a number between 100 and 1000!")

 i -= 1

print(count)```

Explanation:

count refers to the number of 500s and above,

the for loop is required for the program to loop 80 times,

a is the input collected,

the nested if is to check whether the number is above 500 and the if is used to check if the number is between 100 and 1000 if not, it will output that you need to input a number between 100 and 1000,

the i-=1 is required to make sure that part wasn't counted.

and the last print is to output the number of numbers above 500

write the html code to get the following webpage
the solar system
ina solar system the planets move around a star. earth is a planet around sun .there are eight planets in a solar system . in order of increasing distance from the sun these are 1.mercury 2.venus 3.earth 4.mars 5.jupiter 6.saturn 7.uranus 8.neptune
save the html document as solarsystem.html

Answers

Answer:

<!DOCTYPE html>

<html>

<head> <title>webpage</title>

</head>

<body>

<h1>The Solar System</h1>

<p>In a solar system the planets move around a star. Earth is a planet around sun. There are eight planets in a solar system . In order of increasing distance from the sun these are: </p>

<ol>

<li>Mercury</li>

<li>Venus</li>

<li>Earth</li>

<li>Mars</li>

<li>Jupiter</li>

<li>Saturn</li>

<li>Uranus</li>

<li>Neptune</li>

</ol>

</body>

</html>

<!-- and save the file as solarsystem.html -->

EXPLAIN WHATS agri crop EXPLORATORY COURSE​

Answers

What is what ?? Can u say it correctly


What is the difference between iterative and sequential?

Answers

Answer:

iterative means to iterate, or "repeat" ex: 4,4,4,4,4

sequential means to increase with a constant ex:

1,3,5,7,9,11,13. the constant that the terms are incremented by is 2

Write a program code which asks for 80 numbers between 100 and 1000 to be entered.
It checks that the numbers are in the correct range, and stores them in an array. It
counts how many of the numbers are larger than 500 and then outputs the result when
the program is finished.

Answers

Answer:

my hearth start with a piece of demon cant let me go!

Assume there is an interactive math tutor. Many students take the math lessons online. At the end of each lesson, students have to attempt a test. What is the performance measure of this agent?

A.
count the number of students
B.
display suggestions for solving problems
C.
take input from the keyboard
D.
enable the student to attain maximum marks

Answers

Answer:

I think it is D

Explanation:

This is the goal, or the requirement for success.

Answer:

D. Enable the student to attain maximum marks

Explanation:

Correct on Clever

When designing a website, Claire creates a color palette for the web pages. How can the color palette help Claire design effective web pages?

Applying the color palette to the web pages can help Claire create ________ She can best use the color palette to ____________.

First blank:
A. Smooth and even surfaces
B. Depth in the design
C. Consistency and unity

Second blank:
A. illustrate content on the screen
B. add interactive elements
C. highlight important content ​

Answers

consistency and unity
highlight important content

The idea that money, language, education, or infrastructure creates a gap between those who have access to information technologies and those who do not.

Answers

Answer:

The Digital Divide, or the digital split, is a social issue referring to the differing amount of information between those who have access to the Internet (specially broadband access) and those who do not have access

Explanation:

How should you best communicate
this information to Keisha?
(Select all that apply.)

Answers

Answer:

if you use keyword in your search you will have a better chance of what you are finding.

Explanation:

If you like undertale and their AU's pls be my friend

Answers

Answer:

Alright

Explanation:

Answer:

okie

Explanation:

I made an Au called sc-tale.

imma follow u now

plz give me brainliest T-T i have none

(03.05 LC
A reliable textbook should contain references to (6 points)
O only primary sources
mainly secondary sources
O both primary and secondary sources
no more than two of each type of source
Helpppp plzzzzz

Answers

Answer:

B. both primary and secondary sources.

Explanation:

Information can be defined as processed data that can be used to perform specific tasks or job functions. The two (2) main sources of information are;

I. Primary source: this type of source comprises of raw information that are first-hand in nature i.e a personal experience or witness of an event (occurrence).

II. Secondary source: this type of source relies solely on the primary source for its information and as such it comprises of second-hand information provided by other authors or researchers.

A reliable source is an information source that is unbiased, trustworthy and reliable. Also, a reliable source is typically backed up by evidence from various information channels and should be accurate.

In order to validate a reliable source, it is necessary that the information provided is checked against other credible sources to verify its accuracy.

This simply means that, if you got an information (data) from any source such as newspaper, website, television, books, radio or anywhere else, you should confirm the credibility and reliability of these information by verifying from one or more sources listed in the reference.

Hence, a reliable textbook should contain references to both primary and secondary sources.

Additionally, references are citations or links to all of the sources from which an author, writer, or researcher got his or her information from. One important thing that references show a reader is that the information is well researched.

Am I correct? Please help

Answers

Answer:

In my opinion, yes you're correct!

Explanation:

What will the following program display in the console?

var sum = 0
for(var i = 0; i < 5; i++){
sum = sum + i
}
console.log(sum);

A. 15
B. 10
C. 5
D. 0

Answers

Answer:

b- 10

Explanation:

The display of the given program will be 10. The correct option is B.

What is console?

The text entry as well as display device for systems management messages, particularly those from the BIOS or boot loader, the kernel, the init system, and the system logger, is one definition of system console, computer console, root console, operator's console, or simply console.

The console on modern small computers is usually the computer's attached monitor and keyboard.

The console on many older computers is an RS-232 connection to a terminal, such as a DEC VT100. This terminal is kept in a secure room and is constantly monitored by the minicomputer's operators.

The given program's display will be ten, as the for loop will continue till the number is less than 5.

Thus, the correct option is B.

For more details regarding console, visit:

https://brainly.com/question/28702732

#SPJ6

Select the correct answer.
Which graphical element of a spreadsheet does this image represent?

A. column chart
B. scatter plot graph
C. pie chart
D.bar graph

Answers

Answer:

Pie Chart

Explanation:

It’s a pie chart :)

Explanation: pie charts of course look like pie: a circle that has been cut into pieces

a worksheet can have a maximum of number of rows​

Answers

1,048,567 rows


I don’t really understand the question

Although you're limited to 255 sheets in a new workbook, Excel doesn't limit how many worksheets you can add after you've created a workbook. The only factor that ultimately limits the number of worksheets your workbook can hold is your computer's memory.

A Range is a group of selected Cells in an Excel worksheet. A Range can be rectangular or square in shape. You can select a Range by left-click, drag and release the mouse over the cells you want to select. ... Similarly, a Range in Excel worksheet is identified by a Range Address.
I believe it’s 1,048,567
Other Questions
I am confused pls help don't know what to do don't just answer it pls you can just write how you solve it Determine whether the graph of f(x) is a sinusoid.f(x) = sin 4piX - cos 10piXb.noa.yes what is 25 divided by 465d how was the print industry during the Glided age? 1 paragraph minimum. How did Enlightenment thought contribute to the start of the FrenchRevolution?A. It argued that power should belong to aristocrats rather thankings.B. It challenged the traditional belief that monarchs had divineauthority.C. It suggested that popular revolutions should always be peaceful.D. It claimed that constitutional monarchy was the best form ofgovernment.SUBMIT in triangle ABC with vertices A(4,5),B(-2,1) and C(0,3),E and F are midpoints of sides AB and AC resp . then, find coordinates of E and F In an art class, 40% of the members are boys. 20% of the boys and 50% of the girls have learnt how to play a piano. If there are 150 members in the class, how many members have learnt to play piano? what did you put for #3? Write an equation with a slope of 4.4and a y-intercept of 6.8A. =4.46.8B. =4.4+6.8C. =6.84.4D. =4.4+6.8 Hey guys looking for feedback and any mistakes on a small writing prompt that someone wrote for me. August 1st, 1876. One century after the United States signed the Declaration of Independence, Colorado was admitted into Union as the 38th state. What many people didnt realize until many years later, was the beauty of this magnificent state. It is filled with mountains, rivers, lakes, and so much more. The days began with a beautiful sunrise and ended with an equally beautiful sunset. The winters were full of snow and the summers full with life. This is why I chose to make this beautiful state my home, at the age of thirty three. My family and I moved to a small town called Aspen. For the first few years it was amazing. In the winter my family and I would go snowboarding, and in the summer we would take long walks in the beautiful mountains. But it wasnt like this forever. In February of 1995, my wife was struck with cancer. The doctors said she was not going to make it and to prepare for her death. With great sorrow, I made preparations. Since I could no longer afford our house, I got ready to sell it. My wife got her will in order and she began to make peace with herself as she fought her inevitable fate. Family was always coming over to bring us food and comfort. My wife died in August of 1995. With heavy hearts, we sold the house and made way for Vail to start a new life. This town was similar to Aspen, but was filled with new people and new beginnings. I decided to write a book, wanting a new hobby to take my mind off my wife. I had always been a decent writer, but my wife dying brought new light to writing. I spent hours tucked in my office working on my book. In one of the rare moments that I was out, I met someone. We met at a coffee shop, when she came up to me and introduced herself. She said her name was Isabel and asked me about my life. We talked for hours that day about my life and hers. We soon began to meet every Saturday at this small coffee shop. She would listen to my life story and then I would listen to hers. Every weekday I would work on my book, excited to see her on Saturday. Soon we started dating. It was then that I truly started to heal. A year later we decided to get married. Our marriage was one of the happiest days of my life and at that moment I knew that my life was filled with many more pleasant days. I completed my book just months after. The book is called Passing of The Dead. In this book I talk of all the hardships in my life. I talk of the sorrow my dead wife brought me. Of the gaping hole she left in me with her death. But then I talk about healing. How Isabel showed me to make the hole smaller. How she showed me to fill the sorrowful hole of her death with the memories of our past. In the last chapter of the book I move on to one final, important lesson that I learned. This last chapter is all about finding optimism and being hopeful for a better future. I was lucky when I decided to move to Vail. I was lucky when Isabel came up to me that day. Because of my hope and optimism, I let Isabel in my life. And my life has once again returned into a state of happiness, a state that I thought I would never see again. So I come here today, asking all of you one favor. Next time you feel that you are in pain, do not dwell in your sorrows. Do not only think of the painand dwell in it. Instead, think of all the happy memories before the pain. Be hopeful and optimistic of a better future. Because one day, you will look back on your moments of sorrow and be thankful. Thankful that you experienced everything. Because those experiences are the hands that mold you. And if you dwell in the pain, it will mold you into a lesser person than if you had not done so and instead been optimistic and hopeful. Why were the terracotta soldiers created? - Which occurrence is the result of the cell cycle in unicellular organisms?A. cell repairB. cell growthC. cell replacementD. cell reproduction Can someone help with this? (Picture above) A school has 8 periods at day each of 45 minutes duration. How long would each period be ? The school has 6 periods a day? (assuming the number of school hours to be the same) What is the per capita GDP of the United States? Be sure to indicate the calendar year that this information represents. Which histograms are approximately symmetric and bell shaped? I need help I don't understand 10. Walter makes a cable payment of $84 each month. Which tablerepresents the relationship between m, the number of months,and c, the amount he has paid for cable for that length of time? why does deforestation occur Tommy's my little brother, and he's in the first grade. He's fearless. One day, he wore a cape to school. I told him everyone would laugh at him. The next day, five other boys came wearing capes. complete the srory