Which of the following are benefits of designing a scalable system? Choose 3 options.

ability to maintain a high level of service for customers

system will never need to grow again

ability to respond to user volume issues more quickly

guaranteed system access for all users

users may never know that a site has experienced tremendous growth

Answers

Answer 1

Which of the following are benefits of designing a scalable system? Choose 3 options.

ability to maintain a high level of service for customers

system will never need to grow again

Ability to respond to user volume issues more quickly guaranteed system access for all users

users may never know that a site has experienced tremendous growth

Answer 2

The benefits of designing scalable system involves ability to  maintain high level of service for customers, respond quickly to user volume issues, and guaranteed access for all users. Thus, options A, C, and D are correct.

What is a scalable system?

A scalable system can be given as the system that has the ability to accommodate large amount of data. The capacity of the working of scalable system varies, for example the working of hardware with the increase in number of users.

The designing of scalable system forms multiple benefits, such as:

ability to maintain a high level of service for customersability to respond to user volume issues more quicklyguaranteed system access for all users

Thus, options A, C, and D are correct.

Learn more about scalable system, here:

https://brainly.com/question/24252482

#SPJ5


Related Questions

What is computer Write three features of computer ​

Answers

A computer is a machine that can be programmed to carry out sequences of arithmetic or logical operations automatically. Modern computers can perform generic sets of operations known as programs. These programs enable computers to perform a wide range of tasks.

speed, accuracy, diligence, versatility and storage capacity

A computer is a machine that can be programmed to manipulate symbols. Its principal characteristics are: It responds to a specific set of instructions in a well-defined manner. It can execute a prerecorded list of instructions (a program). It can quickly store and retrieve large amounts of data.

The characteristics of computers that have made them so powerful and universally useful are speed, accuracy, diligence, versatility and storage capacity.

How do you setup Synapse x? Please explain each step

Answers

1. You download the compressed file from the website

2. Create a new folder on your desktop, then copy the file location.

3. Right click on the compressed file that contains Synapse X

4. Select “Extract all,” then paste the file location of the folder you wish to keep it in, and click “Extract.”

5. Make sure Windows Real-time Protection is OFF before trying to run the .exe file, otherwise your OS will automatically delete the .exe file then you'll have to delete all the contents from your folder and restart from step 3.

You can find the Windows Real-time Protection option by going to the Windows search bar and typing "Virus and Threat Protection,"

then clicking on the "Manage Settings" button underneath the "Virus & threat protection" tab, then disabling Real-time Protection.

It will give you a prompt warning you that your PC could be open to threats, however as long as if you're not downloading shady things from shady sites, and you're not discoverable on your Wi-Fi network, you'll be fine without it.

Keep in mind, Real-time Protection automatically turns itself back on after a set amount of time of it being disabled. So you'll have to disable it every time you wish to use Synapse X.

6. Once you've done all of that, just follow the prompts that Synapse X gives you, give your whitelist code, log in, and you're set.

measurement, analysis and iteration forms which stages of the strategy and planning process​

Answers

Answer:

science is what it is that science

Explanation:

To create a cell reference in another spreadsheet you must need to start with _______ sign.
a. = = b. & c. = d. $

Answers

Answer:

You need to start with c) =

PROCEDURE: Therapeutic infusion of saline solution with 5% dextrose IV, 500 ml for dehydration, lasting 48 minutes. what is the right cpt code and hcpcscode?

Answers

Answer:

no

Explanation:

yes becouce not arance the name of fegeur spech

[C++] 4.17 LAB: Print string in reverse Write a program that takes in a line of text as input, and outputs that line of text in reverse. The program repeats, ending when the user enters "Done", "done", or "d" for the line of text. Ex: If the input is: Hello there Hey done then the output is: ereht olleH yeH

Answers

The program illustrates the use of string manipulations.

String manipulation involves carrying out several operations (such as splitting and reversing of strings).

The program in C++ where comments are used to explain each line is as follows:

