what is the name of the computer that access shared resources on the network

Answers

Answer 1

Answer:

what is the name of the computer that access shared resources on the network

Answer 2

Explanation:

A server is a device or computer program that provides functionality for other devices or programs. Any computerized process that can be used or called upon by a client to share resources and distribute work is a server


Related Questions

which describes a platform

Answers

Answer:

Explanation: In IT, a platform is any hardware or software used to host an application or service. An application platform, for example, consists of hardware, an operating system and coordinating programs that use the instruction set for a particular processor or microprocessor.

hope it is helpful

LAB: Input and formatted output: House real estate summary
Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (currentPrice * 0.051) / 12 (Note: Output directly, do not store in a variable, and end with a newline).
Ex: If the input is:
200000 210000
the output is:
This house is $200000. The change is $-10000 since last month.
The estimated monthly mortgage is $850.0.
Note: Getting the precise spacing, punctuation, and newlines exactly right is a key point of this assignment. Such precision is an important part of programming.
LabProgram.java
1 import java.util.Scanner;
2
3 public class LabProgram {
4 public static void main(String[] args) {
5 Scanner scnr = new Scanner(System.in);
6 int currentPrice;
7 int lastMonthsPrice;
8 currentPrice - scnr.nextInt();
10 last MonthsPrice = scnr.nextInt();
11
12 /* Type your code here. */
13 }
14 ]
15

Answers

Answer:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

See more about python at brainly.com/question/13437928?

write the working of dot matrix printer?

no links

Answers

The working of dot matrix printer is provided in the picture.

In a Linux interface configuration file, the ONBOOT parameter indicates whether or not the interface is a boot device.

a. True
b. False

Answers

I think it is false

Which unit of the computer works of the output?​

Answers

Answer:

monitor

Explanation:

this is because monitor displays information so it an output

Responsible use of computer is known as ................. .​

Answers

Answer:

This refers to the proper etiquettes and attitudinal posture to display while handling or using a computer system to ensure maximum performance, confidentiality and respect for other people's right.

Explanation:

Which of the following acts as the central authority in the network?

Answers

The answer would be Server.

which of the following is an input device
1.speaker
2.projector
3.touch screen
4.non of the above

Answers

Answer:

non of the above

Explanation:

i am not sure but i hope it will help

Answer:

none of the above is the answer

what are the functions of an input device​

Answers

Answer:

To feed the computer with data/instructions

Answer:

The function of an input device is to communicate information to a computer or other sort of information processing equipment. Input devices are types of peripheral devices that communicate with processing units. The most common forms of input device for personal computers are keyboards and mice.

Which network would provide you with the most security and control to automatically backup data

Answers

Centralized
Client server
GUI
Peer-to-peer

Predicting and controlling the social impact of technology, both anticipating new technologies and their social and environment implications and the consequences of ever- increasing scale of application of older technologies is one form of contribution of:


Select one:
A. Science to technology
B. Invention to innovation
C. Innovation to invention
D. Technology to science

Answers

Answer:

This report is a response to General Assembly resolution 72/242, in which the

Commission on Science and Technology for Development is requested, through the

Economic and Social Council, to give due consideration to the impact of key rapid

technological changes on the achievement of the Sustainable Development Goals. The report

contains analysis of the impact of rapid technological change on sustainable development,

especially the consequences for the 2030 Agenda for Sustainable Development’s central

principle of “leaving no one behind”. It presents the opportunities offered by rapid

technological change regarding the achievement and monitoring of the Sustainable

Development Goals across the various economic, social and environmental dimensions.

It discusses the transformative and disruptive potential of rapid technological changes,

including economic, social and normative considerations. In the report, it is highlighted that,

without appropriate science, technology and innovation policies, technologies, be they old

or new, are unlikely to deliver progress regarding global development. Such progress

requires an environment that nurtures learning and innovation to build and manage effective

innovation systems. In this context, the report presents examples of national strategies and

policies for rapid technological change and takes stock of regional, international and multistakeholder cooperation. In addition to national and international policies, the report also

calls for the international community to continue to discuss how international technology

assessment and foresight, as well as consensus building on normative guidelines, can shape

the developmental potential of rapid technological change. It concludes with suggestions for

Member States and the international community.

Explanation:

which of the following not a compulsory part of a computer​

Answers

Answer:

Hardware and software are the mandatory parts

anyway keyword mouse monitor are not hardware parts of computer

If the main cable in a bus topology is to be more than ____ yards long, the network will need one or more hubs.

Answers

Answer:

I think 10 yards

if wrong by chance correct me please

