public cloud allows you to pay only for the time that use cloud resources and not for ownership, this concept is known as

Answers

Answer 1

Through the usage of computing as a utility, where clients only pay for the resources they use, a public cloud presents a chance for cost reductions.

In cloud computing, what exactly is a public cloud?

Businesses and consumers can access computing resources such as computation and storage, develop-and-deploy environments, and applications on-demand through the open internet thanks to an IT architecture known as the public cloud. Briefly stated, public clouds employ common infrastructure, whereas private clouds utilize a company's own infrastructure.

What three categories of public clouds exist?

Infrastructure as a Service (IaaS), platforms as a Service (PaaS), and software as a Service are the three primary categories of cloud computing services (SaaS). An original choice is being made while selecting a cloud type or cloud service.

To know more about public cloud visit:-

https://brainly.com/question/30110722

#SPJ4


Related Questions

c = 7

while (c > 0):
  print(c)
  c = c - 3

Answers

The three of the following will be printed c = 7, while (c > 0):, print(c), c = c - 3 are 0, 1, 7. The correct options are a, b, and g.

What is the output?

Input and output are terms used to describe the interaction between a computer program and its user. Input refers to the user providing something to the program, whereas output refers to the program providing something to the user.

I/O is the communication between an information processing system, such as a computer, and the outside world, which could be a human or another information processing system.

Given: c = 7 while(c > 0): print(c) c = c-3 In the first iteration: 7 is printed after that c becomes 4 Now 4 is greater than 0.

Therefore, the correct options are a. 0 b. 1 and g. 7.

To learn more about output, visit here:

https://brainly.com/question/14582477

#SPJ1

The question is incomplete. Your most probably complete question is given below:

Which three of the following will be printed?

c = 7

while (c > 0):

  print(c)

  c = c - 3

Group of answer choices

0

1

3

4

5

6

7

A recovery tool that creates restore points, which are snapshots of Windows, its configuration, and all installed programs.

Answers

restore the system A recovery application that takes screenshots of Windows, its setup, and all installed programs to generate restore points

A recovery tool is what?

Software tools for backup and recovery are made to provide storage backup to tape, disk, or optical media as well as data recovery when necessary. Products geared specifically toward helping the recovery process, such as virtual tape libraries, are also included in this area.

What is the mechanism of the recovery tool?

When the master file table reference is deleted, the space on the disk where the data is stored is marked as free and accessible for new data to be overwritten. If no data is erased, data recovery is still a possibility. This is essentially how data recovery software works.

To know more about recovery tool visit:

https://brainly.com/question/29315685

#SPJ4

Using what you know about variables and re-assignment you should be able to trace this code and keep track of the values of a, b, and c as they change. You should also have a sense of any possible errors that could occur. Trace the code, and choose the option that correctly shows what will be displayed

Answers

According to the question, option a: 10 b: 17 c: 27 accurately depicts what would be revealed.

Which 4 types of coding are there?

It's usual to find languages that are chosen to write in an extremely important, functional, straightforward, or object-oriented manner. These coding dialect theories and models are available for programmers to select from in order for them to meet their demands for a given project.

Is coding difficult?

It is common knowledge that programming is one of the most difficult things to master. Given how different coding is from long - established teaching techniques, which would include higher education degrees in computer science.

To know more about Code visit :

https://brainly.com/question/8535682

#SPJ4

The Complete Question :

Using what you know about variables and re-assignment you should be able to trace this code and keep track of the values of a, b, and c as they change. You should also have a sense of any possible errors that could occur.

Trace the code, and choose the option that correctly shows what will be displayed.

1 var a = 3;

2 var b = 7;

3 var c = 10;

4 a = a + b;

5 b = a + b;

6 c = a + b;

7 console.log("a:"+a+" b:"+b+" c:"+c);

to use the predefined function tolower, the program must include the header file ____.

Answers

To use the predefined function to lower, the program must include the header file cc type

What is the variable in the heading of a function called?

What are the variables that are defined in the function heading known as? formal parameters. What are the actual parameters of a function? The expressions, variables or constant values that are used in a function call.

What is the variable in the heading of a function called?

What are the variables that are defined in the function heading known as? formal parameters. What are the actual parameters of a function? The expressions, variables or constant values that are used in a function call.

