The head of small organization wants to install a network so that all the employees of different department can share various resources: I. What type of network he/she needs to set up in the organization? II. Name the resource that the employees will be able to share after setting up the network. ​

Answers

Answer 1

Answer:

While the Internet was evolving and creating a way for organizations to connect to each other and the world, another revolution was taking place inside organizations. The proliferation of personal computers inside organizations led to the need to share resources such as printers, scanners, and data. Organizations solved this problem through the creation of local area networks (LANs), which allowed computers to connect to each other and to peripherals. These same networks also allowed personal computers to hook up to legacy mainframe computers.

An LAN is (by definition) a local network, usually operating in the same building or on the same campus. When an organization needed to provide a network over a wider area (with locations in different cities or states, for example), they would build a wide area network (WAN).

CLIENT-SERVER

The personal computer originally was used as a stand-alone computing device. A program was installed on the computer and then used to do word processing or number crunching. However, with the advent of networking and local area networks, computers could work together to solve problems. Higher-end computers were installed as servers, and users on the local network could run applications and share information among departments and organizations. This is called client-server computing.

INTRANET

Just as organizations set up web sites to provide global access to information about their business, they also set up internal web pages to provide information about the organization to the employees. This internal set of web pages is called an intranet. Web pages on the intranet are not accessible to those outside the company; in fact, those pages would come up as “not found” if an employee tried to access them from outside the company’s network.

EXTRANET

Sometimes an organization wants to be able to collaborate with its customers or suppliers while at the same time maintaining the security of being inside its own network. In cases like this a company may want to create an extranet, which is a part of the company’s network that can be made available securely to those outside of the company. Extranets can be used to allow customers to log in and check the status of their orders, or for suppliers to check their customers’ inventory levels.

Sometimes, an organization will need to allow someone who is not located physically within its internal network to gain access. This access can be provided by a virtual private network (VPN). VPNs will be discussed further in the chapter 6 (on information security).


Related Questions

Assume that strike Counter has already been declared to be a "pointer to int". Assume further that strike Counter has been initialized -- its value is the address of some int variable. Write a statement that adds 22 to the value of the variable that strikeCounter is pointing to.

Answers

Answer:

The statement to this question can be defined as follows:

*strike_Counter =*strike_Counter +22;//adds  value 22 in *strike_Counter

Explanation:

In the given question, it is already defined, that "strike_Counter" is an integer pointer variable, which means, it only holds the integer value in its address memory.

In the next step, it is defined, that it adds the value "22" in its variable, and for this, we declare the statement in the answer section, which adds the value.  

for example, if in the "strike_Counter" variable holds the integer value, that is 5 and after adding the 22 it will become 27.    

Marcus White has just been promoted to a manager. To give him access to the files that he needs, you make his user account a member of the Managers group, which has access to a special shared folder. Later that afternoon, Marcus tells you that he is still unable to access the files reserved for the Managers group. What should you do

Answers

Answer:

log off of his account and log back in

Explanation:

The first thing that Marcus should do would be to log off of his account and log back in. This is so that the new changes to his permissions can take effect. This should solve his problem and grant him access to all the permissions available in the Managers Group. If this does not work, then it is most likely that he is still in the previous group which has the Manager level permissions blocked. In this case he would need to leave the previous group that he is in because the blocking permissions overrides the access allowed from the Managers group.

Which of these would you use to connect a mouse to a computer?
O RAM
O ROM
O USB
O TOT

Answers

USB is the answer because that is the adapter to plug it in

General purpose computer can perform a single task, true or false​

Answers

Answer:

This is false.

Explanation:

General-purpose computers are desktop computers or laptops that can function in multiple ways. A special-purpose computer is usually designed to do one thing only.

What type of camera is a cell phone camera? A.) DSLR B.) manual C.) compact D.) zoom

Answers

Answer:

The correct option is;

D.) Zoom

Explanation:

