35. Which of these devices can be accessed remotely across the internet? 1 O Solid State Drive O USB Memory Stick Cloud Storage Optical Media This is a required question​

Answers

Answer 1

Answer: I believe it's cloud storage.

Explanation:

The cloud is basically an area of all the data you've acquired. And you can only access it on the internet. It's not a physical object. So The Cloud is your answer! :>

(Please mark this as brainliest)


Related Questions

Dean Smith is dissatisfied with the time it takes to get a new faculty ID made and believes more servers will speed up service and reduce costs thanks to shorter lines. Prof. Karen is tasked to study the situation. Prof. Karen observes an average of 20 customers/hr arriving and each technician (service window) serves 5 customer/hr, on average. Assume an M/M/s queue system. Prof. Karen calculates the operational cost of each server as $20/hr, and assumes a cost of waiting in the SYSTEM as $25/hr per customer. What is the optimal number of service windows to minimize total cost

Answers

The answer is :

X = 4

Explanation:

The optimal number of service windows to minimize total cost will be 5 service windows.

How to calculate the optimal value?

The optimal number of service windows to minimize total cost will be calculated thus:

Cost = 20x + 25(20 - 5x)

Cost = 20x + 500 - 125x

Cost = 500 - 105x

For the minimum cost,

500 - 105x = 0

105x = 500

x = 500/105

x = 4.76 = 5

Therefore, the optimal number of service windows to minimize total cost will be 5 service windows.

Learn more about cost on:

https://brainly.com/question/25109150

#SPJ2

In addition to being fun, another reason that people have been creating games ever since they settled into communities is:
They keep us out of trouble.
They teach us to follow rules.
They teach cooperation.
They teach strategy and critical thinking.

if you want points just keep looking im asking questons liek crazy

Answers

Answer:

I am pretty sure it's D. to teach strategy and critical thinking.

Answer:

They teach strategy and critical thinking

Explanation:

when i use python idle to execute a command, i get this message in shell

RESTART: C:/something something

Answers

Answer:

yes it always come whenever u execute a command

It comes with everyone

Explain why you do not need expensive equipment to take pictures or record video?

Answers

Explanation:

Expensive equipment is not necessary because from a technical perspective as long as the device has a lens and a mic it should be able to take photos and videos.

Answer: No, you don't not need an expensive camera . It may have better quality or worst quality . A phone car record and take pictures. Using a Light Stand Can give you a better lighting and better angle so you don't have to hold it or put it on your table, lap, or desk.

Explanation: A lot of people think you need to own a good camera to take a good photograph. A more expensive camera can help, but certainly is not essential. To answer the question though, it is 'no' – the equipment really doesn't make any difference to the end result, but does affect the process of getting there.

Byeeeeeee Remember to stan BTS , Wear Your Mask, And Drink Water

What would graphics be classified as?

Answers

Answer:

raster and vector graphics

raster graphics is the answer

Mark’s friends told him about an automated program that sends unsolicited messages to multiple users. Which type of program were Mark’s friends referring to?

Answers

Answer:

Spambots.

Explanation:

Spambots send thousands of messages world wide once they get your information things like email and such and send out unsolicited things out constantly. 

Please answer the questions.

Answers

Answer:

10 days

Explanation:

because they have to go through all your history to see if any of that could of caused it

Answer to questions 1 is option D, answer to question 2 is option B, answer to question 3 is option D

Which system provides an easier way for people to communicate with a computer than a graphical user interface (GUI)

Answers

Answer: natural Language Processing

Explanation:

Natural Language Processing: It is a sub field of linguistics which is concerned with the interactions between Human and computer especially how to program computers to process and to understand large amounts of natural language data.

Question #2
Dropdown
Complete the sentence.
A_____
number is composed of only zeros and ones.

Answers

What are the answer choices? If none then i say "A prime

number is composed of only zeros and ones."

Answer: Binary

Explanation: Binary numbers use the base-2 numeral system (binary). This system uses only two symbols: "0" (zero) and "1".

Explain the 3 types of control transfer structures in programming using flowchart symbols

Answers

Answer:

Process Flowchart.

Data Flowchart.

Business Process Modeling Diagram.

What cable is used to connect devices together on a network?

Answers

Answer:

Ethernet crossover cable

