which technology concept uses computer resources from multiple locations to solve a problem

Answers

Answer 1
Answer:

Grid computing is a system connecting many computer nodes into a distributed architecture that delivers the computing resources necessary to solve complex problems.


Related Questions

Translate the following C program to Pep/9 assembly language.

#include
int myAge;
void putNext(int age) {
int nextYr;
nextYr = age + 1;
printf("Age: %d\n", age);
printf("Age next year: %d\n", nextYr);
}
int main () {
scanf("%d", &myAge);
putNext(myAge);
putNext(64);
return 0;
}

Answers

Answer:

finds one age

Explanation:

it finds ones age and updates it annually by adding 1 year to the default age

Print air_temperature with 1 decimal point followed by C.

Sample output with input: 36.4158102
36.4C

Answers

Answer:

printf("%.1f", air_temperature);

Explanation:

Codehs 4.1.7 Calling a Method​

Answers

Using the knowledge of computational language in python it is possible to write a code that a method is a way to teach the computer a new command. A method should do one simple job, and should be written like a command, like turnRight , or printHello .

Writting the code:

import java.util.Scanner;

public class TaffyTester

{

 public static void main(String[] args)

 {

   Scanner x = new Scanner(System.in);

   System.out.println("\nStarting Taffy Timer...");

   System.out.print("Enter the temperature: ");

   float temp = x.nextFloat();

   while( temp < 270 )

   {

     System.out.println("\nThe Mixture isn't ready yet.");

     System.out.print("Enter the temperature: ");

     temp = x.nextFloat();

   }

   System.out.println("Your taffy is ready for the next step!");

 }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

I am making a python calculator and the issue I am having is that I can only add integers (whole numbers) What changes do I need to make to my code to be able to add integers and floats?


print("Welcome to the big daddy caculater this caculater can do add anything you desire ")

num1 = input("Enter a number: ")
num2 = input("Enter another number: ")

result = int(num1) + int(num2)


print(result)

Answers

The changed code to be able to add integers and float is:

num1 = float(input(("Enter a number: "));

num2 = float(input(("Enter another number: "));

result = num1 + num2;

print(result)

Integers and floats

The numbers represented by integers and floats are as follows:

Integers: the integer set, containing only non-decimal numbers.Floats: the real set, containing both non-decimal and decimal numbers.

From the above definition, we have that the float class contains the integer class, as it also accepts non-decimal values, hence your input should be read as a float, according to the following code section:

num1 = float(input(("Enter a number: "));

num2 = float(input(("Enter another number: "));

Then the addition can be made without any casting, as follows:

result = num1 + num2;

While the print command continues as it is.

More can be learned about integers and floats at https://brainly.com/question/27634578

#SPJ1

The rules of the new game were undefined.
We couldn't figure out how to play it, so we
chose another game.
made too easy
not explained
not written
made very long
X

Answers

Answer: not written

Explanation: The game should have data for it and it if it was undefined maybe the creator had something missing or a command messed up.

What is the name of the software for managing real estate

Answers

nTireFM is a comprehensive system for real estate vendors with unique and reliable needs. Real Estate Management Software simplifies your life as a real estate investor monitors the financial performance of each rental property

Answer:

Is it Real Greeks?

Explanation:

Please help. Which ones would it be?

Answers

c and d is the answer

Which option refers to a combination of the three main services in cloud computing?
A. SaaS
B. XaaX
C. IaaS
D. MaaS
E. PaaS

Answers

The option that refers to a combination of the three main services in cloud computing is  XaaS. The correct option is B.

What is XaaS?

XaaS is frequently used to refer to the provision of "anything-as-a-service," in general. SaaS, IaaS, and PaaS, the three primary cloud computing services, are combined in XaaS.

Xaas encompasses a variety of scenarios, such as a business renting out computing resources via the cloud or a web programmer using his browser to access an editor without first installing it on his PC.

Thus, the correct option is B. XaaS.

To learn more about XaaS, refer to the link:

https://brainly.com/question/11725428

#SPJ1

Which of these examples is a form of wearable technology?
A.
integrating mobile communication into eyeglasses
B.
rugged devices that can withstand natural disasters
C.
systems that derive energy from the user's biological processes
D.
smaller mobile and satellite communication devices
E.
communication devices that interface directly with the brain

Answers

Answer:B. rugged devices that can withstand natural disastersC. systems that derive energy from the user's biological processesExplanation:

Apple Watches and Fitbits are classic examples of wearable technology, but those aren't the only devices being developed today. In addition to smart watches, VR and AR technology, smart jackets and a wide variety of other gadgets are leading us towards a better-connected lifestyle.

1. A group of people connected by one or more common interests is called a:

Answers

The answer is an Association

So I'm doing a coding project and I need to turn all my pargaphs purple on my 4 different pages

Answers

For a sample code given below:

The CSS Code

body {

}

h2 {

    color: red;

}

p {

    color: pink;

}  

p {

   color: green;

}

p {

   color: purple;

}

.orange > p {

   color:orange;

}

.blue {

  color: blue;

}

#red {

   color: red;

}

#div1 > h4 {

   background-color: black;

  color: white;

}

You need to know that if you want to change the color of all your paragraphs in your CSS code, you would have to add the appropriate CSS selector.

Next, you would need to define the color property with the value you want. For example, say you want to change the color of all paragraphs on your site to navy.

You would have to add p {color: #000080; } to the head section of your HTML file.

You should note that #div1 is the parent of the p elements. This means that some properties (such as the background) of #div1 will be applied to the child element(s).

Read more about CSS here:

https://brainly.com/question/27818468

#SPJ1

Variance for accumulator. Validate that the following code, which adds the methods var() and stddev() to Accumulator, computes both the mean and variance of the numbers presented as arguments to addDataValue(): public class Accumulator { private double m; private double s; private int N; public void addDataValue(double x) { N++; s = s + 1.0 * (N-1) / N * (x - m) * (x - m); m = m + (x - m) / N; } public double mean(

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that Validate that the following code, which adds the methods var() and stddev() to Accumulator, computes both the mean and variance of the numbers presented as arguments to addDataValue()

Writting the code:

import java.util.*;

public class Accumulator {  

private static double m;  

private static double v;  

private static double st;  

private static  double s[]=new double[5];

private static int N;

private static int count =0;

public static void main(String[] args) {

// TODO Auto-generated method stub

Random r = new Random();

System.out.println("hello world");

for(int i=0;i<5;i++) {

   double randomvalue = r.nextDouble();

addDataValue(randomvalue);

}

for(int i=0;i<s.length;i++) {

   System.out.println("dataValue:"+s[i]);

}  

mean();

System.out.println("mean:"+m);

var();

System.out.println("variance:"+v);

stddev();

System.out.println("standard deviation:"+st);

}

public  static void addDataValue(double value) {     // addes data values to array

 s[count]=value;

 count++;

}

public static double mean() {        // returns mean

double sum=0.0;

for(int i=0;i<s.length;i++) {

   sum+=s[i];

}

m = sum/s.length;

return m;

}  

public static double var() {    //returns variance

double mm = mean();

    double t = 0;

    for(int i=0;i<s.length;i++) {

        t+= (s[i]-mm)*(s[i]-mm);

}

    v= t/(s.length-1);

     return v;  

}

public static  double stddev() {        // returnsn the stardard deviation

st= Math.sqrt(var());

return st;

}

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Check Disk detects disk integrity errors and fixes them. Match the types of errors Check Disk detects and fixes with the error descriptions.
1) A series of used clusters on the hard disk drive that are not associated with a specific file.
2) Occurs when two files claim the same cluster.
3) Files that exist on the hard drive but which are not associated with a directory in the index.
4) A portion of the hard disk that cannot be used.

Answers

Utilizes the error descriptions to identify and correct. 1) A collection of used clusters just on hard drive that are just not linked to every particular files.

What exactly is an error?

A mistake is indeed an inaccurate and improper activity. An error is often used interchangeably with word mistake. The term "error" in statistics describes the discrepancy between the computed result or the correct value.

What is mistake and what does it look like?

The discrepancy between both the measured & actual values might be used to identify a error. if the measurement tool or instrument is identical between the two operators. It's not required for two operators to achieve results that really are similar. An ERROR is used to describe the measurement disparity.

To know more about Error visit:

https://brainly.com/question/19575648

#SPJ4

On the vertical axis of the Line chart, define 10 as the
Minimum bounds and 75 as the Maximum bounds.

Answers

Sine on the vertical axis of the Line chart, define 10 as the Minimum bounds and 75 as the Maximum bounds, the steps to take are:

1. Select the vertical axis on the chart. (with the full numbers)

2. Right select the vertical axis

3. Select Format Axis.

3. In the place of bounds, in the Min box type 20000 and then press ENTER.

4. In the area of the Maximum box, type the number 140000 and select Enter.

How do you set a minimum bound in Excel?

To do so, Change any of the settings under Value axis scale by clicking Scale in the Format Axis dialog box: Enter a different number in the Minimum or Maximum boxes, respectively, to modify the value at which the vertical (value) axis begins or stops.

Note that a sort of chart used to display information that varies over time is a line chart. A sequence of several points are plotted and connected with a straight line to make line charts. To monitor changes over both short and long time periods, line charts are utilized.

Therefore, A line chart, also known as a line graph or a line plot, uses a line to link a group of data points. This sort of graph is one that do displays values in order.

Learn more about Line chart from

https://brainly.com/question/26233943
#SPJ1

True or False? O(1) is called constant time.

Answers

Answer:

True

Explanation:

The notation O(n), pronounced big-O of n is an indication of the complexity of an algorithm. It is an indication of the relationship between the processing time and size of input

So O(n) means the time - input relationship is linear. If it takes x time units to process an input of size y then it will take 5x units to process an input of size 5y

O(1) means the time to process is independent of size. It is always constant. For example in computer algorithms, the time to access a value in an array of values is independent of the size of the array because arrays are indexed and access time for any element of the array is the same

O(n²) means that the time taken varies as the square of the input size

and so on

Your mom cuz it’s your mom

Which field is not used for non inventory products

Answers

The field that is not used for non inventory products are:

BOMs Manufacturing OrdersShipments.

What is a non inventory product?

An item that a business buys for its own use or to resell but does not track in terms of quantity is one that can be referred to as a non-inventory item.

Note that Non-inventory items are frequently low-value goods for which maintaining an exact count is one that would not significantly benefit the company.

Therefore, based on the above, Items that are not inventoried can only be utilized in invoices, customer orders, and purchase orders (can be bought as well as sold).

Learn more about non inventory products from

https://brainly.com/question/24868116
#SPJ1

In c # Instructions Alignments
8A-Write an if statement that determines whether the variable y is equal to 20. If it is, assign 0 to
the variable x.

Answers

The given C program will be:

if (y == 20) {

 x = 0;

}

What do you mean by C program?

C is a programming language for general-purpose computers. Dennis Ritchie invented it in the 1970s, and it is still extensively used and influential today. C's characteristics are designed to accurately match the capabilities of the targeted CPUs. It has a long history of use in operating systems, device drivers, protocol stacks, and, to a lesser extent, application software. C is commonly used on computer architectures ranging from supercomputers to microcontrollers and embedded systems. C, the successor of the programming language B, was created by Ritchie at Bell Labs between 1972 and 1973 to build tools that ran on Unix. It was used to re-implement the Unix operating system's kernel.

To learn more about C program

https://brainly.com/question/28873607

#SPJ13

Which of the following can be a dictionary value?

a. String
b. Floating point number (float)
c. Dictionary
d. Integer (int)
e. List

Answers

Answer:

All of them can be dictionary values.

If you are talking about dictionary keys, then only string, float and int can be keys so the answer would be (a) (b) and (d)

Explanation:

Which is beter 4G network or 5G network?
What's the difference between them?​

Answers

Answer:

5G

Explanation:

5G can be massively faster than 4G and 3G speed

5G speed is lighting fast while on a 4G network it takes 50 minutes on average.

5G also adds more space so you can have higher data speed.

Answer:

5G up to 100 times faster than 4G

Yet even today, with 5G technology still at the early stage of its evolution, speeds are lightning fast. For example, AT&T's 5G Plus network achieves typical download speeds of 75 Mbps, which will download a movie in just 49 seconds. On a 4G network, this takes 50 minutes on average.

Answer in 3-5 sentences for each

What is a baseline? Why is recording an accurate baseline critical to the troubleshooting process?

Demonstrate through discussion that you understand the types of software applications that are prime for NLB and those that are better protected with failover clusters. Discuss various operations known and dissect the functions. Which functions should be protected by which technology?

Answers

A baseline is a constant point of comparison that is employed in comparison studies.

What is baseline?

In business, a project's or product's success is frequently evaluated in comparison to a baseline figure for expenses, sales, or any other number of factors. A project may go over or under its predetermined benchmark.

For instance, a business can use the number of units sold in the first year as a benchmark against which to compare subsequent annual sales in order to assess the success of a product line. The baseline acts as the benchmark against which all subsequent sales are evaluated.

Any number that acts as an acceptable and specified beginning point for comparisons can be used as a baseline. It can be used to assess the results of a change, monitor the development of an improvement project, or compare two periods of time.

Therefore, A baseline is a constant point of comparison that is employed in comparison studies.

To learn more about baseline, refer to the link:

https://brainly.com/question/14799723

#SPJ1

What piece of equipment can be used to turn a tablet into a full-fledged computer?

a numeric keypad
a stenotype machine
a wireless keyboard
a virtual keyboard

Answers

Explanation: a wireless keyboard / mouse and Bluetooth mouse / keyboard, of course make sure your tablet is plugged in so its charging then basically have fun you basically have a Walmart version of the big deal have fun! :)

The piece of equipment that can be used to turn a tablet into a full-fledged computer is a wireless keyboard. The correct option is C.

What is wireless device?

Any gadget that has the ability to communicate with an ICS network via radio or infrared waves, often to gather or monitor data but occasionally to change control set points.

Without the use of cables or wires, wireless technology enables communication between users or the movement of data between locations. Radio frequency and infrared waves are used for a lot of the communication.

Wi-Fi transmits data between your device and a router using radio waves that travel at specific frequencies. A wireless keyboard is the piece of hardware that can be used to convert a tablet into a complete computer.

Thus, the correct option is C.

For more details regarding wireless device, visit:

https://brainly.com/question/30114553

#SPJ2

how installing and maintaining software in one technology
system can improve productivity for an individual or organisation

Answers

Answer:

Installing and maintaining software can improve productivity because it keeps employees updated. Information syncs in real-time, meaning they stand to gain hours of admin and data entry back each day, which means they can focus on the tasks that make customers happier.

Select the correct word to complete the sentence.

, developed by the National Science Foundation, evolved into the modern Internet backbone structure.

NSFNET
Pentium
UNIVAC
Telenet

Answers

Answer:

NSFNET

Explanation:

Answer:

NSFNET

Explanation:

After completing a repair on a vehicle what should the technician do next?
Have the customer verify the repair
Perform a quality inspection
Return the vehicle to the lot
Move to the next job

Answers

The next thing which the technician should do after completing a repair on a vehicle is to B. Perform a quality inspection

What is Vehicle Repair?

This refers to the process of restoring to full functionality the normal working process of a vehicle that makes use of mechanical components or parts.

This process requires the diagnostics of the car to find the area of the vehicle that contains the fault and then proceed to repairs and this is done by the fixing or replacing of the damaged parts.

Hence, it can be clearly seen that when a vehicle technician has completed his repairs on a faulty vehicle, the next step he would do would be to perform a quality inspection to verify that the problem is solved.

With this in mind, we can boldly state that the correct answer to the given question is option B as explained above.

Read more about vehicle repairs here:

https://brainly.com/question/21415662

#SPJ1

Discuss some of the ways in which analytics assist information systems management as well as the organization at large. What kinds of data are most useful and how is it gathered? How do managers protect customers, clients, and even employees’ personally identifiable information in order for those who may not have permission to view it? How is the data secured in general?

Answers

The ways in which analytics assist information systems management as well as the organization at large are:

It often personalize one's customer experience. It make better business decision-making. It often Streamline operations. It lowers Mitigate risk as well as handle setbacks.

What kinds of data are most useful and how is it gathered?

The types of data that to be most useful to firms are:

Customer dataIT data internal financial data.

They can be gathered through:

Online poolsSurveysTransactional TrackingObservation, etc.

Note that data is secured in general through the use of good security measures and also through security technology.

Learn more about analytics from

https://brainly.com/question/28376706
#SPJ1

What is the full meaning of COPOOL​

Answers

an arrangement between people to make a regular journey in a single vehicle, typically with each person taking turns to drive the others.
"they organized carpools to deliver the kids to school"

which creative common license type allows others to use and build upon work non- commercially, provided that they credit the original author and maintain the same licensing.

Answers

Answer:

CC BY-NC-SA

Explanation:

BY ==> credit has to be given to original author

NC ==> non-commercial

SA  ==>Share alike ; modified work should be reused under the original license

Top one pls I need help

Answers

Answer:

spyware

Explanation:

What is the full meaning of JAVA​

Answers

Answer:

there is No specific meaning for java.

Explanation:

Japanese Vexillological Association

Ewaste reuses or refurbishes ewaste and creates a new product.
True or False

Answers

Answer:

true

Explanation:

yes

Answer:

true true true true true true true true true true true true true true true true

Explanation:

duh

Other Questions
the first step in decision making is to blank . multiple choice question. identify relevant costs and benefits perform a differential analysis define the alternatives A. Use inductive reasoning to predict the next line in this sequence of computations. Then use a calculator or perform the arithmetic by hand to determine whether your conjecture is correct.B.Make a conjecture by predicting the correct numbers in the line below. harry holds 1,000 pounds of perishable fruit in storage for fresh foods corporation under a contract with fresh foods. fresh foods refuses to pay for the fruit being held in storage and, therefore, the fruit is at risk of spoiling. after fresh foods refuses to pay for the fruit, harry sells the fruit to green grocery stores, inc. this sale by harry to green grocery represents Two gongs strike at intervals of 22 and 77 minutes respectively. At what time willthey strike together again if they start simultaneously at 12 noon ?Click here to enter answer Briefly explain how ONE historical event or development in theperiod 1774 to 1787 that is not explicitly mentioned in thecould be used to support Wood's interpretation. Find the length of the missing hypoden as a right triangle if the two legs have lengths five and 12. The distance between two cities on a map is 4.1 centimeters. The map uses a scale in which 1 centimeter represents 18 kilometers. What is the actual distance between these two cities in kilometers? Find the missing sides Solve this system of equations by graphing. First graph the equations, and then type the solution.y=5/2x1y=7/2x3 Opera was developed by the Camerata, who are best described as A: A group of church composers B: A group of nobles, poets, scholars, and composers. C: A group of traveling perfomers. D: A group of peasant musicians. your car has been making an odd noise consistently for about a week. one day while driving, the sound suddenly changes and becomes louder than it was before. the fact that you notice the change indicates that the volume of the sound has crossed your I need to know everything I need to study for my AP computer science principles Unit 1 test. First person to answer will be given "most brainliest". What were Hitlers beliefs that he expressed in Mein Kampf?ResponsesJewish people were to blame for Germanys problems.Revolution was needed to create a classless society.Germany could control the world with the help of the Japanese.All races could live peacefully under German domination. Louis and Michael met up for lunch. When they were done,Louis traveled 4 blocks east and Michael traveled 1 blocks west. How many blocks away from Louis was Michael? Analyzing A young entrepreneur has a great idea for a start-up and has secured funding from a venture capitalist. The venture capitalist wants 15 percent of the company and expects a 20 percent return on his investment. Is this a good deal for the entrepreneur? Why or why not? Scientific Argument 4.1 claim 2 Is it a chance of the 3rd world war? Which of the following represents the difference quotient for f of x is equal to 4 over x question mark jimmy read 2/15 of a book on Monday, 1/3 on Tuesday, 2/9 on Wednesday and 3/4 of the remainder on Thursday. If he still had 14 pages left to read on Friday, how many pages were there in the book? georgia sees her friend bill running down the street. without warning, bill falls flat on his face. while georgia finds this funny, she does not laugh because she knows that bill does not find this funny. in not laughing, georgia is demonstrating