The six types of camera found on smart phones includes the monochrome, macro camera, ultra-wide camera, periscope zoom camera, the main phone camera, and the depth sensor camera

The zoom cameras on smart phones can be found mainly in the top range models of smart phones due to the costs of the camera components including the sensor.

Smart phones also have digital zooming that make use of the high mega pixels that come with the phone.

whats the recommended amount of dedodated wam
i can have in a server

Answers

Hi! The recommended amount of RAM that you should have is 6gb and above.

Payroll deductions are the same for all employees. True False

Answers

Answer:

The answer is "False".

Explanation:

The Payroll deductions are the amount of each pay period, that is paid out of the paycheck of the employee. It is also considered as the money, which is deducted from its employees' paychecks so, if paid by the employers.

All staff members are not identical. Workers' paychecks determine the amount individuals receive during each pay cycle. It also is referred to it as payroll retainers.

write a python program to calculate the compound interest

Answers

Answer:

initialPrincipal = float(input("Please enter your initial principal:"))

interestRate = float(input("Please enter your interest rate:"))

timePeriod = float(input("Please enter your number of times interest applied per time period:"))

elapsedPeriod = float(input("Please enter your number of time period elapsed:"))

finalAmount = initialPrincipal*(1 + interestRate/timePeriod)^(timePeriod*elapsedPeriod)

print("Your final amount would be:", finalAmount)

Select the correct answer. In which area is composing for games similar to composing for movies?
A. royalties earned
B. success of song-based soundtracks
C. usage of audio software for mixing and editing
D. spotting sessions

Answers

I believe the answer is c, hope this helps

Answer:

c

Explanation:

cuz im jus right

What are the parts to an
email?

A)Recipient, Greeting, Body, Closing
B)Recipient, Subject, Body, Signature
C)Recipient, Subject, Greeting, Body, Closing, Signature
D)None of the above

Answers

Answer:

B) recipient subject body signature

Help me why did my desktop erase every app I need that please

Answers

Answer:

Your computer is affected by a polymorphic or trojan horse virus, so install avast antivirus. Set your computer into safe mode, then open the antivirus

Answer:

your pc has virus

Explanation:

Question 12 :A user complains that his computer is taking a long time to boot. During the boot process, you observe that the hard drive activity light is staying on. You discover that the hard drive is nearing its maximum capacity. The computer contains a single 150 GB hard drive. What should you do

Answers

Answer:

Delete unnecessary apps

Explanation:

If you don't need it and its installed it's just using up memory the system could be using for something else

The ________ is the easy way to insert a new slide between existing slides.

Answers

What is the subject about?

how to print the output of "WELCOME" by using python codes with arrays.

Answers

Answer:

Following are the code to this question:

arr=['WELCOME']#defining list arr and assign string value

print (str(arr)[2:-2])#use print method that uses slicing to remove bracket and quotes

Output:

WELCOME

Explanation:

The Array data type is used to store the same type of value, but in python, the array is not used, instead of using an array we use the list, that stores multiple data types.

In the above code "arr", that is list is declared, that store a string value.    

To print its value, we use the print method, inside this, we use slicing to remove brackets and quotes.

Select the best answer for the ques
12. A business has a goal of communicating frequently with its customers to offer specials and increase sales. What element should it consider adding to its website
O A. Database
O B. Payment system
O C. Calendar
O D. Mailing list opt-in

Answers

The element that should consider adding to its website is Mailing list opt-in. Option D is the correct answer.

Adding a mailing list opt-in to the website would allow the business to collect email addresses from customers who are interested in receiving updates, specials, and promotions.

By building a mailing list, the business can communicate frequently and directly with its customers, informing them about new products, exclusive offers, and other relevant information.

Having a mailing list opt-in provides several advantages. Firstly, it gives the business a direct channel of communication with customers, allowing them to reach a targeted audience interested in their products or services.

Secondly, it helps to increase sales by sending promotional emails and offers to the subscribers, which can encourage them to make purchases. Lastly, it enhances customer engagement and loyalty as customers feel connected to the business and stay informed about its latest offerings. Option D is the correct answer.