To know more about program visit:-

https://brainly.com/question/14718387

#SPJ4

2. State eight typing keys (8mks)​

Answers

     On a keyboards, the main sequence is the central row where the keys are located. When beginning to write, you rest your fingertips on the home keys. F, D, S, and A are the main keys, and J, K, L, and ; (semicolon) are located on the right side of the keyboard.

Write a method sameDashes that takes two Strings as parameters and that returns whether or not they have dashes in the same places (returning true if they do and returning false otherwise). For example, below are four pairs of Strings of equal length that have the same pattern of dashes. Notice that the last pair has no dashes at all.
string 1: "hi--there-you." "-15-389" "criminal-plan" "abc"
string 2: "12--(134)-7539" "-xy-zzy" "(206)555-1384" "9.8"
To be considered a match, the Strings must have exactly the same number of dashes in exactly the same positions. The Strings might be of different length. For example, the following calls should each return true:
sameDashes("1st-has-more characters", "2nd-has-less")
sameDashes("1st-has-less", "2nd-has-more characters")
because the Strings each have two dashes and they are in the same positions. But the following calls should each return falsebecause the longer string has a third dash where the shorter string does not:
sameDashes("1st-has-more-characters", "2nd-has-less")
sameDashes("1st-has-less", "2nd-has-more-characters")
Method problem: For this problem, you are supposed to write a Java method as described. You should notwrite a complete Java class; just write the method(s) described in the problem statement.

Answers

In Java that compares two strings for dashes. The test only returns true if each string has the same amount of dashes in the same position in the strings.

What is java? and how to write method described in problem statement?

Java is a programming language and computing platform first released by Sun Microsystems in 1995. It has evolved from humble beginnings to power a large share of today’s digital world, by providing the reliable platform upon which many services and applications are built. New, innovative products and digital services designed for the future continue to rely on Java, as well.Java is fast, secure, and reliable. Developers use Java to construct applications in laptops, data center's, game consoles, scientific supercomputers, cell phones, and other devices.

I have to write a program in Java that compares two strings for dashes. The test only returns true if each string has the same amount of dashes in the same position in the strings.

Comparing the following two strings

String string1 = "two-twenty-nine"

String string2 = "ten-forty-five and I'm hungry."

with the above criteria would return true. It doesn't matter whether one string is longer than the other.

Any assistance would be appreciated!

I have tried:

- converting the strings to char arrays and then comparing the indexes

- Using String. index Of() for each string, and then creating a variable int new Start = String. index Of() with the index of the previous dash as the new starting point to look from

