James wishes to access a certain software service via different computing systems over the Internet. What technology provides software on demand over the Internet? A. mobile computing B. grid computing C. green computing D. cloud computing E. autonomic computing

Answers

Answer 1

Answer:

D. Cloud Computing.

Explanation:

Cloud Computing is a process in which network of remote server is used to store, manage, and operate the data. By using cloud computing data is stored on remote servers instead of local space in the computer.

Cloud Computing also enables to access data through internet over various devices. Cloud computing is a flexible adjuration service avaible through internet.

In the given case, James should use the cloud computing software to access his data over the internet through various devices. Thus the correct option is D.

Answer 2

Answer:

D. Cloud Computing

Explanation:


Related Questions

According to the Bureau of Labor Statistics, how many new technical positions will be created in the IT field by 2020?
A. One thousand
B. Ten thousand
C. One million
D. One billion

Answers

Answer:

One million

Explanation:

because I get correct

An author is preparing to send their book to a publisher as an email attachment. The file on their computer is 1000 bytes. When they attach the file to their email, it shows a 750 bytes. The author gets very upset because they are concerned that part of their book has been deleted by the email address
If you could talk to this author, how could you explain what is happening to their book?

Answers

Answer:

See explanation

Explanation:

My explanation to the author is that:

The reduction in size of the attachment doesn't mean that some parts of the book (i.e. the attachment) has been deleted.

I'll also made him understand that the book will retain its original size and contents after downloading by the recipient of the mail.

In the Word 2016 window, where is the Status bar located?

Answers

Answer:

The Word status bar is displayed at the bottom of your document window. Just click it. You can customize if needed, just right click on the status bar.

Explanation:

Answer:

hi

Explanation:

Which of the following best describes the reason behind proper shutdown procedures on a computer?

It stops the hard drive from spinning to ensure software applications close completely and the operating system shuts down properly.
It slams the computer system to a halt and saves you time.
It is as easy as pressing the power button – there is no “right” or “wrong” procedure for shutting down a computer.

it's A

Answers

Answer:

it is the first statement that you have. The other options end up hurting your computer more.

Explanation:

the answer is:

a. it stops the hard drive from spinning to ensure software applications close completely and the operating system shuts down properly.

Select the correct answer.
Samantha was calculating a mathematical formula on an electronic spreadsheet. She used multiple values to recalculate the formula. Where will
the CPU store data for easy access and quick retrieval during these computations?
A read-only memory
B.
random-access memory
C. hard disk
D.
compact disk

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct answer is B.

Explanation:

Samantha was calculating a mathematical formula on an electronic spreadsheet. She used multiple values to recalculate the formuls, CPU will store the data in random access memory for easy access and quick retrieval during these computations.

Because when CPU calculating or doing computation, it stores the data in RAM for easy access and retrieval and for fast computation.

However, it is noted that read-only memory is used only for reading information from memory. While hard disk and the compact disk is used for storing the data permanently.


Which activities below might have a negative effect on your online reputation?

Answers

Answer:

I believe the last 2 maybe even the one above the second to last answer

Explanation:

For a hacked computer which type of network is the company more likely using

Answers

Answer:

My awnser would be a public/unseccure one

Answer:

stuff

Explanation:

_____emphasizes on proper breathing and the mind-body-spirit connections.​

Answers

The answer would be Yoga.

Yoga's emphasis on breathing and the mind/body/spirit connection also yields strong emotional benefits.
I think it yoga i hope this helps

What the difference between a job and a career

Answers

Answer:

A job is something that may only last a few years but a career lasts a lifetime.

Answer:

A job means that you are going to work FOR YOUR PAYCHECK. A career means that all of your jobs, experiences, and training programs is helping you in pay or responsibility.

the benefits and drawbacks of online banking compared to walking into a brick and mortar bank branch to complete your banking face to face

Answers

Answer:

Pros and Cons of Online Banking

Advantages

It is fast and efficient. Funds get transferred from one account to the other very fast. You can also manage several accounts easily through internet banking.

Disadvantages

Your banking information may be spread out on several devices, making it more at risk.

Pros of online banks:

Earn more interest on your savings

Potential for lower fees or no fees

Convenience of online banking

Cons of online banks:

Potential for higher ATM fees

Not ideal for those who don’t use the internet

Online transactions can take time to process

Motor Banking

A brick-and-mortar bank also can be a good place to get help for other aspects of your finances. ... If you're paying a lot of money in credit card interest to various other banks, your bank branch employees might be able to offer you a debt consolidation loan to help you save money.

Pros of brick-and-mortar banks:

You can stop by in person to ask questions

Convenience and a personal experience

You may have access to a broad ATM network

Cons of brick-and-mortar banks:

Fees and interest rates may not be competitive

Most big banks pay almost nothing on their savings accounts

Combining multiple systems into a larger system is called ____.

Answers

data integration is what i think. not 100% sure tho.

Answer:

data integration

Explanation:

A website design can be rated as acceptable if it enables the site to fulfill its purpose and also
does not contain any broken, mislabeled, or misdirected hyperlinks.
contains a link to the site map on the main navigation menu.
meets audience expectations for navigation, layout, and readability.
implements a site search feature in addition to a main navigation menu.

Answers

Answer:

does not contain any broken, mislabeled, or misdirected hyperlinks.

Explanation:

All the other answers don't make sense, you are not looking to meet the audiences needs, you want to make sure the website is good enough to be considered acceptable, I only see this answer as possible.

Answer:

(A) does not contain any broken, mislabeled, or misdirected hyperlinks.

PLEASE HELP, True or False: The term whitespace speaks to the design of a website

Answers

Answer:

true!

Explanation:

Answer:

True

Explanation:

Design and implement an algorithm that gets as input a list of k integer values N1, N2,..., Nk as well as a special value SUM. Your algorithm must locate a pair of values in the list N that sum to the value SUM. For example, if your list of values is 3, 8, 13, 2, 17, 18, 10, and the value of SUM is 20, then your algorithm would output either of the two values (2, 18) or (3, 17). If your algorithm cannot find any pair of values that sum to the value SUM, then it should print the message ‘Sorry, there is no such pair of values’. Schneider, G.Michael. Invitation to Computer Science (p. 88). Course Technology. Kindle Edition.

Answers

Answer:

Follows are the code to this question:

def FindPair(Values,SUM):#defining a method FindPair  

   found=False;#defining a boolean variable found

   for i in Values:#defining loop for check Value  

       for j in Values:#defining loop for check Value

           if (i+j ==SUM):#defining if block that check i+j=sum

               found=True;#assign value True in boolean variable

               x=i;#defining a variable x that holds i value

               y=j;#defining a variable x that holds j value

               break;#use break keyword

       if(found==True):#defining if block that checks found equal to True

           print("(",x,",",y,")");#print value

       else:#defining else block

           print("Sorry there is no such pair of values.");#print message

Values=[3,8,13,2,17,18,10];#defining a list and assign Values

SUM=20;#defining SUM variable

FindPair(Values,SUM);#calling a method FindPair

Output:

please find the attachment:

Explanation:

In the above python code a method, "FindPair" is defined, which accepts a "list and SUM" variable in its parameter, inside the method "found" a boolean variable is defined, that holds a value "false".

Inside the method, two for loop is defined, that holds list element value, and in if block, it checks its added value is equal to the SUM. If the condition is true, it changes the boolean variable value and defines the "x,y" variable, that holds its value. In the next if the block, it checks the boolean variable value, if the condition is true, it will print the "x,y" value, otherwise, it will print a message.  

01000111 01110101 01100101 01110011 01110011 00100000 01110111 01101000 01100001 01110100 00111111

Answers

12435 425 2 52 35 Guess what?

Frank lives in an area that experiences frequent thunderstorms. What precautionary measure should he adopt?
A.
protect telephone lines from voltage spikes
B.
keep his system in a warm room
C.
carry out an annual system backup
D.
change his motherboard How does the flu affect businesses and governments? Could it affect residents’ access to certain resources?

Answers

Answer:

I would go with A

Explanation:

Haley is helping to choose members for a customer satisfaction team. Which
of the following employees demonstrate skill in focusing on the team's
purpose?
A. Paige works harder than anyone but has to be reminded which
tasks have top priority.
B. Ethan is always busy--for example, checking email during
meetings.
O C. Whitney is fun to be around because every situation reminds her
of a funny story.
D. Jesse constantly looks for better ways to solve problems for
customers.

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct answer is D.

Explanation:

Haley is helping to choose members for a customer satisfaction team. Which  of the following employees demonstrate skill in focusing on the team's  purpose?  So, this question is asked about which person is most suitable for customer satisfaction team.

A. Paige works harder than anyone but has to be reminded which

tasks have top priority.  (this is not a suitable person, because it has other responsibilities such as prioritizing the tasks etc in the organization. so such, Paige may prioritize the customer response and complain, and it possible she can ignore the customer that she may put at the lowest priority)

B. Ethan is always busy--for example, checking email during

meetings. ( this is also not a suitable candidate for the customer satisfaction team.

C. Whitney is fun to be around because every situation reminds her

of a funny story. ( Whitney is also a not suitable candidate for this job, because to handle customers and satisfy them is not related to fun and have to be funny with a serious customer in business.)

D. Jesse constantly looks for better ways to solve problems for

customers. (Jesse is a suitable candidate that looks for better ways to solve problems for customers and customer like such a representative who solves their problem at their earliest.

Jesse is always looking for better ways to assist customers with their issues.  Thus, option (D) is correct.

What is the customer?

A client is a person who purchases goods, services, or ideas from a seller, vendor, or supplier in exchange for money or another useful consideration. This definition applies to sales, commerce, and economics. An individual or business that purchases goods or services from another company is known as a customer. Customers are crucial to businesses because they generate income; without them, they would cease to exist.

Jesse is always looking for better ways to assist clients with their issues. of the following team members show an aptitude for concentrating on the goal of the group

Therefore, option (D) is correct.

Learn more about customers here:

https://brainly.com/question/13472502

#SPJ1

Video-sharing sites allow videos to be uploaded in which file format? A. .avi B. .svg C. .tiff D. .xls

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

This question is about video-sharing sites and in it asked which file format are allowed for uploading the video file.

a. AVI (True)

Yes, all video sharing sites allow uploading avi file. because .avi format file is a kind of video file format such as mp4, 3gp etc.

B. SVG (False)

SVG format files belong to images and SVG means scalable vector graphics. The file that has .svg extension is not a video file it is an image file.

C. tiff (False)

.tiff mean tagged image file format and it is a graphics or image file. So, it does not belong to any video file format.

D. xls (False)

This is not true. Because .xls shows that it is an excel file. Excel is a type of spreadsheet software that is used to store data and to calculate the data. so, it is not a format of the video file and video sharing sites do not allow the upload such type of file.

Answer:

A. .avi

Explanation:

Which of the following is computer memory that works while the computer is turned on?
- Input
- Hardware
- ROM (Read-only memory)
- RAM (Random- access memory)

Answers

Answer:

Ron is the answer

Explanation:

In that sense it is similar to secondary memory, which is used for long term storage. When a computer is turned on, the CPU can begin reading information stored in ROM without the need for drivers or other complex software to help it communicate.

Answer:Which of the following is computer memory that works while the computer is turned on?

- Input

- Hardware

- ROM (Read-only memory)

- RAM (Random- access memory)

Explanation: give five charactics of RAM and ROM  using  the table below

(3.01 LC)
What does Python provide in its built-in function library? (5 points)
A. Computer books
B. Hardware manuals
C. Pre-written code
D. Test questions

Answers

Answer:

The answer to this question is given below in the explanation section. However, the correct answer to this question is C.

Explanation:

What does Python provide in its built-in function library?

A. Computer books  (false): because the built-in function library does not provide a computer book, computer book can be in form of pdf, or in document form or it can be in printed form.  The built-in function library contains a pre-written code that helps the programmer in making their code reusable and easier.

B. Hardware manuals  (false): The hardware manual can be in a soft or hard form that guides the user on how to operate the system.

C. Pre-written code  (True); It is true, that not only Python, but every programming language provides pre-written code in their built-in library function.

D. Test questions (false):

Test questions are a type of assesment questions to assess someone on particular knowledge/skill. so, this is the wrong option.

Gino has purchased a secondhand laptop. It came preinstalled with various application software and system tools. Which tools can he use for these situations? disk cleaner data recovery utility diagnostic program antivirus Gino's system is acting odd after browsing the internet, and he needs to scan the system. arrowRight Gino needs to check the operational status of the computer's hardware and software. arrowRight Gino notices many corrupted files and wants to extract good data from them. arrowRight Gino needs to locate unnecessary files that are taking up a considerable amount of space. arrowRight

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

This question is about matching the column. So, Gino used the various preinstalled application software and system tools for the following purposes.

Disk cleaner: Gino needs to locate unnecessary files that are taking up a considerable amount of space.

Data recovery:  Gino notices many corrupted files and wants to extract good data from them.

Utility diagnostic program: Gino needs to check the operational status of the computer's hardware and software.

Antivirus: Gino's system is acting odd after browsing the internet, and he needs to scan the system.

I will mark Brainliest

Answers

1. There are satellites that work with Antennas In the sky.

2. They help with recipes, They are good for games, They are also great for chatting. But, they run out of battery fast, they also radiate the room, they costt alot.

3. You can see definitions, But it can be false

Joe always misspells the word calendar. He types the word as calender but the correct spelling appears on the document. Which feature of the word processor corrects this word?

Answers

Answer:

Auto correct feature

Explanation:

It corrects word written wrongly automatically

This diagram shows who is responsible in preventing cyberbullying. A flowchart. Top box is labeled Cyberbullying can be prevented! A line leads to two boxes labeled Parents/guardians, Schools. Lines lead from Schools to boxes labeled Administrators, Teachers, Students. Based on the diagram, which explains the most effective way to stop cyberbullying? Teachers monitor home computer use, students establish technology-usage policies at school, and parents teach online safety. Parents monitor home computer use, administrators secure school computers, and students report cyberbullying. Students monitor home computer use, administrators monitor teachers, and teachers report cyberbullying. Parents report cyberbullying, teachers monitor administrators, and students limit access to certain websites.

Answers

Answer:

the answer is B. Parents monitor home computer use, administrators secure school computers, and students report cyberbullying.

Explanation:

it makes the most sense and i also just took the quiz and got it right :) hope this helps!

Answer:

answer is b.

Explanation:

can I run crisis remastered on max settings?

Answers

Yes....................................

1

4

What data unit is encapsulated inside a packet?

O datagram

O segment

frame

O session

Answers

Answer:

Segment.

Explanation:

In Computer Networking, encapsulation can be defined as the process of adding a header to a data unit received by a lower layer protocol from a higher layer protocol during data transmission. This ultimately implies that, the header (segment) of a higher layer protocol such as an application layer, is the data of a lower layer such as a transportation layer in the Transmission Control Protocol and Internet Protocol (TCP/IP).

The TCP/IP model comprises of four (4) layers;

1. Application layer: this is the fourth layer of the TCP/IP model. Here, the data unit is encapsulated into segments and sent to the transport layer.

2. Transport layer (layer 3): it receives the segment and encapsulates it into packets and sends to the internet layer.

3. Internet layer (layer 2): packets are encapsulated into frames.

4. Network layer (layer 1): frames are then converted into bits and sent across the network (LAN).

Hence, the data unit encapsulated inside a packet is known as segment, which is typically referred to as packet segmentation.

Additionally, these data, segments, packets, frames and bits transmitted across various layers are known as protocol data units (PDUs).

Mac or PC (need opinions)

Why? Need a valid reason. Its for my research paper.

Answers

Mac because it will serve u better.

Which of these words does not describe factual data?

Question 1 options:

observation

measurement

calculation

opinion

Answers

Answer:

Opinion.

Explanation:

Opinions are made by what someone thinks. What someone thinks is not nececarrily based on true facts.

This operating system was used by individual computers and required users to type commands.

Answers

Answer:

MS-DOS is your answer

Explanation:

Next, Leah wants to add a content slide that allows her to insert a table.
Which tab should she click to complete this action? Home
What should Leah click to open a dialog box to select the slide she needs? New Slide down arrow
What should Leah do to access the notes pane of the slide she added? V Click Notes expander.
Multi media design

Answers

Answer:

1. Home

2. New slide down arrow

3. Click Note expander

Explanation:

Home tab should she click to complete this action.

The New Slide down arrow should Leah click to open a dialog box to select the slide she needs.

Click Notes expander should Leah do to access the notes pane of the slide she added.

What is a content slide?

A collection of polished presentation templates is called the Presentations Content Slides. The site provides stunning infographics and PowerPoint illustrations that are laid out in a bullet point structure. Regardless on how many evaluation tools are provided, the main layout is one to three.

Select the button next to "New Slide" on the Home tab. Choose the layout visitors want and a new slide from the layouts collection.choose "New Slide" Make your layout selection in the New Slide dialogue box for any new slide. Study slide layouts in more detail.You can add extra information to presentations that doesn't show up on slides in the Notes pane.

Learn more about content slide, here:

https://brainly.com/question/4214795

#SPJ6

Other Questions
in the book the outliers what did gladwells studies on pianists and violinists conclude Which description refers to cirrus clouds? are fluffy are wispy produce snow form at low altitudes Question(MC)CHAPTER IITHE SHE-WOLF, an excerptFrom White FangBy Jack LondonBreakfast eaten and the slim camp-outfit lashed to the sled, the men turned their backs on the cheery fire and launched out into the darkness. At once began to rise the cries that were fiercely sadcries that called through the darkness and cold to one another and answered back. Conversation ceased. Daylight came at nine o'clock. At midday the sky to the south warmed to rose-colour, and marked where the bulge of the earth intervened between the meridian sun and the northern world. But the rose-colour swiftly faded. The grey light of day that remained lasted until three o'clock, when it, too, faded, and the pall of the Arctic night descended upon the lone and silent land.As darkness came on, the hunting-cries to right and left and rear drew closerso close that more than once they sent surges of fear through the toiling dogs, throwing them into short-lived panics.At the conclusion of one such panic, when he and Henry had got the dogs back in the traces, Bill said:"I wisht they'd strike game somewheres, an' go away an' leave us alone.""They do get on the nerves horrible," Henry sympathized.They spoke no more until camp was made.Read this line from the story:...the men turned their backs on the cheery fire and launched out into the darkness.What part of this line most clearly adds to the tension in the story? (5 points)Group of answer choicesThe contrast between the fire and the darknessUsing the word launched to describe the departureThe description of the men turning their backsEnding the sentence on a dark note You decide to have cupcakes for your birthday party. When you call toorder then you tell them you would like 24 cupcakes. You want to bevanilla, to be chocolate and the rest to be strawberry. How manystrawberry cupcakes will you get? What prominent issue in the American colonies symbolized the core of their dispute with British rule? A. lack of governmental services B. manifest destiny C. forced enlistment in the army D. taxation without representation introduce yourself and others 3(5 - 2) = yWhat does y = Solve x/4 = 8 for x.x = 4x = 2x = 32x = 12 What governs inherited traits within an individual? name the government in england ? Help me with 3D modeling art please Frank has a paperclip. It has a mass of 12g and a volume of 3cm3. What is its density? In a sample of a solid the particles areA.not moving.B.vibrating about a fixed position.C.sliding past each other.D.moving independently around the container. !!BRAINLIEST ANSWER!!what is 4-6=-3(x-12) in slope intercept form What is the oxidation state of Cobalt (iii) A.+2B.+5C.-3D.+3 Write the equation of the line parallel to 5x + y = -2 that goes through the point (2, -3). 3+ (-8)Someone please answer this Think about the sensory memories you have of your experience.What did you see?What did you feel? What did you hear?What did you taste?What did you smell?Brainstorm by writing all of the sensory descriptions you might add to your narrative. answer fast for lots of points 3. What were the major arguments against the Constitution put forward by the anti-Federalists?