#include <bits/stdc++.h>

using namespace std;

int main(){

   //This declares a string variable

string str;

//This gets input for the variable

getline(cin, str);

//The following is repeated, until the user inputs "Done", "done" or "d"

while(str != "Done" && str !="done" && str !="d"){

    //This reverses the string

    reverse(str.begin(), str.end());

    //This prints the reversed string

    cout << str<<endl;

    //This gets another input

    getline(cin, str);

}  

return 0;

}

At the end of each loop, the reversed string is printed.

See attachment for sample run

Learn more about similar programs at:

https://brainly.com/question/24833629

List and Explain the programming Languages required to start working in Apple.

Answers

Answer:

JavaScript, Java, and C++ are obvious additions. Mastering these programming languages can help you land a secured job at Apple. If you pay attention to the popularity of programming language skills, Python is an immensely popular generalist programming language across all leading tech companies

When must an Assured Equipment Grounding Conductor Program (AEGCP) be in place?
Select the best option.

At every worksite


Only when GFCIs are in place


Only when working around power lines


When an employer does not use GFCIs

Answers

Answer:

Only when working around power lines

Explanation:

Assured Equipment Grounding Conductor Program (AEGCP) is applicable mainly in sites dealing with power. Therefore, the most appropriate worksite to have Assured Equipment Grounding Conductor Program is when  working around power lines.

Answer:

When an employer does not use GFCIs

Explanation:

how to calculate 3 X (50 + 40) ÷ 5 on excel 2016

Answers

Answer:

I think this might help, don't know much of this

Explanation:

How do you calculate 3.5 increase in Excel?

How To Increase a Number By a Percentage. If want to calculate a percentage increase in Excel (i.e. increase a number by a specified percentage), this can be done by simply multiply the number by 1 + the percentage increase. - which gives the result 60.

Explanation:

I am not sure what your problem is.

you don't know how to enter a formula into an Excel cell ? or you don't know how to combine the content of cells into one result in another cell ? or ... ?

but just answering literally this one-line-problem-definition

you click into an empty cell and type

=3*(50+40)/5

and press return.

and the cell will show you the result. 54

Where is the ‘Chart’ button in Powerpoint?

Answers

Answer:

The picture attached

Name the major types of computer systems from slowest to fastest. ​

Answers

Answer:

Cache is the fastest and most expensive, RAM is slower and less expensive, and virtual memory is the slowest and least expensive type.

Explanation:

Identify the commands for the following list operations.

Check that there are no items in a list
Insert 10, 50, 30, 40, and 20 at the end of the list
Arrange the items in ascending order

a. IsEmpty(list)
Prepend(list, 10)
Prepend(list, 50)
Prepend(list, 30)
Prepend(list, 40)
Prepend(list, 20)
Sort(list)

b. Search(list)
Append(list, 10)
Append(list, 50)
Append(list, 30)
Append(list, 40)
Append(list, 20)
Sort(list)

c. IsEmpty(list)
Append(list, 10)
Append(list, 50)
Append(list, 30)
Append(list, 40)
Append(list, 20)
GetLength(list)

d. IsEmpty(list)
Append(list, 10)
Append(list, 50)
Append(list, 30)
Append(list, 40)
Append(list, 20)
Sort(list)

Answers

Answer:

D

Explanation:

the answer is D because it does exactly what the problem says.

Several scholarship opportunities exist to assist students in pursuing STEM-related degrees.

True
False

Answers

True true true and always true.
The answer is true!! Have a great day!

the are the uncontrollable faces outside the business industry .​

Answers

Answer:

The uncontrollable risk factors are the details that affect the product that a company has no way of changing. These include political and economic climates, competitor choices and even the weather.

Explanation:

Create a set of functions that compute the mean, median, and mode of a set of
numbers. Section 5.4 - Example: Using a List to Find the Median of a Set of Numbers
provides a simple algorithm for calculating the median for a set of numbers. Each
Function should expect a list of numbers as an argument and return a single number
Each function should return O if the list is empty. Include a main function that tests
he three statistical functions with a given list. Do not use the statistics or math
nodules to create the functions. The functions must be created by you.

Answers

Refer to the attachment.

Language used=Python

Answer:

Create a set of functions that compute the mean, median, and mode of a set of

numbers. Section 5.4 - Example: Using a List to Find the Median of a Set of Numbers

provides a simple algorithm for calculating the median for a set of numbers. Each

Function should expect a list of numbers as an argument and return a single number

Each function should return O if the list is empty. Include a main function that tests

he three statistical functions with a given list. Do not use the statistics or math

nodules to create the functions. The functions must be created by you.

Which of the following correctly orders the steps involved in the outlining process?

brainstorm, order, organize, label
brainstorm, organize, order, label
organize, brainstorm, label, order
organize, brainstorm, order, label

Answers

Answer:

brainstorm, organize, order, label

Explanation:

The answer is:

brainstorm, organize, order, label

2. What does the menu system on your DVD player illustrate?
(1 point)
O interface
O link
O menu system
O search engine

Answers

Answer:

Interface, (A)

Explanation:

Because it just does

interface

the correct answe

cách soạn thảo văn bản trên word

Answers

Answer:

Did you mean How to edit text on word? There are 2 word, Microsoft Word Office and WordPad. The step I give you below is for both.

Explanation:

Steps to edit text on word

Step-1: Select the text you want to edit.

Step-2: Click on Home Tab.

Step-3: Select the style(s) you want to edit from the Font group

c program how to input this? ​

Answers

Chchvjvcuvggiiog. Correct

[tex]\huge \boxed{\sf code}[/tex]

#include <stdio.h>

int  main() {

       // Declare the variables

       float a,b,c,d,e;

       float sum;

       // Ask the user to input

       printf("Enter the first number: ");

       scanf("%f",&a);

       printf("Enter the second number: ");

       scanf("%f",&b);

       printf("Enter the third number: ");

       scanf("%f",&c);

       printf("Enter the fourth number: ");

       scanf("%f",&d);

       printf("Enter the fifth number: ");

       scanf("%f",&e);

       // Use if statements to calculate the sum

       if (a < 0) {

               sum = sum + a;

       }

       if (b < 0) {

               sum = sum + b;

       }

       if (c < 0) {

               sum = sum + c;

       }

       if (d < 0) {

               sum = sum + d;

       }

       if (e < 0) {

               sum = sum + e;

       }

       // Print the sum

       printf("Sum of all negative integers = %.2f\n", sum);

       // Return an integer

       return 0;

}

[tex]\Large \boxed{\sf explanation}[/tex]

Declare the variables a, b, c, d, e, and sum as float type.

Display to the user to ask for input and take the input.

Use if statements to determine if a, b, c, d, and e are less than 0. If yes, then add them to the sum. If no, then skip to the following function.

Print the sum as a float type with 2 decimal points.

Return an integer.

Krista is doing research for her school assignment. While she is completing her research, the computer unexpectedly restarts. The computer restarted because it

was installing software
was installing updates
was updating the hardware
was updating the virus

Answers

Answer:

I believe the answer should be was installing updates.

Explanation:

Jacob is a network technician who works for a publishing company. He is setting up a new hire's access permissions. The new hire, Latisha, is an editor. She needs access to books that have been accepted for publication but are in the review stage. Jacob gives her access to the network drive containing only books in review, but not access to administrative or human resources network drives. What principle is Jacob applying

Answers

If Jacob gives her access to the network drive containing only books in review, but not access to administrative or human resources network drives. The principle that Jacob is  applying is: The principle of least privilege

Principle of least privilege is a principle that help to protect confidential or sensitive information from unauthorized use.

Which means that a user is only authorized  or given the permission to  access least information or information  which the user only need to carryout their assignment or tasks.