public static void sameDashes(String string1, String string2) {

   int count = 0;

   char index1 = ' ';

   char index2 = ' ';

   char dash = '-';

   char[] string1Array = string1.toCharArray();

   char[] string2Array = string2.toCharArray();

   while (count < string1Array.length && count < string2Array.length) {

       if (string1Array[index1] == dash && string2Array[index2] == dash) {

           System. out. print ln("true");

To learn more about Java refers to ;

https://brainly.com/question/26789430

#SPJ4

The process of sending print jobs from the print queue to the printer is called? a. spooling b. queuing c. redirecting d. printing.

Answers

Printing is the action of sending print jobs from the print queue to the printer.

Which of the following describes a print server's role?

By establishing a network connection with the server, computers may interact with nearby printers. The print server guards printers from overloads. It manages the allocation of ’s due to devices and queues them in order to maintain orderly operation and avoid overloading printer hardware.

The message is produced using the print() method to a standard output device, such the screen. The message can be a phrase or any other object, and the object will be converted to a string before it is presented on the screen.

To know more about Print server's, refer:

brainly.com/question/29738751

#SPJ4

Computer file have name that conit of which two part?
bae file name and file name prefix
long file name and hort file name
bae file name and file creation date
bae file name and file name extenion

Answers

Windows file names consist of the file name, a period, and the file extension (suffix). A three- or four-letter shorthand known as the "extension" designates the type of file.

What is a file name the two parts of a filename?Windows file names consist of two parts: the file name and a three- or four-character extension that indicates the file type. These two sections are separated by a period. within costs. For instance, in the file name expenses.xlsx, the file extension is.xlsx.The file's extension informs your computer which programme created or can open the file and which icon to use. For instance, the docx extension instructs your computer to display a Word symbol when you examine the file in File Explorer and that Microsoft Word may open it.The majority of file name extensions work with many programmes that you have installed. The only thing that will change when you change a file's extension is the file name; nothing else will be altered.

To learn more about extension refer :

https://brainly.com/question/28578338

#SPJ4

3. __________is the energy of position. Hint: It is stored energy of an object due to its height that has the ability to become active. Page 259 *

Answers

Potential energy is the energy that an object has due to its position. The energy an object possesses as a result of its motion is referred to as kinetic energy.

What does potential energy mean?

Potential energy is energy that is conserved or stored in a substance or an item. The object or substance's position, organization, or state determines the amount of stored energy. Consider it as energy with the "potential" to do work.

What three types of energy have potential?

Potential energy exists in stones perched on a cliff's edge. The potential energy will be transformed into kinetic energy if the stones fall. High on the tree, branches have the potential to fall, which gives them vitality.

To know more about potential energy visit :-

https://brainly.com/question/24284560

#SPJ4

Which of the following is one of the primary advantages to using Active Directory to store DNS information

Answers

The primary advantages to using Active Directory to store DNS information is fault tolerance

Making it possible for domain client computers to locate a domain controller AND for domain controllers to locate one another in order to replicate changes to the Active Directory database is the major goal of DNS for Active Directory (AD).

Some recommendations to keep in mind when designing fault-tolerant systems for the canning department include:

1) To examine the software's dependability

2) To examine the system's redundancy structure for fault tolerance

3) To assess the use of reliability-oriented designs, programming approaches, and methods.

Four) Creating diverse

5) Resources and methods to be applied

6) The dependability of the software and hardware

Your question is incomplete ut most probably your full question was

Which of the following is one of the primary advantages to using Active Directory to store DNS information

a. fault tolerance b. zero configuration c. low maintenanced.

Learn more about dns at https://brainly.com/question/17163861

#SPJ4

You are working on a computer with a host name of nntp-9.BoutiqueHotel. What is the NETBIOS name of this computer

Answers

NetBIOS domain name: The DNS domain name is often the parent domain of the NetBIOS domain name. For instance, the NetBIOS domain name is contoso if the DNS domain name is contoso.com.

Windows 10: Where can I locate my NetBIOS name?

You may verify NetBIOS and your Active Directory domain FQDN with a few straightforward command prompt commands. Information is seen when you type nbtstat -n. There will be numerous entries under Name, and one of the Group types will be NetBIOS.

How many characters may a fully qualified domain name (FQDN) have in total?

The host name and fully qualified domain name (FQDN) are limited to 63 bytes per label and 255 characters per FQDN, respectively.

To know more about DNS visit:-

https://brainly.com/question/17163861

#SPJ4

what zone configuration file contains a ptr record used to identify the loopback adapter?

Answers

/var/named/named.local zone configuration file contains a ptr record used to identify the loopback adapter.

What is  the loopback adapter?

When network access is unavailable or you wish to separate your testing network from your primary network, you can utilize the loopback adapter, a dummy network card, as a testing tool for virtual network settings.

What is the use of a loopback adapter?

If you want to connect the computer to a network after the installation, you will need a loopback adapter if you are installing on a non-networked machine. A local IP address is given to your computer when you install a loopback adapter, according to the loopback adapter.

                          If you want to connect the computer to a network after the installation, you will need a loopback adapter if you are installing on a non-networked machine. A local IP address is given to your computer when you install a loopback adapter, according to the loopback adapter.

Learn more about the loopback adapter

brainly.com/question/4464564

#SPJ4

origin encountered an issue loading this page. please try reloading it – if that doesn’t work, restart the client or try again later. I have reinstalled it multiple times, but still have same issue. Any solution?

Answers

Accessing the Origin data folder and deleting the cached files there is one of the most effective fixes for the "Origin Encountered an Issue Loading this Page" error.

Why won't my Origin page load?

Do a Clean Boot and restart your modem and router. Check to see if your UAC is activated and configured to notify. Install the client by downloading the most recent version of Origin and running the setup file with administrative privileges. Specify the Origin in firewall and antivirus exclusions, and open the required ports.