For such more question on element:

https://brainly.com/question/4966688

#SPJ8

List out analog computer​

Answers

Answer:

1. Wall clocks.

2. Analog watches

3. Measuring instruments with callibration

Explanation:

what do you mean by HDML coding ​

Answers

Answer:

hdml coding is a standard markup language for documents designed to be displayed in a web browser.

Explanation:

it can be assisted using things like CSS or JS

IblMessage.txt=welcome to fiji.what is the error in the coding and what type of error is it?(explain)​

Answers

Answer:

The correct syntax (assuming WinForms) is

lblMessage.Text = "Welcome to fiji";

The given statement fails to follow the syntax of literal strings, which should be in quotation marks. (depending on the framework and programming language, the txt property may also be incorrect, as well as the missing semi-colon).

A company runs an application on a fleet of EC2 instances. The company wants to automate the traditional maintenance job of running timely assessments and checking for OS vulnerabilities. As a Cloud Practitioner, which service will you suggest for this use case

Answers

Answer:

AWS Systems Manager

Explanation:

AWS Systems Manager (https://aws.amazon.com/systems-manager/features/) is the service that allows to centralize operational data from multiple AWS services and automate tasks across AWS resources.

write a program to check whether the number is odd or even using 'if' statement in python

Answers

Answer:

Python Program to Check if a Number is Odd or Even :

num = int(input("Enter a number: "))

if (num % 2) == 0:

print("{0} is Even number". format(num))

else:

print("{0} is Odd number". format(num))

What tends to happen to the accuracy of our savings goals as our investment horizon becomes longer? A. It is not useful to have long-term savings goals. B. We are less able to accurately estimate the amount we will need. C. We can estimate the amount we need more accurately. D. The accuracy of our savings goals doesn't change.

Answers

Answer:

The answer is "Option B".

Explanation:

The Secured Goals are a part of your account, which is configured to just save your cash and also save it, and all the differences are good dividend savings accounts to shield this from accidental expenses. While opening the protected savings fund, the saving goal would be automatically created or loan rates invested only at the end of each month, that's why in this question "option B" is correct.

The less able to the accurate estimate of the amount we will require. Thus the option B is correct.

What is the saving goals of investment?

The saving or the secured Goal is a part of the account, it tells how to adjust and configure your save. When opening the protected saving fund the dating goal would be automatically to create the loan and rate the investment at the end of the month. Thus we can accurately estimate the amount we need.

Find out more information about the saving goals.

brainly.com/question/6903609

NIST recommends selecting cloud providers that support strong encryption, have appropriate redundancy mechanisms in place, employ authentication mechanisms, and offer subscribers sufficient visibility about mechanisms used to protect subscribers from other subscribers and the provider.a) trueb) false

Answers

Answer:

The answer is "Option a".

Explanation:

In cloud computing, it is also known as the model, that enables you for accessible, convenient, through the-demand network access to global computer resources, which can be rapid to get and published via low administrative effort.  

Its recommending selection for the cloud providers support for the robust encryption, that has adequate replication processes in place, use user authentication, or provide ample clarity to customers regarding mechanisms that defend subscriptions against other subscriptions and the supplier.

Computer hardware refers to: Group of answer choices the mechanism through which users interact with a computer. handheld computing devices meant largely for mobile use outside an office setting. a precise set of instructions that orchestrate the functioning of the computer. a program that fulfills the requests of a client. the physical components of information technology.

Answers

Computer hardware is referred to as: E. the physical components of information technology.

A computer refers to a programmable-electronic device that is designed and developed to receive data in raw form as an input and then processes these data into an output (information) that could be used by the end user.

Generally, the components of a computer is broadly classified into two (2) main categories and these include:

Software: such as operating system (OS).Hardware: it include speaker, keyboard, CPU, monitor, etc.

In conclusion, a computer hardware is simply the physical components of an information technology (IT) because they can be seen and touched.