Explanation:

.

what is the keyboard shortcut to display formulas on the worksheet : a. CTRL+ B. CTRL+: C. CTRL+; D. ALL THE ABOVE

Answers

girl i dont know figure it out pookie

Which of the following correctly calculates the
money supply with M2?
A. M2 + M3
B. M2-M1
C. M2 + M1

Answers

Answer:

I think it's C.

Explanation:

I could be wrong, but this is my understanding. M3 equals the sum of all money in the economy. To get M3, you add M2 and M1. So, this would be the correct way to calculate the money supply with M2.

Which system carries the idea of GPS service further than simply telling you which route to take to arrive at a particular place

Answers

There are different uses of GPS. Apple’s Siri system carries the idea of GPS service further than simply telling you which route to take to arrive at a particular place.

Apple Siri  is a software device that can make calls or send texts for a person when he or she is driving.

It often carries the idea of GPS service further as it does not only give GPS but it can help you to tell you, your messages on your Airpods. It often offers some suggestions on things you want to do will driving.

Learn more about Apple Siri from

https://brainly.com/question/9795929

Define the term loop rule.
The loop rule tells us that if we sum the blank
across all the components in a single closed path of an electrical network, the result is 0.

Answers

Answer:

voltage differences

Explanation:

what is a computer software

Answers

Software is the digital operations performed by a computer’s hardware.

Answer:

Software is a collection of instructions that tell a computer how to work. This is in contrast to hardware, from which the system is built and actually performs the work.

Explanation:

Please mark as brainliest

Write a program that:
a) Asks the user if they want to multiply two numbers that they entered, if their answer equals yes then multiply the numbers else write a message saying "peace out".

Answers

Answer:

num1 = int(input("Enter number 1: "))

num2 = int(input("Enter number 2: "))

choice = input("Do you want to multiply them?: ")

if choice.capitalize() == "Yes":

   print(num1 * num2)

else:

   print("Peace out.")

Explanation:

Gg ez.

(I wrote the it in python because I don't know what language you want it in. Next time, say what language you want.)

100 POINTS!!!
what kind of laptop is compatible with my pc lol i want to do a dual pc setup and my budget is $500.
PC specs:
AMD Ryzen 7 1700X Eight-Core Processor 3.40 GHz
16 GB DIMM 1400 MHz RAM
Radeon RX580 Series

Answers

Answer:

Hmm.. Try researching, I'm sure you'll find something there..

(Find the number of uppercase letters in a string) Write a recursive function to return the number of uppercase letters in a string using the following function headers: def countUppercase(s): def countUppercaseHelper(s, high): Write a test program that prompts the user to enter a string and displays the number of uppercase letters in the string.

Answers

def countUppercase(s):
count=0
for i in s:
if i.isupper():
count+=1
s=s.replace(i, "")
else:
s=s.replace(i, "")
countUppercase(s)
return count

element=input("Enter the string: ")
string=countUppercase(element)
print("\nNumber of upper letter in the string: ",string)

How often do you trade cowoncy? If so, for what and how much?​

Answers

There are different ways to trade cowoncy. There are some legitimate site to buy and sell it. In trade cowoncy, about 100000 Cowoncy is bought for $17.89USD.

Cowoncy is commonly described as the OwO bot's form of currency. It is known as a currency used worldwide in hunting.

Its role is mainly for for hunting and in the activation of one's huntbot and it is often used in other form of purchases such as cosmetics, etc.

Learn more about trade from

https://brainly.com/question/17727564

Write a program that lets the user enter four quarterly sales figures for six divisions of a company. The figures should be stored in a two-dimensional array. Once the figures are entered, the program should display the following data for each quarter: - A list of the sales figures by division - Each division's increase or decrease from the previous quarter (this will not be dis- played for the first quarter) - The total sales for the quarter - The company's increase or decrease from the previous quarter (this will not be dis- played for the first quarter) - The average sales for all divisions that quarter - The division with the highest sales for that quarter Input Validation: Do not accept negative numbers for sales figures.

Answers

Answer: Buisness calendars

Explanation:

What is a complete group of instructions known as in Scratch?
blueprint
program
sprite
code block

Answers

Answer:

I think it may be blueprint

Answer:

program

Explanation:

A company purchases a flood insurance policy for its data center. What is its risk

management decision?

1) Mitigation