How do I resolve Origin has trouble loading this page?

Try to access the Origin data folder and remove the cache files inside if you want to get rid of the "Origin Encountered an Issue Loading this Page" error.

What happens when the Origin cache is cleared?

Older content is replaced by new content after clearing the origin cache. This occurs as a result of the origin server having fresh data. Therefore, the proxy servers start to cache new content.

To know more about encountered visit:

https://brainly.com/question/30168732

#SPJ4

Why would a technician enter the command copy startup-config running-config?
O to remove all configurations from the switch
O to save an active configuration to NVRAM
O to copy an existing configuration into RAM
O to make a changed configuration the new startup configuration

Answers

The technician wishes to modify a previously saved configuration by copying it from NVRAM into RAM.

What does the command copy startup config running-config accomplish?

Use the command copy running-config startup-config to replace the current startup configuration file with the contents of the running configuration file (copy run start). copies a new checkpoint's or the startup configuration's current configuration.

What would require a technician to use the copy command?

The COPY command transfers chosen file components to a different file, the printer, or the terminal. Additionally, by assigning it a new item-ID, you can duplicate any item and put it in the same file.

To know more about RAM visit:-

https://brainly.com/question/15302096

#SPJ4

The statement int[ ] list = {5, 10, 15, 20};
O initializes list to have 5 int values
O initializes list to have 20 int values
O initializes list to have 4 int values
O declares list but does not initialize it
O causes a syntax error because it does not include "new int[4]" prior to the list of values

Answers

Option 3 is correct ( initializes list to have 4 int values) The syntax here implies direct setup of integer array named list with 4 initial values. there is no need to mention size for this kind of syntax.

Describe an array.

An array is a group of related data items kept in close proximity to each other in ram. The sole way to retrieve each data element direct is using its index number, making it the most basic data structure.

How do arrays function?

A linear data structure called an array contains elements of the same data type in contiguous and nearby memory regions. Arrays operate using an index with values ranging from zero to (n-1), where n is the array's size.

To know more about array visit :

https://brainly.com/question/15048840

#SPJ4

To achieve server scalability, more servers may be added to a configuration and make use of:
Choose matching definition
1. Inbound packets are traversing the active firewall and return traffic is being sent through the passive firewall
2. load balancers
3. RAID
Clustering
Load balancing

Answers

To achieve server scalability, more servers may be added to a configuration and make use of: 2. load balancers

How does a load balancer operate?

A load balancer serves as the "traffic cop" in front of your servers, distributing client requests among all servers equipped to handle them in a way that maximizes speed & capacity utilization and makes sure that no server is overloaded, which can result in performance degradation.

What is load balancing at Layer 4?

Without needing to see the content of messages, Layer 4 load balancing controls traffic based on network metadata like protocols and application ports.

To know more about  server scalability visit:

https://brainly.com/question/29869699

#SPJ4

The comparison of the present state of a system to its baseline is known as what?
Question 4 options:
a. Baseline reporting
b. Compliance reporting
c. Baseline assessment
d. Compliance review

Answers

Baseline reporting is the process of comparing the current state of a system to its baseline.

What is the name for a network that is purposefully vulnerable?

A honeynet is a network that has been intentionally set up with flaws and is hosted on a phony server to draw in hackers. The main goal is to simulate assaults in order to test network security.

What alternative term would you use to describe a security weakness?

A security vulnerability is a weak point, fault, or mistake discovered in a security system that could be used by a threat agent to penetrate a protected network.

To know more about Baseline visit :-

https://brainly.com/question/30193816

#SPJ4

The local amusement park has decided to stop printing paper copies of the park map. It will now only be available as a digital file. Why do some visitors think this is a bad idea

Answers

For the fact that not every visitor will have a mobile device on which he or she can read the map, some visitors believe that this is a bad idea.

What sort of paper is ideal for printing maps on?

A synthetic paper is the finest medium to print maps on if you want results that are waterproof, durable, and tear resistant. SYNPLAS SPA possesses all of these qualities. For printing maps and charts, synthetic papers are available.

Are paper maps distributed at Disneyland?