Read more on computer hardware here: https://brainly.com/question/959479

i need a computer science help.....and I rlly want it right now...this the question
calculate all multiples of 5 that are less than a randomly generated number between 12 and 45. for example the random number is 16. the output is then 5,10,15 python

so basically if type a number between 12 and 45 it shud give me all the multiples of 5 less than the number i typed......pls help;-;

Answers

Define, en tus propias palabras, lo que son los sistemas de información.

You have a scenario where you need to disable the guest network on your wireless router. You try to log in, but your password does not work. After several attempts, you realize that you forgot your password. What can you do?

Answers

Answer:

Reset the router by holding down the reset button for 30 seconds. The reset button can be located in the back or bottom area of the router. The function of the reset button is to turn restore the wireless router to default factory setting such that customized settings including the DNS, the static IP address setup, stored personal passwords DHCP parameter settings port forwarding and routing settings are erased.

Explanation:

define analogue computer with any four features​

Answers

Answer:

hope it helps you

Explanation:

and pls mark as brainlist ans

A team of architects is designing a new AWS environment for a company which wants to migrate to the Cloud. The architects are considering the use of EC2 instances with instance store volumes. The architects realize that the data on the instance store volumes are ephemeral. Which action will not cause the data to be deleted on an instance store volume

Answers

Answer:reboot

Explanation:

difference between vacuum tube and transistor​

Answers

Answer:

I HOPE THE ABOVE INFORMATION WILL HELP YOU A LOT.

8. Fill in the blanks.
a) A set of instructions that performs a particular task is called a ______
b) Machine invented by William Oughted is _____
d) A memory used by second generation computer _____
e) Cyber Nepal was established in ____​

Answers

Answer:

a)It is called a program

b)Machine invented by Williams Oughted was Slide rule

d)Magnetic cores were used

What do computer programs generally try to solve and how? A) Computer programs generally try to solve a well-defined problem using a well-defined algorithm B) Computer programs try to solve poorly-defined problems using well-defined algorithms C) Computer programs try to solve well-defined problems using poorly-defined algorithms D) Computer programs try to solve math problems using only plain English

Answers

Explanation:

A) computer programs generally try to solve hard problems in a few seconds and makes us easy to learn