2) Acceptance

3) Avoidance

4) Transference

Answers

When a company purchases a flood insurance policy for its data center, the risk management decision it took is: 4) Transference.

Risk management can be defined as a process which involves identifying, evaluating, analyzing and controlling potential risks (threats) that are present in a business, which can serve as an obstacle to its capital, revenues and profits.

Basically, risk management decision typically involves prioritizing cause of action or potential threats, so as to avoid, mitigate or transfer the risk that are likely to arise from such business decisions.

The risks or threats that are faced by a business firm can be transferred to a third-party such as an insurance agency, especially to protect its assets and resources in the event of a natural disaster such as flood, fire, earthquake, etc.

In conclusion, transference is a risk management decision that occurs when  a company purchases a flood insurance policy for its data center.

Read more on risk management here: https://brainly.com/question/13760012

I need help in php coding

Answers

How can i help you please post your question

explain the different types of programming languages​

Answers

Answer:

Language types. Machine and assembly languages. Algorithmic languages. FORTRAN. ALGOL. C. Business-oriented languages. COBOL. SQL. Education-oriented languages. BASIC. Pascal. Logo. Hypertalk. Object-oriented languages. C++ C# Ada. Java. Visual Basic. Python. ...

Elements of programming. Control structures. Data structures.

Explanation:

Pls Mark Brainliest

The current annual interest rate is 5 percent, and you are taking out a 20-year loan with a monthly end-of-month payment. If you can afford monthly payments of $3000 per month, what is the most you can borrow?

Answers

Answer:

720k.

Explanation:

PLZ ANWER FAST!!!!

Use the drop-down tool to select the correct word or phrase.

How fast data travels on the network:

The ability of a network to recover after any type of failure:

Text within a document that is linked to other information available to the reader:

The way the network is laid out, including all the interconnections:

When all computers in a network are connected in a “star” formation:

A type of network that does not use a router but shares data directly between computers:

A unique location for a computer on the network:

Rules for how routers communicate with one another and send data:

Answers

It should be noted that the speed of fast data on a particular network is known as bandwidth.

The ability of a network to recover after any type of failure is known as fault tolerance.

Text within a document that is linked to other information available to the reader is called hypertext.

The way the network is laid out, including all the interconnections is known as network topology.

When all computers in a network are connected in a “star” formation, it's known as a star topology.

A type of network that does not use a router but shares data directly between computers is known as peer-to-peer.

A unique location for a computer on the network is known as the IP address.

Rules for how routers communicate with one another and send data are known as the router protocols.

Learn more about bandwidths on:

https://brainly.com/question/8154174

Answer:

Text within a document that is linked to other information available to the reader is called

✔ hypertext

.

A unique location for a computer on the network is its

✔ IP address

.

The

✔ fault tolerance

is the ability of a network to recover after any type of failure.

The computer that responds to requests from the client computer is known as the

✔ server

.

A

✔ queue

is an ordered list of tasks waiting to be performed.

Explanation:

just did it.

Which HTML tags describe the meaning of the content?
describe the meaning of the content.

Answers

Defines an HTML document
Contains metadata/information for the document
Defines a title for the document

Answer:

Semantic elements in Plato

Explanation:

Declare and define a function called displayConcat that displays the concatenation of the first parameter with the second. Ex: displayConcat("After", "noon") displays "Afternoon".

Answers

function displayConcat(first, second) {
// using console.log print concatenation of first and second strings
console.log(first + second);
}

displayConcat('After', 'noon');

Zach has invented a device, which when plugged to household appliances, such as televisions, vacuum cleaners

Answers

Zach's decision is supported by the argument that less mature enabling technologies may be conducive to waiting for enabling technologies to develop further.

Enabling technologies are a set of technological tools that allow companies to start and develop the digital transformation process, to adapt to new technological and digital trends such as:

1- Industry 4.0
2- The smart factory model

According to the above, appliance companies must adapt to new trends in technological design thought about the environment based on renewable energies (such as solar energy) and adapt their products to it.


According to the above, the correct answer is “Less mature enabling technologies may favor waiting for enabling technologies to be further developed”.

