what is networking??????????????????????

Answers

Answer 1

Answer:

the activity or cycle of collaborating with others to trade data and create proficient or social contacts.

Explanation:

<3


Related Questions

What is bill Gates passion?

Answers

Computing. He makes software design and that revolves around computing

tO CrEaTe ToiLeT. Sorry, the real answer is to change the world via technology, and to keep on innovating.

I hope this helps, and Happy Holidays! :)

what is hardware ? Name the four functional hardware of a computer system Define each of them with the help of a diagram​

Answers

Answer:

There are four main computer hardware components that this blog post will cover: input devices, processing devices, output devices and memory (storage) devices. Collectively, these hardware components make up the computer system.

The number of binary digits required to count 10010 is called _________​

Answers

Computer language code for computer people to hack and code

What is the "middle" value for the "vertical-align" property based on?
a) a line's x-height
b) the height of the age
c) the shortest element on a line
d) the number of elements on a line

Answers

Answer: a) a line's x-height.

Explanation: The middle of the parent element is calculated by taking the x-height, halving it, and adding it to the baseline. Therefore, the "middle" value for the "vertical-align" property must be also based on the line's x-height.

if your tired but still need to proofread your document,what should you do?
proof read it anyway
scan through it quickly
submit your work as is
walk away and come back later

Answers

Answer:

If i were to choose one i would, come back to it later. But the best thing to do is have somebody else proofread your essay, doc, or anything else, because its the best thing to have a second pair of eyes so they can suggest what you could fix or change or any opinions on your document. Not sure why you need this but i hope it helps <3

Have a great day <33 -Blazetoxic123

Answer:

A

Explanation:

In the following code snippet, what are the local variables of the function modByTwo?

function addFive(x){
var five = 5;
var result = x + five;
return result
}

function modByTwo(x){
var result = x % 2;
return result;
}


result and x


x only


five, result and x


result only

Answers

Result is the local variable because it can only be accessed and determined by the main functions which are addFive and modByTwo. A local variable is a variable that can only be accessed by its scope. Remember to like if this helped

In the following code snippet, the local variables of the function modByTwo are the result and x. The correct option is a.

What are local variables?

A local variable is one that can only be accessed from within a certain section of a program. These variables are often declared or defined within a subroutine and are local to that routine.

Local variables can alternatively be thought of as parameters that have values. The duration of the program's execution is reflected in a global variable. When the function is called, a local variable is created, and it is removed after the function has run its course. All the program's functions have access to it at all times.

One particular sub-program of a bigger main program declares a local variable. The values of local variables will be stored in RAM while this sub-program is running.

Therefore, the correct option is a, result, and x.

To learn more about local variables, refer to the link:

https://brainly.com/question/16978529

#SPJ2

Information stored on CD-ROM disc must be read and then erased.True or false?​

Answers

Answer:

False

Explanation:

What is best for a busy student to do for better results in school?

increase extracurricular activities
transfer to a new school
manage time and stress
manage and budget money

Answers

Answer:

Manage time and stress

Explanation:

This is obvious

Answer:

manage time and stress

Explanation:

the person above or below me was correct.

What is the difference between machine learning and artificial intelligence

Answers

Answer:

Artificial Intelligence is the broader concept of machines being able to carry out tasks in a way that we would consider “smart”. ... Machine Learning is a current application of AI based around the idea that we should really just be able to give machines access to data and let them learn for themselves.

Which feature in PowerPoint is used to correct common capitalization and text formatting issues but can also be modified for more robust and personalized corrections?

Grammar Checker
Insights
Spelling Checker
AutoCorrect

Answers

Answer:

AutoCorrect: D on edge

Explanation:

Answer:

D.AutoCorrect

Explanation:

a software function that automatically makes or suggests corrections for mistakes in spelling or grammar made while typing.: a computer feature that attempts to correct the spelling of a word as the user types it The iPad boasts an autocorrect system that will try to figure out what you mean to type even when you don't quite tap the right keys.

What is the next line?
tupleA = (5, 20, 30, 40, 30)
tupleA.index(40)

The next line is

Answers

Answer:3

Explanation: it’s 3

Answer:

3

Explanation:

What are movies filmed before 1990's?

Answers

Answer: Once Upon a Time in the West (1968) PG-13 | 165 min | Western. ...

Cinema Paradiso (1988) R | 155 min | Drama. ...

Blade Runner (1982) R | 117 min | Action, Sci-Fi, Thriller. ...

2001: A Space Odyssey (1968) G | 149 min | Adventure, Sci-Fi. ...

Apocalypse Now (1979) ...

Chinatown (1974) ...

Stardust Memories (1980) ...

Le Notti Bianche (1957)

Explanation:

Samantha is looking for a lens that is lightweight and small, making it easy to transport. She doesn’t care about the lens being interchangeable nor does she need to zoom as she prefers to move physically closer to her subjects. She wants a simple lens that has the ability to produce a natural perspective. What kind of lens is likely best for Samantha?