1. The most common cause of a stuck accelerator is the
A. engine
B. steering wheel
C. brakes
D. floor mat

Answers

D. Floor mat. Floor mats are dangerous because they can slip, wedging the accelerator.

Answer:

D: Floor Mat

Explanation:

The floor mat can easily get flipped up onto either the breaks or the gas pedal, causing your car to malfunction.

What is the value of total returned by the call secret(3) ? int secret int num) { int total= 10; switch(num) { case 1: case 2: total=5. break case 3. total= 10: case 4: total=total+3: case 8: total=total+6. break default: total=total+ 4. break} return total; }​

Answers

Answer:

19

Explanation:

Without break; statements, the switch "falls through" to the next case. So the code is directed to case 3, which sets total to 10. Then another 3 gets added and another 6, because cases 4 and 8 are also executed. That brings the total to 19.

So, always use a compile rule or code checker that checks your code for missing breaks, because it is hardly ever what you want on purpose.

Need help coding this

Answers

Answer:

read the hint

Explanation:

ur missing something

Name the wireless technology that may work with one device and not with another.


a. 802.11n


b. none of the above


c. Wi-Fi


d. Cellular

Answers

Answer: Im guessing b

Explanation:

bc the other ones work devices.

The wireless technology that may work with one device and not with another is not among the options. So the answer is none of the above.

Wireless technology often gives the ability for people to communicate between two or more entities over distances without the use of wires or cables of any sort.

Cellular network such as Mobile networks uses various radio frequencies in its communication with other devices.

Conclusively, This WiFi connection can connect to more than 250 devices. They can connect to computers, cameras, tablets, mobile smartphones, appliances etc.

Learn more from

https://brainly.com/question/19976907

What is the term for unsolicited Email​

Answers

Spam - unnecessary or unprecedented emails

which is true about artificial intelligence? a) can think b) act as body c) act as brain d) can learn.

Answers

Answer:

c). act as brain.

Explanation:

brain thinks and learns, so it covers a and d

[tex].[/tex]

C- act as brain
Reason: because a A.I. Can’t really learn if it’s programmed for a specific function and can’t act as a body if there programmed to do something they don’t really think in the process if it’s all 1’s and 0’s they just do what there told unless there programmed to do otherwise and programmed to learn and think individually

You can change the default margin size for Word documents. A. True B. False​

Answers

Answer:

False

Explanation:

Word processing is an application that allows you to create a variety of documents, including letters, resumes, and more.

Mei is working from home and speaking with her department manager on a Voice over IP (VoIP) phone connection. This technology allows telephone conversations to be routed over the Internet. During a VoIP conversation, Mei loses a few moments of what the manager has said to her. What is the problem

Answers

Session Layer consists that controls dialogues (interconnection) among machines in the ISO open platforms (OSI) model.

It sets up, manages, and stops the local and distant application interactions. It generates communication channels between devices, called sessions.Therefore, every OSI model Session Layer having dropped momentarily its line of communication because the information is deleted due to the magnets which drop the sessions.

Learn more:

brainly.com/question/14255125

explain how to open an excel document​

Answers

Answer:

Open Microsoft

and see and in computer

Original IPv6 Address
Oe56:1102:0e75:8d23:3528:7e0d:419b:bdce
Compress
I

Answers

e56:11c2:e75:8d23:3528:7e0d:419b:bdce

List the resulting array after each iteration of the outer loop of the selection sort algorithm. Indicate the number of character-to-character comparisons made for each iteration (line 07 of the Selection Sort algorithm). Sort the following array of characters (sort into alphabetical order): C Q R B P D X.
public static void selectionSort (char[] a){
int n = a.length;
for (int i = 0; i < n; i++){
int min = i;
for (int j = i + 1; j < n; j++){
if (a[j] < a[min]){
min = j;
}
}
exchange(a, i, min);
}
}
private static void exchange(char[] a, int i, int j){
//exchange the value at index i with the value at index j
char temp = a[i];
a[i] = a[j];
a[j] = temp;
}

Answers

Answer:

$5+879+$431=$426809800

A class can _____ multiple interfaces. Select one: a. extend b. implement c. inherit d. overload e. override

Answers

Option B is the correct answer.

A class can implement multiple interfaces. Thus, the correct option for this question is B.

What do you mean by Interface?

An interface may be defined as the place or location at which independent and often unrelated systems meet with one another and function on or communicate with each other in order to convey information and data.

According to the context of this question, a class that has some characteristics and based on that also possesses multiple interfaces in order to implement all of them in specific circumstances.

These interfaces illustrate some unique qualities that meet the final outcome of the communication. These qualities developed a rapport in front of the user to make some distinguishable attributes.