Other Questions
According to the graph, which statement below is true?A. This enzyme works equally well at all temperatures.B. This enzyme works best at 10 degrees Celsius.C. This enzyme works best at 45 degrees Celsius.D. This enzyme works best at 60 degrees Celsius. Which of the following equations has only one solution? Question 36 of 40The distance of a line bound by two points is defined asL?O A. a line segmentB. a rayOc. a planeO D. a vertexSUBMI (cos^2x-sin^2x)-sin4x+sin^22x=0 Drag each characteristic to the correct location on the phylogenetic tree. Complete the phylogenetic tree by matching each characteristic that arose during the evolution of animals to its correct position. what do you mean by Arsenic Pollution? How many different ingredients will you need 3. Cora earns $13 an hour as a cashier. How much willshe earn if she works from 8:00am to 2:00pm?Answer:56 The Varners live on a corner lot. Often, children cut across their lot to save walking distance. The childrens path is represented by a dashed line. Approximate the walking distance that is saved by cutting across their property instead of walking around the lot. Hypotenuse: 32 ft , Short leg: x , Long leg: x+6 please help with my spanish correction, my teacher is giving me a hard time on this assignment, and help would be appreciated :)Answer the following questions using both a direct and indirect object in your response. Follow the example.Example: Cocinas la comida para tu familia? Do you cook the food for your family?S, se la cocino. Yes, I cook it for them.20. Escribes el correo electrnico a su amigo? my answer: S, les escribo.teachers message: el correo electronico is the direct objecta su amigo is the indirect object. What are their pronouns? Where do they belong?21. Compras la bebida para tu hermana?my answer: S lo compro para ella. teachers message: la bebida is the direct objectpara tu hermana is the indirect object. What are their pronouns? Where do they belong?thank you :) Serena hits a tennis ball downward from the top of the net at which the angle ofdepression is 20. If the net is 0.9 m high, how far from the net does the ball land tothe nearest tenth of a metre? Help me please. 9Drag each tile to the correct location on the image.Identify which details are most important or less important for an objective summary omI observed a huge creature walkingafter them in the sea, as fast as hecould...I durst not stay to see the issue oftadventure; but ran as fast as I coulthe way I first went ...excerpt from Gulliver's Travelsby Jonathan Swiftve came to land, we saw no river or spring, nor anyinhabitants. Our men therefore wandered on theco find out some fresh water near the sea, and Ialone about a mile on the other side, wheremed the country all barren and rocky. I now began tory, and seeing nothing to entertain my curiosity, 1ed gently down toward the creek, and the sea beingmy view, I saw our men already got into the boat,wing for life to the ship. I was going to holla afterIthough it had been to little purpose, when Ied a huge creature walking after them in the sea, ashe could; he waded not much deeper than hisand took prodigious strides; but our men had thehim about half a league, and the sea thereaboutsall of pointed rocks, the monster was not able toe the boat. This I was afterwards told, for I durst notsee the issue of the adventure; but ran as fast as Ie way I first went, and then climbed up a steep hill,Eve me some prospect of the country. I found itcivated; but that which first surprised me was thef the grass, which, in those grounds that seemed tofor hay, was about twenty feet high.I found it fully cultivated...I saw our men already got into theboat, and rowing for life to the ship.and I walked alone about a mile onthe other side, where I observed thecountry all barren and rocky.Most Important DetailsLess Importan Budget performance report for a cost center GHT Tech Inc. sells electronics over the Internet. The Consumer Products Division is organized as a cost center. The budget for the Consumer Products Division for the month ended January 31 is as follows: Customer service salaries $546,840 Insurance and property taxes 114,660 Distribution salaries 872,340 Marketing salaries 1,028,370 Engineer salaries 836,850 Warehouse wages 586,110 Equipment depreciation 183,792 Total $4,168,962 During January, the costs incurred in the Consumer Products Division were as follows: Customer service salaries $602,350 Insurance and property taxes 110,240 Distribution salaries 861,200 Marketing salaries 1,085,230 Engineer salaries 820,008 Warehouse wages 562,632 Equipment depreciation 183,610 Total $4,225,270 1. Prepare a budget performance report for the director of the Consumer Products Division for the month of January. If an amount box does not require an entry, leave it blank GHT Tech Inc. Budget Performance Report-Director, Consumer Products Division For the Month Ended January 31 Actual Budget Over Budget Under Budget Customer service salaries $ Insurance and property taxes Distribution salaries Marketing salaries Engineer salaries Warehouse wages Equipment depreciation Total 2. For which costs might the director be expected to request supplemental reports? 1. Customer service salaries and marketing salaries as they are significantly over budget. 2. Customer service salaries, warehouse wages and marketing salaries as they have significantly changed. 3. Engineering salaries and warehouse wages as they are significantly under budget. Can we say that Christopher Columbus was a bad person based on our modern morals and goals inlife? Why or why not? Hi pls help asap pls what is the square and square root of 9x If a speech has these main points: I. Isabel Baumfree was born into slavery in the state of New York during the 1790s. II. After undergoing a conversion experience and changing her name to Sojourner Truth, she began preaching during the 1840s. III. Over the next few decades, she became a celebrated speaker for various reform causes En la raza de ovejas Rommey Marsh, un gen conocido como gris letal, provoca que el feto gris GG, muera antes de las 15 semanas de gestacin; El Genotipo heterocigtico Gg produce lana gris y el genotipo homocigtico gg produce lana negra. Si se cruzan individuos heterocigticos. Cules sern las proporciones fenotpicas esperadas en la progenie viva? * Write an equation for the line in the graph that passes through the points (0,4) and (12,16).