Select one:
a. micro
b. zoom
c. telephoto
d. prime

Answers

Answer:

The correct option is;

d. Prime

Explanation:

A prime lens is a unifocal, or fixed-focal-length lens and it is referred to as the opposite of a zoom lens

The maximum aperture of ranges from f2.8 to f1.2, which are fast and have a creamy rendering of light that are out of focus, and also provide crispy image details, by making the most use of the light available and provide distinct combination of foreground and background images in pictures that give a crisp and visually pleasing appearance.

True or false binary code is a base ten system

Answers

Answer:

false it is a two base system

What percentage is considered an A+ (I am aware it varies based upon where you're from)?

Answers

hi! where im from (somewhere in the far southwest of the USA) a 96% or above is considered an A+

hope i helped!

What is the purpose of the Lookup Wizard?

to create a yes/no field quickly
to reference data from another table
to combine more than one field in a table
to generate a random number automatically

Answers

Answer:

The answer is B. To reference data from another table

Explanation:

I just got it right in Edg

what is not a type of application software

Answers

Windows nt is not a type of application software.

Adam has created a document for publishing and needs to ensure that no changes can be made. He has accessed the
Developer tab and is using the Restrict Editing task pane. Which option should Adam choose?

Formatting Restrictions

Editing Restrictions

Start Enforcement

Track Changes

Answers

Answer:

formatting restricions

Explanation:

i took the test

Answer:

B) Editing Restrictions

Explanation:

By enabling this and leaving it as the default setting, the document is now read only and cannot be edited.

What is the missing line of code?
class vehicle:


self.model = strModel
self.color = strColor

def __str__(self):
return self.model + ' ' + self.color

Answers

Answer:

def__init__(self,strModel,strColor):

The missing line of the given code is as follows:

Class vehicle: def__init__(self,str Model,str Color).

What is the significance of programming code?

The significance of programming code may be determined by the fact that it implies a computer finishing the commands that are given by the user over and over again. As a result of this, people do not have to do the task repeatedly.

When it comes to using string commands in python, the sequence of characters inside either single quotes, double quotes, or triple quotes leads to their assignment to a variable. This variable more frequently relies on the instruction given by the user in a specific period of time.

Therefore, the missing line of the given code is well mentioned above with respect to python and code programming.

To learn more about Python programming, refer to the link:

https://brainly.com/question/26497128

#SPJ3

Is anyone else excited for sephiroth (I think I spelt it wrong) in smash. And if you arn't are you excited for christmas

Answers

Answer: idek what that is but okay ;v;

Answer:

his ultimate is fire

Explanation:

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

what could happen if I break copyright law in the future​

Answers

um i’m pretty sure you could go to jail and you would have to pay fines
youd pay fine. amount depends on the situation. you could also potentially face time in prison

You receive an email from your school's head of IT. There is a concern for a potential hack to the school's servers. IT knows some accounts have been compromised, with their login and passwords overwritten by the hackers. They need to reset the accounts that the hackers have changed the passwords on. However, they don't have access to the passwords directly, and the change records were corrupted by the attack. They need students and staff to confirm their passwords by logging into a secure site. If the login fails, they'll know your account was compromised and reset your account immediately.
a.) This could be a phishing attempt. If the situation is as described in the email, this is also serious, but the method suggested is the same methods used by social hackers. Look up your IT Departments phone number and call them about the email.
b.) This is a serious issue, and the email came from the head of IT. The site also shows that it's secure. The longer it takes to reset accounts, the longer the hackers will have access to your account. Follow the instructions in the email from the head of IT.

Answers

Answer:

a.) This could be a phishing attempt. If the situation is as described in the email, this is also serious, but the method suggested is the same methods used by social hackers. Look up your IT Departments; phone number and call them about the email.

Explanation:

This makes sense because many people do these types of scams to trick people into logging into their accounts and actually hack them from there, I actually got an email like this last week to my iCloud address. Make sure that the email actually came from the IT department by checking the domain the email comes from, and call the IT department to make sure.

Hope this helps!

How can you place a paragraph of text in a box smaller than the text content, and add a scroll bar?
You can do this by using the __ property and setting it to ___.
(First blank: Border, Margin, Overflow.)
(Second Blank: Auto, hidden, scroll)

Answers

Answer:

I think it's overflow and hidden.

Explanation:

Answer:

You can do this by using the  overflow  property and setting it to  hidden .

Explanation:

Which of the components of the box model is transparent and does not take a background color? content padding border margin

Answers

Answer:

the answer is

ও d- margin

Explanation:

⁂ just did the cumulative exam review, hope this helped ☺

Margin is the component of the box model which is transparent and does not take a background color. Thus, the correct option is D.

What is background color?

The background color is, in most of the cases, displayed in the form of an RGB triplet or a hexadecimal code of colors. The three separate pairs of different numbers which are given in the command, represent the different set of color values of the RGB spectrum. The first value in this set stands for the red color, the second color stands for the green color and the last one stands for the blue color.