There are various places to get a map while in the Disneyland Resort. At the main entrance turnstiles of the theme park, there is a paper park brochure with a map. The majority of Guest Relations sites also have these.

To know more about mobile device visit :-

https://brainly.com/question/30011881

#SPJ4

Select the best reason to include height and width attributes on an tag.
A.they are required attributes and must always be included
B.to help the browser render the page faster because it reserves the appropriate space for the image
C.to help the browser display the image in its own window
D.none of the above

Answers

The best reason to include height and width attributes on a tag is to aid the browser in rendering the page more quickly since it reserves the proper space for the image.

Which of the following justifications for adding height and width attributes to an IMG tag is the best?

Because omitting them will prevent the browser from displaying the image, width and height dimensions for images should always be coded. The page will load quicker and the browser will be more effective.

while entering values for an image's height and width attributes?

Height indicates an image's height in pixels. The term width = specifies an image's width in pixels. Use the to set values for an image's height and width attributes.

To know more about attributes visit:-

https://brainly.com/question/28163865

#SPJ4


1.Explain five measures that protect users in the computer laboratory (10mks)

Answers

This chapter covers safe lab techniques, fundamental workplace safety precautions, proper instrument usage, and computer disposal.

What security precautions are in place in the computer lab?

When you are through using the device, turn it off. Never connect external devices without first checking them for malware. Since there are numerous devices and they might rapidly overheat in a lab, it is important to maintain a cool temperature in the space.

What safety measures in laboratories are most crucial?

Put on safety lab gear: As soon as you enter the lab, make sure you are wearing PPE. Before entering the lab, put on a lab coat with long sleeves, closed-toe shoes, and safety goggles. Keep your hair long if you have long hair.

To know more about computer laboratory visit:-

https://brainly.com/question/14751939

SPJ1

What type of error is raised when the Python virtual machine runs out of memory resources to manage a process

Answers

Stack overflow error is the  type of error is raised when the Python virtual machine runs out of memory resources to manage a process.

How can you define a stack overflow error example?

JVM will generate a StackOverflowError during this process if there is not enough room to store the new stack frames that must be constructed. Consider this: improper or nonexistent termination conditions This is mostly what leads to the condition known as unterminated or infinite recursion.

Why do Java stack overflow errors occur?

The Javadoc description for StackOverflowError notes that the error is generated as a result of too deep recursion in a specific code snippet as the most frequent cause for the JVM to experience this circumstance.

To know more about Stack overflow visit

brainly.com/question/28198079

#SPJ4

For this assignment, you will create a calendar program that allows the user to enter a day, month, and year in three separate variables as shown below.

Please enter a date
Day:
Month:
Year:
Then, your program should ask the user to select from a menu of choices using this formatting:

Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered.

Your program must include the three following functions:

leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year? (Links to an external site.)
number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month. (Links to an external site.)
days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed.
Hints
Start by defining your variables, using comments. You will need a separate variable for day, month, and year that store numbers input from the user.
Make sure to name your three functions exactly as they are named above, and pass the parameters exactly in the order specified below:
leap_year(y)
number_of_days(m, y)
days_passed(d, m, y)
Once you have a function that calculates whether a year is a leap year, that function should be called within your number_of_days() function. February can have either 28 or 29 days, so your number_of_days() function needs to take into account whether or not it is a leap year.
Once you have a function that calculates the number of days in a given month, that function should be called within your days_passed() function. Different months have different numbers of days, so your days_passed() function needs to take into account what month of the year it is.

Sample Run 1
Please enter a date
Day: 5
Month: 5
Year: 1984
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
1
31

Sample Output 1
Please enter a date
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
31

Sample Run 2
Please enter a date
Day: 21
Month: 6
Year: 2016
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
2
172

Sample Output 2
Please enter a date
Menu:
1) Calculate the number of days in the given month.
2) Calculate the number of days passed in the given year.
172

Answers

Answer:

hummm i have the same work i got a A

is this it is

Explanation:

For this assignment, you will create a calendar program that allows the user to enter a day, month, and year in three separate variables as shown below. Please enter a date Day: Month: Year: Then, your program should ask the user to select from a menu of choices using this formatting: Menu: 1) Calculate the number of days in the given month. 2) Calculate the number of days passed in the given year. If a user chooses option one, the program should display how many days are in the month that they entered. If a user chooses option two, the program should display how many days have passed in the year up to the date that they entered. Your program must include the three following functions: leap_year: This function should take the year entered by the user as a parameter. This function should return 1 if a year is a leap year, and 0 if it is not. This information will be used by other functions. What is a Leap Year? (Links to an external site.) number_of_days: This function should take the month and year entered by the user as parameters. This function should return how many days are in the given month. (Links to an external site.) days_passed: This function should take the day, month, and year entered by the user as parameters. This function should calculate the number of days into the year, and return the value of number of days that have passed. The date the user entered should not be included in the count of how many days have passed. Hints Start by defining your variables, using comments. You will need a separate variable for day, month, and year that store numbers input from the user. Make sure to name your three functions exactly as they are named above, and pass the parameters exactly in the order specified below: leap_year(y) number_of_days(m, y) days_passed(d, m, y) Once you have a function that calculates whether a year is a leap year, that function should be called within your number_of_days() function. February can have either 28 or 29 days, so your number_of_days() function needs to take into account whether or not it is a leap year. Once you have a function that calculates the number of days in a given month, that function should be called within your days_passed() function. Different months have different numbers of days, so your days_passed()

Match the term to its definition. 1 . Boot partition The process of installing a new version of software to improve performance 2 . File allocation system Section of a hard drive used for file storage 3 . Upgrade The process of putting software on the computer for use 4 . Installation Method of storing files used by Microsoft 5 . Device driver Section of the hard drive where the operating system program is stored 6 . NT file system Method of storing files used by many different types of computers 7 . Partition Two separate standards used together that define how data is sent and received across a network 8 . System partition Section of the hard drive where the boot loader program is stored 9 . Transmission Control Protocol/Internet Protocol Program that controls a piece of hardware

Answers

A computer is an electronic device that transforms raw data and outputs information.

What is the purpose of electronic computer?Nearly all cutting-edge scientific tools in the realm of modern science use electrical technology. Computers are frequently utilised abroad to facilitate testing, production, and design. Chinese researchers also use electronic computers to do a vast number of difficult computations that are beyond the capacity of humans.These digital computers may be categorised into four groups based on the size and nature of the device: Micro, Mini, Mainframe, and Super computers.A computer is an electronic device that converts unprocessed data into information. An electrical device that takes data as input and changes it in response to a set of specialised instructions known as programmes to create the required output (referred to as Information).

Matched the term to its definition :

1 . NT file system : Method of storing files used by Microsoft

2 . Installation : The process of putting software on the computer for use

3 . Boot partition : Section of the hard drive where the boot loader program is stored

4 . Upgrade : The process of installing a new version of software to         improve performance

5 . File allocation system : Method of storing files used by many different types of computers

6 . Transmission Control Protocol/Internet Protocol : Two separate standards used together that define how data is sent and received across a network

7 . Device driver : Program that controls a piece of hardware

8. Partition : Section of a hard drive used for file storage

9. System partition : Section of the hard drive where the operating system program is stored

Learn more about computer refer to :

https://brainly.com/question/24540334

#SPJ4

g Shift registers and counters use hardware _____________________ for their internal data storage.

Answers

A series of core registers coupled together to generate a clock-driven data shift is known as shift register counters. Johnson counters and ring counters are two of the most popular types of these.

What is the purpose of a shift register?

Shift registers are widely used in converters that convert parallel data to serial data or vice versa. Shift registers can also be employed as delay circuits and digital pulse extenders.

Can data be stored in a shift register?

A shift register is represented by a pair of terminals that are placed next to one another, vertically on either side of the loop boundary. When an iteration is finished, data is stored in the terminal on the right side of the loop, which has an up arrow.

To know more about shift register here:-

brainly.com/question/14096550

#SPJ4

To analzye various alternative scenarios, a manager would use _______.
a. the spreadsheet's 'what-if' capability
b. the graphing features of spreadsheet software
c. the reporting feature of a BI tool
d. a data visualization tool

Answers

The 'what-if' feature of the spreadsheet would be used by the management to assess numerous potential scenarios.

used to search through enormous amounts of data for hidden patterns that can be utilized to forecast future trends?