Therefore, a class can implement multiple interfaces. Thus, the correct option for this question is B.

To learn more about Interfaces, refer to the link:

https://brainly.com/question/5080206

#SPJ2

what is storage devices?​

Answers

Answer:

A storage device is a device used to keep softcopy for future reference

A storage device is a kind of hardware, which is also known as storage, storage medium, digital storage, or storage media that has the ability to store information either temporarily or permanently.

Assign avg_owls with the average owls per zoo. Print avg_owls as an integer.

Sample output for inputs: 1 2 4
Average owls per zoo: 2

Answers

Answer:

I'm going to add a python program for this example, step by step:

We declare 4 variables for our zoo, zoo quantity, and the average.

We make the operation for the average where sum the zoo and divide with the quantity

In the last step, we print the variable avg_owls.

num_owls_zoo1 = 1

num_owls_zoo2 = 2

num_owls_zoo3 = 3

num_owls_zoo4 = 4

zoos = 4

avg_owls = 0.0

avg_owls=(num_owls_zoo1+num_owls_zoo2+num_owls_zoo3+num_owls_zoo4)/zoos

print('Average owls per zoo:', int(avg_owls))

Explanation:

The coding of the print avg_owls as an integer is written above.

What is coding?

We connect with computers through coding, often known as computer programming. Coding is similar to writing a set of instructions because it instructs a machine on what to do. You can instruct computers what to do or how to behave much more quickly by learning to write code.

We make the operation for the average, where sum the zoo and divide by the quantity.

In the last step, we print the variable avg_owls.

num_owls_zoo1 = 1

num_owls_zoo2 = 2

num_owls_zoo3 = 3

num_owls_zoo4 = 4

zoos = 4

avg_owls = 0.0

avg_owls=(num_owls_zoo1+num_owls_zoo2+num_owls_zoo3+num_owls_zoo4)/zoos

print('Average owls per zoo:', int(avg_owls))

Therefore, the coding is written above.

To learn more about coding, visit here:

https://brainly.com/question/1603398

#SPJ2

What do ALT stand for

Answers

Answer:

please mark me brainliest

Explanation:

ALT, which stands for alanine transaminase, is an enzyme found mostly in the liver. When liver cells are damaged, they release ALT into the bloodstream. An ALT test measures the amount of ALT in the blood.

Alt stands for "Alternate Key." I hope that this helped you.

Which of these was the first era of computing concerned with? Choose one

1. Computation

2. Communication

3. Electronic commerce ​

Answers

1. Computation

Answer

1.John Von Neumann's architecture model was proposed not only to staire data but to also execute instructions

Benedetta was cyber bullied by her classmates about her looks. WHAT computer ethics was violated?

Answers

Answer:

Digital Rights Foundation’s Cyber Harassment Helpline is Pakistan’s first dedicated, toll-free Helpline for victims of online harassment and violence.  The Helpline will provide a free, safe and confidential service. The Helpline aims to provide legal advice, digital security support, psychological counselling and a referral system to victims of online harassment. The Helpline will provide a judgment-free, private and gender-sensitive environment for all its callers.

Explanation:

Other Questions
which sentences are stanzas? 9 gal 2 qt to quarts 2 Jessica re the same number of books each month. Write an expression to representthe number of books Jessica reads in 2 years. The difference of F and 5 times G is the same as 25 minus f Why will goats protect wildfires What is required for electrons to move from the stable energy level to an excited state? Hunter is going to graph the ordered pairs that are represented by this table on a coordinate plane.x730159y402602In Hunters graph, how many points should lie on the y-axis?0123 a solid sphere is cut into 3 equal wedges. the volume of each wedge is V=4/9^3. solve the formula for r What accurately describes the reactants of a reaction How is the Nucleus like a brain? giving brainlist to the correct answer !!______________________Scientific laws can be thought of as general descriptions of what we see happening around us. true or false? Which TWO answers correctly demonstrate a form of direct democracy?A)the United StatesB)the Roman Republic0a referendum in a U.S. stateD)the Greek city-state of AthensE)the Greek city-state of Sparta Please help me with question 5!!!!!!!!! Do you know this it is for writing 6 pounds of apples cost $12 how much do 8 pounds cost? what did one function say to the other function? Explain how international trade can limit local productions in a country ? What are the main purpose of regulatory policies and its examples social psychology is primarily concerned with? A. Basic science B. Applied science C. Animal science D. All the above 1. Why Isn't Hess's law helpful for calculating the heat of reaction Involved in the conversion of diamond to graphite?