Principle of least privilege is important as it help to minimize or limit the damages that can arise due to unauthorized usage.

Inconclusion  if Jacob gives her access to the network drive containing only books in review, but not access to administrative or human resources network drives. The principle that Jacob is  applying is: The principle of lease privilege.

Learn more here:

https://brainly.com/question/14132911

Implement a number guessing game where a player will get up to seven chances to guess a mystery number in the range of 1 through 100.

Answers

The implementation of the guessing game ls written in python 3 which involves a maximum guess of 7 to make a prediction of the random integer generated.

import random

#import the random module for generating random numbers

num = random.randint(0, 100)

#generate a random integer value between 1 to 100 and store in the variable num

tries = 0

#initialize a counter to record the number of guesses made

while tries <7 :

#while loop ensures that only a maximum of 7 guesses is are made

guess = int(input('Enter your guess'))

#prompts user to make a guess

tries+=1

#increases the number of guesses by 1

if guess == num :

#checks if the guess is equal to the random number

print('success')

#dispaly success if true

elif tries < 7 :

#if not check if number of guesses is not up to 7 and tell user to try again

print('Try again')

elif tries == 7 :

#checks if number of tries is equal to 7

print('tries exceeded\n the random number is :', num)

# tell user that is number of tries has elapsed and display the correct number.

A sample run of the program and the output is attached.

Learn more :https://brainly.com/question/19347842

give atleast 5 example of ENFRAMING in our daily lives

Answers

Answer:

1. steel is produced to be used in such things as the production of automobiles, and, although steel is not the automobile, it is, nevertheless, affected by the “coming into being” of the automobile.

Steel is produced to be used in such things as the production of automobiles, and, although steel is not the automobile, it is, nevertheless, affected by the “coming into being” of the automobile.

What is Automobile?

The first steam-powered vehicle was created in 1672, marking the beginning of the development of the car. Nicolas-Joseph Cugnot produced the first steam-powered automotive that could transport people in 1769.

Around the beginning of the 19th century, inventors started to take risks and developed the de Rivas engine, one of the first internal combustion engines, and an early electric motor. The Volkswagen Beetle and the Ford Model T are two of the most widely produced car models in history, respectively.

A backlash against huge vehicles in the middle of the 19th century slowed development, but certain internal combustion engines nevertheless advanced.

Therefore, Steel is produced to be used in such things as the production of automobiles, and, although steel is not the automobile, it is, nevertheless, affected by the “coming into being” of the automobile.

To learn more about automobile, refer to the link:

https://brainly.com/question/1193772

#SPJ2

The roots of the quadratic equation ax² + bx + c = 0, a ≠ 0 are given by the following formula:

Quadratic Formula
In this formula, the term b² - 4ac is called the discriminant. If b² - 4ac = 0, then the equation has a single (repeated) root. If b² - 4ac > 0, the equation has two real roots. If b² - 4ac < 0, the equation has two complex roots.

Instructions
Write a program that prompts the user to input the value of:

a (the coefficient of x²)
b (the coefficient of x)
c (the constant term)
The program then outputs the type of roots of the equation.

Furthermore, if b² - 4ac ≥ 0, the program should output the roots of the quadratic equation.

(Hint: Use the function pow from the header file cmath to calculate the square root. Chapter 3 explains how the function pow is used.)

Format your output with a decimal precision of 2.

Answers

Hope it helps. Thanks.

Which of the following is NOT an example of a computer? O Judge O ENIAC O Calculator O Abacus​

Answers

Answer:

Judge

Explanation:

ENIAC was the first programmable

Calculators are very simple electronic computers

Abacus are non-electronic computers

Judge is your answer

Ms Excel is an example of______



Answers

Answer:

It is an example of a spreadsheet application

Explanation:

Ms Excel is an example of_spread sheet application_.

hope this helps you.

a printer gives hard output whereas a screen gives_ output​

Answers

Answer:

Explanation:

Easy,soft copy output as the output given by a screen only can be seen but can't be touched

A printer is considered to be in the category of
a. software
Selected:b. hardware
c. operational system
d. equipment

Answers

A printer is considered to be in the category of b. hardware.

What is hardware?

Computer hardware contains the physical characteristics of a computer, such as a case, central processing unit (CPU), random access memory (RAM), monitor, mouse, keyboard, computer data storage, pictures card, sound card, speakers, and motherboard.

Hardware directs to the physical components of a computer. Also directed to as the machinery or the equipment of the computer. Examples of hardware in a computer exist the keyboard, the monitor, the mouse, and the processing unit However, most of a computer's hardware cannot be caught; It's inside the computer case.

A printer exists as an external hardware output device that brings the electronic data stored on a computer or other device and develops a hard copy.

Hence, A printer is considered to be in the category of b. hardware.

To learn more about hardware refer to:

https://brainly.com/question/24370161

#SPJ2

PYTHON- Credit card numbers follow a standard system. For example, Visa, MasterCard, and Discover Card all
have 16 digits, and the first digit serves to indicate the card brand. All Visa cards start with a 4;
MasterCard cards always starts with a 5; and Discover cards start with a 6. Write out a program that
prompts for a credit card number and emits the name of the brand. If the card brand cannot be
determined, the program should output "Unknown Card"

Answers

Answer:

ccard = input("What is your credit card #: ")

if ccard[0] == 4:

   print("Visa")

elif ccard[0] == 5:

   print("MasterCard")

elif ccard[0] == 6:

   print("Discover")

else:

   print("Unknown Card")

Manufactured computers and cell phones are part of which industry? Electronics Chemicals Machinery Metal products

Answers

Answer:

The correct answer is the electronic industry

Hope this helps

Answer:

Electronics

Explanation:

Other Questions
Which of the following functions represent exponential decay? f(x)=3(1.7)^x-2f(x)=3(1.7)^-2xF(x)=3^5(1/4)^xF(x)=3^5(2)^-x -8+Ax(-8)-(-6)=-2 -3+(-8)=2x4 AssessmentUnderline the word that makes the statement incorrect. Write the correct answer.1. Music is a combination of sounds that are pleasing to hear.2. Notes are to be sounded while rest is to be silence.3. Instruments made from metal/brass are samples of metallophone.4. Nasal sounds are common to ethnic vocal music.5. Timbre pertains to the quality of sound produced.6. When two or more notes are produced at the same time, it creates harmony.7. A clef and staff determine the pitch of a note.8. Southeast Asian is divided into two regions: the mainland and island.9. Rhythm is said to be the heart of music.10. There are lots of bamboo in Southeast Asia. Sigma notation of 8+4+2+1+1/2+ Why lapse in managing supplier can tarnish the buyer's reputation? What is f '(x) for f(x) = secxcscx? Can somone llsss hell plssss What system of linear inequalities is shown in the graph?Enter your answers in the boxes.85 points - Can you help me with this please. Which Washington Progressive reform was created in 1907?A. closed primaryB. open primaryC. election of governorD. representative democracy What are at least 3 examples of sublimation?Sublimation is solid skipping the melting to a liquid stage andngoing staright to a solid. Help me pls 20 POINTS ASAPDiego deposits $4200 into a savings account that pays 5% simple interest. He decides not to touch the money until it doubles. How many years will Diego have to keep the money in the account? Is it correct? please give me correct way a boy cycles a distance of 960 m from home to school in 8 minutes. calculate his average speed for the journey Please help with this math problem ASAP!! Its due tonight!! I will give branliest!! :) A ball is dropped from a tower that is 206 m high, How long does it take to reach the ground? 13 x 2 + 3- 6 + 7 I NEED TO SHOW MY WORK HELP PLEASE AND TY Jasmine pays 52.40 for 40 litres of petrol. What is the cost per litre? what is the property of -49 + 49 = 0