Large data sets are sorted through using a technique called data mining to find patterns and relationships that may be used to analyze data and find answers to business challenges. Businesses can foresee future trends and make more educated business decisions thanks to data mining techniques and tools.

Which of the following will be a fact measure in a data cube utilized at a chain retail establishment?

The revenue for a chain retail business is typically the fact measure in a data cube (example: Indiana's second-quarter revenue of $900 from sales of pants).

To know more about spreadsheet visit :-

https://brainly.com/question/8284022

#SPJ4

As part of clinical documentation improvement, a patient case review resulted in the determination that a patient's previous hospital discharge was inappropriate because the patient was transported back to the hospital via ambulance and admitted through the emergency department within three days of the previous discharge; this process is called a __________ audit.

Answers

Within three days of the previous release; this procedure is known as a readmission audit.

For an osteoporosis diagnosis, which code would be considered a medical necessity?

The WHO classifies ICD-10 code Z13. 820, Encounter for osteoporosis screening, as a medical condition that falls under the heading of "Factors influencing health status and interaction with health services."

What kind of code should be used to record a patient's disease, injury, or medical condition?

The state of the patient and the diagnosis made by the doctor are represented by ICD codes. These codes are employed in the billing procedure to establish medical necessity. Coders must ensure that the procedure they are billing for is appropriate given the provided diagnosis.

To know more about readmission audit visit :-

https://brainly.com/question/29979411

#SPJ4

URGENT: What questions would you ask a USER when in a requirements-gathering session? Multiple answers may be selected.

1. Are there any websites that you like or dislike?
2. What key information do you expect to find on the site?
3. What kind of security would you like to be implemented for the transactions you might do?
4. What might help you to navigate the sire?

Answers

The questions would you ask a user when in a requirements-gathering session are:

2. What key information do you expect to find on the site?

3. What kind of security would you like to be implemented for the transactions you might do?

What is a requirements-gathering session?

The act of developing a list of requirements to explain what a project is about and its aim is known as requirement gathering. Stakeholders, whether clients, employee users, consumers, or vendors, can provide insights.

Requirement gathering is frequently used to create project blueprints. Developers, for example, adjust requirements between iterations.

Therefore, the correct options are 2 and 3.

To learn more about the requirements-gathering session, refer to the link:

https://brainly.com/question/29768295

#SPJ1

Can someone explain this question & answer to me?

var list = [11, 35, 6, 0];
var sum = 0;

for (var i = 0; i < list.length; i++) {
sum = sum + list[i];
}
sum = sum/list.length;
console.log(sum);

Answers

The code iterates through the list of numbers and adds them up.
The sum is then divided by the length of the list to get a percentage.
The code will iterate through the list of numbers and add them up.
The sum variable is then divided by the number of items in the list to determine the average value.

Joe, a user, wants his desktop RAID configured to allow the fastest speed and the most storage capacity. His desktop has three hard drives. Which of the following RAID types should a technician configure to achieve this?
A. 0
B. 1
C. 5
D. 10

Answers

For Joe, the technician has to set up RAID 0. By dividing data into many copies, RAID 0, also known as the striped volume or stripe set, is set up to provide the highest performance and greatest storage space.

How does a RAID function?

Data is duplicated across two drives in the array using RAID 1 (mirrored disks), which offers complete redundancy. The identical data is always stored on both drives at the same time. As long as one disk remains, no data is lost.

Why could someone utilize RAID?

Redundant Array of Independent Disks, or RAID, is a technology that combines many hard disks to increase performance. RAID configuration might affect how quickly your computer operates.

To know more about RAID visit:

https://brainly.com/question/14669307

#SPJ4

Given the set of element {a, b, c, d, e, f} stored in a list, show the final state g of the list, assuming we use the move-to-front heuristic and

Answers

Self-Organizing list according to a certain sequence applying move-to-Front algorithm. Output of the different states of the list including the final state is shown.

Python code

from __future__ import print_function

#Define variables

inpt = 'abcdefacfbde'

seq = list('abcdef')

sq, p = [], seq[::]

ss = 0

if __name__ == '__main__':

   print("Self-Organizing Lists applying move-to-Front algorithm")

   print("Define sequence pattern: ", seq[:])

   print("")

   print("Access sequence")

   for s in inpt:

       ss+=1

       for x in seq:

 #applying move-to-Front algorithm

           idx = p.index(x)

           sq.append(idx)

           p = [p.pop(idx)] + p

           if p[0] == s:

 #output sequence

               print("seq:",ss, ": ", p)

               lst = (p[len(p)-1])

               sp = p

   sp.append(lst)

   print("Final state of the list: ", sp )

   

To learn more about Self-Organizing list see: https://brainly.com/question/6362941

#SPJ4

 

Other Questions
Tetsuko is a surgical resident at a busy metropolitan hospital. She regularly works 24-48 hour shifts as a part of her duties. What must the employer do, according to the FLSA the unit implemented a quality improvement program to address cleint pain relife. which set of criteria is the best determinant that the goal has been met. quislet An Unlikely HeroineElizabeth KiblerTeresa gasped and sputtered as she ran a final lap around thegym. Most of the other players had already completed the half-milerun; however, Teresa was only now crossing the finish line. Theother players had already moved onto ball dribbling and passingdrills. Teresa's older sister, Alisa, tossed the ball adeptly to the otherplayers and expertly shot basket after basket2Because Alisa was the team captain, she was in charge of thepractice. Looking over to her sister, Alisa waved for Teresa to comejoin the team, Holding her forehead in her hands, Teresa feigned aheadache. Complaining about the pain, Teresa went to the lockerroom to take a shower.Teresa had planned to quit the basketball team for three weeks.She liked spending time with her sister, but she just felt like shewasn't cut out for basketball's rapid pace. Teresa felt like a fish outof water. After they got home from school, Teresa knocked at hersister's door. Slightly opening the door, she saw her sister shootinga miniature basketball into a plastic hoop on the wall.4"You caught me," laughed Alisa "I just can't stop playing-it's myxWhat is one of the MAIN conflicts present throughout thispassage?A Teresa's struggle with her desire to quit thebasketball team and her desire to spend time withher sister.4x B4x C4x DThe basketball team's struggle to kick Alisa offthe team for always favoring her sister.The basketball team's struggle to tell Alisa thatthey didn't want her sister on the team anymore.Teresa and Alisa's struggle with each other tobecome the basketball team's coach.A What did Lenin do before the revolution? What cells are missing in SCID? any help please - Simplify the expression 3(x + 2) 5(2x + 1). Factorise the expression 12x 18y and 2x25x 3. (3+6=9) Look down below for the question How do you calculate F G and G of f? Lenny paid $13 for 4 1/3 pounds of apples.How many pounds of apples can he buyfor $29? What are the 3 purposes of the church? Resurfacing a particular section of highway would result in cost of maintenance savings of $500 per year for the first five years and $1,000 per year for the next five years. If maintenance costs are the only consideration, the maximum amount to spend now on the project at 6% interest is __________. $5,395 $5,254 $5,453 $5,085 A landowner plans to harvest a large area of pine trees to sell for lumber. How canthe landowner best sustain the pine trees as a natural resource?A The landowner should consult a forester and replant the land with pine trees.B The landowner should leave a few trees and let the land regeneratenaturally.C The landowner should replant the land with corn or soybeans.D The landowner should plant a few genetically altered trees. The major difference between a wet tropical region and a tropical wet and dry region is ________. A. elevation B. pressure C. precipitation D. wind direction E. temperature Lesson 3, Interactions among living thingsBe able to define and give an example of each.1. natural selection2. adaptations3. niche4. competition5. predation, predator, prey6. symbiosis: mutualism, commensalism, parasitism: parasite and host which country did the united states embargo, or stop trading with, prior to joining the war? My question is in the pic Astronomers can use the brightness of two light sources, such as stars, tocompare the distances from the light sources. The intensity, or brightness, of light I is inversely proportional to the square of the distance from the lightsource d. If d is the independent variable and I is the dependent variable, graph the equation from Exercise 42 when k = 16 Erin combined 1 17/18 pounds of peanuts with 1 5/6 pounds of M&M's to create trail mix, then evenly distributed the mix in 8 bags. how many pounds of trail mix are in each bag? Division of mixed numberrss can someone help me find two true statements!