because it mentions the best alternative for Zach
Other Questions
Answer the questions on the picture just just something for 100 points first one gets it I guess after the outbreak of a mysterious disease, the average wait time at a hospital by 70%. Before the outbreak, the average wait time at a hospital is m minutes What is the sum of 7/13 and 11/26? Please help!! Of the following elements, which one has the smallest first ionization energy? A. boron B. carbon C. aluminum D. silicon Tundra form at opposite blank of the Earth, Object 1 has a mass of 7.0kg and a initial velocity of 17.0 m/s. Object 2 has a mass of 8.0kg and a initial velocity of -14.0 m/s. What are the final velocitys of each object. Please show work A conceptual model that can be used to guide decisions regarding environmental issues and their solutions is a i know the pythagorean theorem What are some examples of a chemical change? (list more than 2 examples) You are training for the upcoming bike and hike race. On the days you bike, you will ride 8 miles. On the days you hike, you will walk 3 miles. By the end of the training you want to have covered at least 200 miles. Write a linear inequality to represent this situation. Let x represent days biked and y represent days hiked. Which word is a synonym for many?numerousheavylimitedlarge Im a Filipino in disguise as an American citizen Why did the KKK burn crosses What is (f+g) (x) f(x) = -3x g(x)=-2x^2+x as a polynomial or rational function in simplest form? How is a simile different from other types of figurative language?A. It calls attention to a comparison by using uses phrases such aslike or asB. It uses language normally used to describe a different sense.c. It names something by using another closely associated object.D. It exaggerates the qualities of something in order to achieve adramatic effect What is 7x(-4) ? Please My brother needed some help on a test and wasn't sure what he needed to add or if he was missing something. Can you guys check this out for me as I don't know what he needs to add? He wrote: This story begins with a young man who has a problem: he wants to make money, but his family forbids him from working. Because the boy is 18 years old and must complete his education, his family will not allow him to work and earn money. This young man lives in a small row house in San Francisco, California, with his mother, father, and two sisters. He receives some financial support from his family, but it is insufficient to cover the cost of living in the city or pay his tuition. Jacob Hatcher is the name of this young man. To get a job: Jacob pleaded with his father to let him get a job, but his father was unreasonable and denied it. Unable to get permission, he went to his mother and tried to win her permission with facts and logic. "If I get a job, my father won't have to work as much, and we won't have any problems paying our rent," he said. His mother, too, was irrational and denied it. He turned to his friends for assistance when he ran out of ideas. To his friends, he said, "My parents are both unreasonable and refuse to let me get a job. I've done everything I could to persuade them. Have you got any suggestions? " They all agreed that he should persuade his sisters to persuade their parents because they were younger and more easily persuaded. To persuade them, he told them that if he got a job, he'd buy them candy and other treats if they asked. They were both skeptical, but they agreed to assist him anyway. They tried to persuade their parents to give him a job by saying things like, "I wish we could afford better toys." They were using short but clever sentences to persuade them, but it would still be weeks before they permitted him. To hasten the process, he told white lies, such as, "The grocery store owner said they were going to raise their prices on some of dad's favorite foods." None of this was true, of course, but it was effective in increasing his chances of getting permission. Both of their parents were intimidated by the gap in food budgets. The strategy was masterful. It worked. Jacob's parents had told him that he could only get a job if it was at his uncle's grocery store. After signing the paperwork, he had gotten a job. On the way to his first day at work, Jacob felt sick to his stomach. After walking slower than a snail and meeting his uncle, he immediately ran to the bathroom in pain, bumping into a customer in the process, knocking them down, and making them drop all of their items. Afterward, Jacob apologized immediately. His uncle wasn't amused, so he had to work for a week without pay to pay off what he had broken and pay back the customer for their sprained ankle. Jacob was certain that his uncle would fire him after what happened, but instead, he was congratulated for having kept working even though it was so hard for him. this is what he sent to me as a checklistdoes your text include: An exposition, rising action, complicating incident, climax, and a resolution. Setting, plot, and theme.Sensory details and rich description capture the reader's attention and develop a mood.A narrator with a consistent point of view.Dialogue to move the plot and show the characters ideas and feelings.Consistent verb tense.Appropriately selected and implemented active and/or passive voiceCorrect capitalization, punctuation, and spelling. what is the measure of x? What part of 28 is 17?