blank uses computer resources from multiple locations to solve a common problem.

Answers

Answer 1

Answer:

Grid computing

Explanation:


Related Questions

The way things are arranged on a publication is referred to as the _____.

style
guides
layout
scheme

Answers

Answer: I’m pretty sure it’s layout

Describing How to Create a Combination Chart
Select the correct navigational path to create a combination chart
Select the chart
Click the Chart Tools
tab
Select the data series from the Chart Area list.
Click the Chart Tools
tab
Click Change Chant Type.
Choose a chart type for the selected data series and click OK.

Answers

Answer:

format and design

Explanation:

i took test

The standard format rules for a professional letter should be followed.
True
False

Answers

The answer is, true.

Can someone help me on how to start this essay?

Answers

Answer:

Start off with an interesting introduction (add questions) make it interesting.

You can star by explaining what and innovator means for you why are you an innovator and what type of inovator

Context clues help students read more by

keeping vocabulary at a manageable level

increasing the amount of required reading

saving the time spent looking up words

making them take the time to ook up new words​

Answers

Keeping vocabulary at a manageable level

Answer:

c) Saving time

Explanation:

I took a test on it on edg

Which of the following might cause a mobility impairment that limits computer use? Select 3 options.
a color blindness
Odyslexia
O neurological issue
injury
O genetic issue

Answers

Explanation:

A color blindness , injury .

Answer:

neurological issueinjurygenetic issue

Explanation:

The question is about mobility impairment. Color blindness and dyslexia have to do with vision, so rarely cause mobility issues related to computer use. Rather they would cause issues related to reading the screen.

The remaining three choices are the ones you want.

The CPU is often called the
of the computer.

Answers

Answer:

Explanation:

Tower?

Answer:

Its often called the brains of a computer.

Explanation:

is anyone willing to do my DIT tests for me?

Answers

Answer:

no sorry

Explanation:

Pls help me!!!!!!!!!!!!!

Answers

the answer is B!! ;)

Answer:

think It B

Explanation:

not 100% sure

? Assessment
8/10
Which of the following products likely include Internet of Things (IoT) connected
devices?
A soap dispenser that dispenses soap
when it detects a hand underneath.
A smart toilet flushes automatically
after use.
Lights that turn on when someone
enters the bathroom.
None of the above

Answers

Answer:

none of the above

Explanation:


You should structure the
first before you search for a relevant picture.

Answers

Answer:

True

Explanation:

Is this statement true or false?

A chart generated in Microsoft Excel can be plugged into a presentation authored using PowerPoint.


true

false

Answers

Answer:

true

Explanation:

a chart generated in Microsoft excel can be plugged into a presentation authored used PowerPoint. you can only it from excel (by right-clicking on the chart and select copy)and the paste it is PowerPoint. or you can save it and import it as an image(2)

Answer:

True

Explanation:

I got it right on a quiz on k-12

You created a plan for the program to find the slope, as shown below.
# Find the slope of the user's two points
# Get the points
# Calculate the slope
# Display the result
This plan is in the form of
O flowcode
O pseudochart
O pseudocode
O flowchart

Answers

Answer:

Explanation:You created a plan for the program to find the slope, as shown below. - 18809700. ... Display the result. This plan is in the form of. O flowcode. O pseudochart. O pseudocode. O flowchart. Add answer. Log in to ... shown below. # Find the slope of the user's two points # Get the points # Calculate the slope

Who is responsible for providing the equipment employees need to stay safe on the job (like a hardhat or safety
goggles)?
• the Occupational Safety and Health Administration (OSHA)
O the employer
the labor union
O the employee
MacBook Pro

Answers

Answer:

the employer

Explanation:

Answer:

the employer

Explanation:

What is the keyboard shortcut for copying text?

Ctrl+P
Shift+P
Ctrl+C
Ctrl+P

Answers

Answer:

ctrl+c

Explanation:

Answer:

Ctrl+C

Explanation:

what is a subjective point of view

Answers

Answer:

one based on opinion rather than fact, upon which reasonable people could disagree.

Explanation:

An example of a subjective point of view is a position taken on whether a movie or book is good or bad


a.) WAP to display the sum
of the numbers I to
100​

Answers

Answer:

I am confused on what you are asking