The background style of the content, padding, and border areas of a box model are specified by the background property of the generating element of the system. Margin backgrounds are the elements which are always transparent in color.

Therefore, the correct option is D.

Learn more about Background color here:

https://brainly.com/question/14928554

#SPJ2

If a computer company develops a touchscreen tablet with the intent that it will have to be replaced within two years by the consumer, this is known as which of the following? consumer fraud supply and demand planned obsolescence innovative commerce

Answers

Answer:

b

Explanation:

demand planned obsolescence

Type the correct answer in the box. Spell all words correctly.
What does Clara create that programmers can use to write code?
Clara works in a software development company. Her boss identifies that she has strong problem-solving skills. Clara’s boss places her on the planning team to create____ for programmers.
This is for Edmentum final! thanks

Answers

Answer:

design documents

Explanation:

Usually, in a software development company or information technology (IT) department, software is developed through a team effort. Such teams have programmers and various other professionals, such as software developers and engineers. These professionals perform parts of the entire software development process. For example, the programmer is not the only person in a team who can formulate a solution to a problem. Many times, software developers and system analysts do this. They create design documents for the programmer to follow. Based on these design documents, a programmer writes the code for the program.

aquatic life zone such as acorans and their bays, estuaries, coastal wetlands, shorelines, coral reffs and mangrove forests?

Answers

Answer:

Iajajkwbwiw whw

Explanation:

Bshsiwiqnqiaowpwownsbbsdk akakwjnwkwnwkwnwoqknanamamalamkakakskwkwkwnwmw.

I hope u liked my answer. Thank u

The harm of stereotypes are likely to be aggravated in

Answers

Answer:

conflict situations

Answer:

B. Conflict situations

Hope this helps!

Explanation:

What social media profession entails determining how and in what way an organization will create and maintain a social media presence?
social media strategist
social media marketer
social media manager
social media specialist

Answers

Answer:

i believe the answer is b.

Explanation:

Answer:

(a) strategist

Explanation:

its the proven answer on my test

Other Questions
Describe the transformations:LaTeX: g(x) = f(x +5) + 6g ( x ) = f ( x + 5 ) + 6Choose all that apply 7. Cell division occurs as part of which process? *Energy in food is releasedO A cut on a person's finger healsO A disinfectant destroys microbesO The body eliminates wastes please help!!!! again sry (100 points)In Camellia flowers, petal color is inherited codominantly with the possible colorsbeing red, white, and red and white spots. What would be the chance of getting ared and white spotted flower if you cross a spotted flower with a white flower? Which lines from Brighton Beach Memoirs best describe the setting?A wooden frame house, not too far from the beach. It is a lower-middle-income area inhabited mostly by Jews, Irish and Germans.He is wearing knickers, a shirt and tie, a faded and torn sweater, Keds sneakers and a baseball cap.Outside on the grass stands EUGENE JEROME, almost but not quite fifteen.Her sister, BLANCHE MORTON, thirty-eight, is working at a sewing machine. Is this a SENTENCE? Come to our house. A. Yes B. No is the square root of 9/31 rational which of the following is the best definition for volumea. solids are the only matter with volumeb. all energy has volumec. volume is the three-dimensional size of an objectd. gases do not have volume A fruit vendor sells apples and mangos. Each apple cost the same amount, and each Mango cost the same amount. Lucy buys 3 apples and 6 mangos for a total of 9.15. Amir buys 8 apples and 4 mango 11.92 what is the cost of a single apple Write 142% as a mixed number in simplest form. What are the primary reasons people choose to invest and trade stocks?(Select all that apply.)to earn a dividend to earn a dividend , ,to earn capital gains to earn capital gains , ,to earn predictable quarterly interest to earn predictable quarterly interest , ,to earn money that is liquid Recovery of Previously Written Off A/RSeptember 10-King pays the $200 previouslywritten off as uncollectible.Prepare both journal entries. SOMEONE HELPPP I CANT DO IT A bank offers an annual simple interest rate of 9% on home improvementloans. Tobias borrowed $20,000 over a period of 4 years. How much didhe repay altogether? How many different elements are involved in the chemical reaction shown? 2Fe2O2 + 3C --> 4Fe+3CO2 Can someone help me plz I will mark brainliest Previous4 vNextLa historia de Venezuela: Mastery Test4Select the correct answer.Which term best completes the sentence?Los espaoles peninsulares que llegaron a Sudamrica para conquistarla se llamabanOA.libertadoresOB.criollosOc.conquistadoresODpeninsularesResetNext What system is involved in helping the process of blood doping happened in our body? Digestive or Respiratory or Circulatory PLEASE HELP ME!!!There is someone who stole my 40 points for me asking for a question for social studies! His user is ssnake13334. Is there a way they ca; get removed? Or how do I deleted the question. Use the number line to identify the least value, first quartile, median, third quartile, and greatest value of the data.Ages of teachers (in years): 30, 62, 26, 35, 45, 22, 49, 32, 28, 50, 42, 35