Answer:

The only WAP i know is cardi Bs and Megan Thee Stallion

Explanation:

If you needed a job and wanted to find places that were hiring, how could you do that without fast internet access?

Answers

Answer: you cant do it inless you have wifi every where you go i think becuase i try it before thanks

Which line of code outputs the decimal portion of a float stored in the
variable x?

Answers

Answer:

the answer is a

Explanation:

Evonka is listening to music from an online music provider (such as Pandora or Jango). She builds a list of music preferences, including favorite songs. The music service then suggests additional songs she might enjoy. The music provider is an example of a cloud-computing application that uses a technology for collaborative filtering, which helps define the list of songs available to listeners. Which term describes this technology?

Group of answer choices

Bit-Torrent

Grid Computing

Software as a Service

Crowdsourcing

Answers

Answer:

D. Crowdsourcing

Explanation:

Crowdsourcing can be defined as a collaborative process which typically involves completing a project (task) and solving a problem through a group of people (crowd) that are geographically dispersed over the internet.

Basically, crowdsourcing refers to an outsourcing technique which allows a project or task to be jointly completed by a group of people (crowd) such as volunteers or freelancers who are made to work remotely over the internet.

In this scenario, an online music provider such as Pandora or Jango uses crowdsourcing for collaborative filtering, which helps define the list of songs available to listeners.

Write a while loop that replaces every occurrence of “cat” in the message with “dog” using the indexOf and substring methods.

Given:
public class ChallengeReplace
{
public static void main(String[] args)
{
String message = "I love cats! I have a cat named Coco. My cat's very smart!";

// Write a loop here that replaces every occurrence of "cat"
// in the message with "dog", using indexOf and substring.






}
}

Answers

Answer:

Complete the program using:

int index = message.indexOf("cat");

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

System.out.print(message);

}

}

Explanation:

The line gets the index of string "cat"

int index = message.indexOf("cat");

The following operation is repeated until all occurrence of "cat"s has been replaced with dog

while(index != -1){

message = message.replace("cat","dog");

index = message.indexOf("cat");

}

This prints the new string

System.out.print(message);

}

}

The program illustrates the use of loops.

Loops are used to perform repetitive and iterative operations.

The code segment where comments are used to explain each line, is as follows:

//This gets the index of "cat" in the string message

int index = message.indexOf("cat");

//The following loop is repeated, until there is no occurrence of "cat" in the string

while(index != -1){

//This replaces "cat" with "dog"

message = message.replace("cat","dog");

//This gets another index of "cat" in the string message

index = message.indexOf("cat");

}

//This prints the new string

System.out.print(message);

}

}

At the end of the loop, all occurrence of "cat" are replaced with "dog".

Read more about similar programs at:

https://brainly.com/question/20461017

are our current copyright policies helping society or hurting society? i need help

Answers

Answer:

helping society

Explanation:

it can help you to protect your works and creativity and brilliant ideas from liars and cheaters and frauds

All of the transactions that occur in connected markets across the economies of different countries create...
A. The global economy
B. Your country’s economy
C. A goods and services market
D. The stock market

Answers

Answer:

A. The global economy

Explanation:

The development of the global economy can be traced back many hundreds of years when traders from the east and west came together to exchange goods along all connected markets of varying economies.

Which search engine does not track users? Choose the answer.
Bing
Yahoo!
Google
DuckDuckGo

Answers

Answer:

I think the answer is Bing,am familiar with others

Bing does not track users.

Alisa Miller claims that today's college graduates:

Answers

Answer:  know less about the world then there counterparts

Explanation:

Answer:

know less about the world then there counterparts

Explanation:

What is the best thing about Tuesday’s in general? Why?

Answers

Answer:

tbh I really don't know what you mean

Can someone help with these questions it's for drivers ed class

Answers

3) A
4)D
5)A
6)D
7)C
8)A
9)A
10)B
These are for the first two

what type of exel function searches for a specific value in your data using the spreedsheet columns and an unique identifier within those columns

Answers

Answer:

Excel's vLookup formula pulls data from one spreadsheet into another by matching on a unique identifier located in both spreadsheets. For example, we want to add a column for email address but that data exists on a separate spreadsheet.

Explanation:

What will the "background-color" of the "topButton" be when the program is finished running?
A. red
B. orange
C. blue
D. green

Answers

Answer:

C. blue

Explanation:

Plz Help!

1. How does it make you feel knowing that everything you do online is stored and can be searched for, shared, or even broadcast?

2. What does it mean to have a positive digital footprint?

Answers

Answer:

Read explanation

Explanation:

1. Honestly depending on the company it doesn't make me that scared to know everything I do can be shared, broadcasted, or searched. We are getting to that point in time where our data is more useful than us. Negative activities on the web can have consequences if you aren't careful though.

2. When you have a positive footprint you aren't using the internet for illegal activities, hate, or any other form of something negative you wouldn't do in real life. Companies sometimes factor in your digital footprint when hiring you, if you are toxic and negative that may factor in when being hired. Once something is out there it's there until it's deleted from the server, which most big companies don't do when you "delete" a post.

It is fine for a search record because sometimes it helps you a lot when you need something back, and it is stored.

What is a positive digital footprint?

A good online reputation that allows you to grow your social network and accomplish your job goals is indicated by a favorable digital footprint.

When you leave a positive digital footprint, you don't engage in hate speech, unlawful activity, or any other undesirable activity that you wouldn't do in real life.

When something is published, it remains there until the server deletes it, which most major corporations don't do when you “erase” a post.

Therefore, it is acceptable for a search record because it occasionally comes in very handy when you need to retrieve something that has been stored.

To learn more about a positive digital footprint, refer to the link:

https://brainly.com/question/27834450

#SPJ2

Other Questions
Which best describes the effect of the expression Woes me? A chemist measured the amount of calcium sulfide produced during an experiment. She finds that of calcium sulfide is produced. Calculate the number of moles of calcium sulfide produced. How many people have you sacrificed to floor gang? Can someone help me with this question? Look at the image! Hannah has 2 hamsters named Bob and Fran. Bob weighs 3.62ounces, and Fran weighs 2.79 ounces. How much heavier is Bobthan Fran? please answer fastttt A 2-column table with 6 rows. The first column is labeled t with entries negative 3, negative 2, negative 1, 0, 1, 2. The second column is labeled f of x with entries negative 12, m, 4, 0, negative 4, negative 2. If the table of the function contains exactly two potential turning points, one with an input value of 1, which statement best describes all possible values of m? m 12 12 < m < 4 m 4 m 4 or m 12 1. How many centavos are there in P 125.75? Which numbers below are solutions to the inequality 4y+37? indicate the level of measurement for the data set describe .certification ratings from core server given at the end of the semester A.NorminalB.IntervalC.RatioD.Ordinal please dont answer with anything bad :((( extremely need help What was the primary economic activity in ancient Egypt?O farmingO manufacturingO miningOfishing Why did Jamestown settlers have such a hard time when they came to the New World?A. The land was not suitable for plantingB. The natives were not agreeable with them because they felt threatenedC. The people were homesickD. The sunlight wasnt strong enough Jon caught four fish that weighed a total of 276 pounds. The kingfish weighed twice as much as the amberjack and the white marlin weighed twice as much as the kingfish. The weight of the tarpon was 5 times the weight of the amberjack.How much did each fish weigh? What common feature of well-made web apps helps them stand out from static emailadvertisements?O They help advertise product.O You can add a chat window for support.You can integrate images and text related to your brand.You can reach more people. Do you agree or disagree that cell phones are as addictive as alcohol, nicotine, and gambling? Why This is probably easy, but please help me En octubre voy a trabajar con mis primos en su pais. Ellos son_____Les ayudo 30 dias en la casa de sus padres-puertorriqueos-canadienses-O espaoles-dominicanos What mineral is harder, Calcite or Olivine? 52:46Which of the following is an example of a healthy short-term goal?A.bench press an additional 100 poundsB.lose 40 poundsC.eat nutritious mealsD.improve grades from one academic year to the next We typically hear of the gains from trade coming through specialization wherein each nation produces more of and exports that good which it produces at relatively less cost, and produces less of and imports that good which it produces at relatively higher cost. Indeed, classical trade theory is based on the benefits from such specialization in production. But, what if the nation cannot move any resources from the production of one good to the production of other and therefore cannot specialize in production