Answer in 3-5 sentences for each

What is a baseline? Why is recording an accurate baseline critical to the troubleshooting process?

Demonstrate through discussion that you understand the types of software applications that are prime for NLB and those that are better protected with failover clusters. Discuss various operations known and dissect the functions. Which functions should be protected by which technology?

Answers

Answer 1

A baseline is a constant point of comparison that is employed in comparison studies.

What is baseline?

In business, a project's or product's success is frequently evaluated in comparison to a baseline figure for expenses, sales, or any other number of factors. A project may go over or under its predetermined benchmark.

For instance, a business can use the number of units sold in the first year as a benchmark against which to compare subsequent annual sales in order to assess the success of a product line. The baseline acts as the benchmark against which all subsequent sales are evaluated.

Any number that acts as an acceptable and specified beginning point for comparisons can be used as a baseline. It can be used to assess the results of a change, monitor the development of an improvement project, or compare two periods of time.

Therefore, A baseline is a constant point of comparison that is employed in comparison studies.

To learn more about baseline, refer to the link:

https://brainly.com/question/14799723

#SPJ1


Related Questions

Write a function that uses recursion to raise a number to a power. The function should accept two arguments: the number to be raised and the exponent. Assume that the exponent is a nonnegative integer. Demonstrate the function in a program.

IN C PROGRAM

Answers

Answer:

/*

Program to computea number raised to a power using recursion

base = number and exp is the power to which the number is raised

*/

#include <stdio.h>

int power(int base, int exp);  

int main(){

   int base, exp;

   

   printf("Enter base: ");

   scanf("%d", &base);

   

   printf("Enter exponent: ");

   scanf("%d", &exp);    

   

   

   long result = power(base,exp);  //function call

   printf("%d raised to the power %d = %ld\n", base, exp, result);

   

   return 0;

}

int power(int base, int exp){

   //2 base cases

   // if exp = 0, return 1

   if (exp == 0){

       return 1;

   }

   

   //if exp  1, return base

   if ( exp == 1){

       return base;

   }   //base case when expnent is 0

   

   //otherwise return base * base to the power exp-1

   return  base * power(base, exp-1 );

}

Explanation:

If you use a pen down block to instruct a sprite to go to random position and then move 100, what happens? A. The sprite teleports randomly and creates a single line 100 units long. B. The sprite creates a 100-unit line between its starting point and a random location. C. The sprite draws a line to a random position, then creates another line 100 units long. D. The program does not run because these commands can’t be combined.

Answers

Answer:

C

Explanation:

The sprite draws a line to a random position, then creates another line 100 units long

Which should you do to avoid having difficulty getting scholarships or being
admitted to college?
A. Protect yourself from cyberbullying
B. Be honest and open in the material you post online
C. Avoid making comments on your friends' photos
D. Watch the nature of what you post on social media

Answers

To avoid having difficulty getting scholarships or being admitted to college, you should watch the nature of what you post on social media.

What do you mean by scholarship?

A scholarship is a type of financial aid given to students to help them further their education. Scholarships are typically awarded based on criteria such as academic merit, diversity and inclusion, athletic ability, and financial need. Scholarship criteria typically reflect the values and goals of the award's donor, and while scholarship recipients are not required to repay their awards, they may be required to meet certain requirements during their period of support, such as maintaining a minimum grade point average or participating in a specific activity.

Finding appropriate scholarships to apply to, according to the majority of my students, is one of the most difficult aspects of applying for scholarships. With so many scholarships and scams available, it's easy to become overwhelmed.

So, D is the correct answer.

To learn more about scholarship

https://brainly.com/question/25298192

#SPJ9

One of Accenture’s clients is considering a major Cloud transformation project but is concerned about the time and costs associated with such an initiative.

What should Accenture’s security team focus on to address this particular client's concern?

Answers

Accenture has created accelerators that can quickly and cost-effectively deploy particular security policies to cloud settings. Thus, option A is correct.

What is a Cloud transformation?

Cloud transformation can be defined as the way through which the data is being transferred into a cloud system in which they can access the data as they want and is always present at that time.

Perhaps one of Accenture's customers are thinking contemplating undertaking a sizable cloud transformation project and yet is worried about just the cost and effort involved.

Accenture has created acceleration that really can quickly and cost-effectively apply particular security measures to cloud settings.

Therefore, option A is the correct option.

Learn more about Cloud transformation, here:

https://brainly.com/question/25737623

#SPJ1

The question is incomplete, the complete question is:

A. Accenture has developed accelerators that can deploy specific security controls to cloud environments in just a few hours, thereby reducing costs.

B. Accenture is the only company that has the experience needed to implement major cloud transformations.

C. Accenture will delay the migration if there are vulnerabilities present in the client's current systems.

D. Accenture's information security team uses waterfall methodology to ensure the migration is fully documented.

Distinguish between composition and inheritance.

Answers

Answer:

compotsition: The combining of distinct parts or elements to form a whole

Inheritance: The action of inheriting something

Explanation:

what do we generally avoid in a many-to-many junction table?
a. two foreign keys
b. an auto increment primary key column
c. data items specific to the many-to-many relationship
d. a logical key

Answers

Not An AUTOINCREMENT primary key column, Data items specific to the many-to-many relationship. When numerous records in one table are linked to several records in another table, this is known as a many-to-many relationship.

What is many to many junction?

When numerous records in one table are linked to several records in another table, this is known as a many-to-many relationship.

The simplest method is to utilize a Junction Table when you need to create a many-to-many link between two or more tables. By referring to the main keys of each data table, a junction table in a database, also known as a bridge table or associative table, connects the databases.

A many-to-many relationship, or type of cardinality, is used in systems analysis to describe the relationship between two entities, such as A and B, where A may have a parent instance for whom there are many offspring in B and vice versa.

To learn more about Many to many junction refer to:

https://brainly.com/question/24092195

#SPJ13

Witch of the following are true of email communications when compared to
Phone or face to face communications

Answers

The statements which are true of e-mail communications when compared to phone or face-to-face communications is that communications via e-mail are:

more difficult to determine tone or inflection.easily shared.absent of visual cues.

What is communication?

Communication can be defined as a strategic process which involves the transfer of information (messages) from one person (sender) to another (recipient or receiver), especially through the use of semiotics, symbols, signs and network channel.

What is an e-mail?

An e-mail is an abbreviation for electronic mail and it can be defined as a software application (program) that is designed and developed to enable users exchange (send and receive) both texts and multimedia messages (electronic messages) over the Internet.

In this context, we can reasonably infer and logically deduce that in an electronic mail (e-mail) it would be more difficult to determine a person's tone or inflection in comparison with phone or face-to-face communications.

Read more on e-mail here: brainly.com/question/15291965

#SPJ1

Complete Question:

Which of the following are true of e-mail communications when compared to phone or face-to-face communications?

Communications via e-mail are _____.

absent of visual cues

more precise and accurate

limited in efficiency

less likely to be saved

easily shared

more difficult to determine tone or inflection

2. Mr. Motladiile is an innovative businessman who came up with an idea of creating a system that can generate electricity using magnets, and he teamed up with Mr. Tangeni who is the sole engineer of the system. Due to finances the project halted, however Mr. Tangeni felt that he was under paid despite the effort he has put leading the project, he then thought of creating the system and sell it to the highest bidder.
a) Explain the protection that Mr. Motladiile can put in place to prevent reproduction of the design and for how long will it last

Answers

Answer:I DONT THE ANSER PLEASE HELP ME

Explanation:PLEASE

This is rigged. I think I'm gonna faint.

Answers

The primary characteristics of the given devices are:

A mouse is a(n) input device.

A printer is a(n) output device.

What is a device?

A device is a piece of hardware or equipment in a computer system that performs computing functions. A device is a physical piece of hardware or software that performs one or even more computing functions within a computer system. It can either provide input to the computer or accept output from it. A device is any electronic element that has some computing capability and can install firmware or third-party software. Devices include your computer's speakers, disc drive, printer, microphone, modem, and mouse. They can all be replaced or installed separately.

To learn more about device

https://brainly.com/question/27013190

#SPJ13

Answer:

The answers are input and output, respectively.

Explanation:

Which of these statements about Active Directory (AD) are true? Check all that apply.
a. AD includes a tool called the Active Directory Authentication Center, or ADAC.
b. AD is incompatible with Linux, OS X, and other non-Windows hosts.
c. AD can ""speak"" LDAP.
d. AD is used as a central repository of group policy objects, or GPOs.

Answers

All of the statements about Active Directory (AD) that are true include the following:

c. AD can ""speak"" LDAP.

d. AD is used as a central repository of group policy objects, or GPOs.

What is Group Policy Object?

Group Policy Object can be defined as a set of Group Policy settings of the Microsoft Windows NT operating systems that is designed and developed to define what a computer system should look like.

Additionally, Group Policy Object (GPO) controls and sorts all of the end user and computer account features and working environment in general. In order to sort a computer system into a group, it is very essential and important that you set a group sorting criteria, so as to sort systems by IP Address.

In conclusion, Active Directory (AD) can manage Lightweight Directory Access Protocol (LDAP) and it is generally used by network administrators and engineers as a central repository of group policy objects (GPOs).

Read more on Active Directory here: brainly.com/question/28900362

#SPJ1

Codehs 4.1.8 Using the Point Class​

Answers

Using the knowledge of the computational language in JAVA it is possible to write that Using the Point Class​  to described the correct code.

Writting the code:

{

 public static void main(String[] args)

 {

   extractDigits(2938724);

 }

 public static void extractDigits(int num)

 {

   int digit;

   while( num > 0 )

   {

     digit = num % 10;

     num = num / 10;

     System.out.println(digit);

   }

 }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Answer:

Explanation:

public class Point

{

   private int x;

   private int y;

   

   public Point(int xCoord, int yCoord)

   {

       x = xCoord;

       y = yCoord;

   }

   

   public void move(int dx, int dy)

   {

       x += dx;

       y += dy;

   }

   

   public String toString()

   {

       return x + ", " + y;

   }

}

How to address a resume with wacky fonts

Answers

Answer:

Open Minded

Explanation:

So think about the person who wrote this resume maybe they were nervous and looking for a way to lighten the mood so they chose something wacky or funny to realief stress or any anxiety so just be open minded and dont judge people based on just the fonts they use

Hope This Helps <3 <3

1.16.4: Super Cleanup Karel
does not pass 4th world, please advise, urgent answer needed, 50 pts.
attached image is final result on world 4.
variables are NOT allowed.


public class SuperCleanupKarel extends SuperKarel
{
public void run()
{
ballsTaken();
while(leftIsClear())
{
endUpFacingEast();
ballsTaken();
if(rightIsClear()){
endUpFacingWest();
ballsTaken();
} else {
turnAround();//commentasdfasfdf
}
}
if(rightIsClear())
{
endUpFacingWest();
ballsTaken();
} else {
turnAround();
}
turnLeft();
if(rightIsBlocked())
{
if(frontIsBlocked())
{
turnLeft();
}
}else
{
turnRight();
}
while(frontIsClear())
{
move();
}
turnLeft();
if(frontIsBlocked())
{
turnRight();
if(leftIsBlocked())
{
if(frontIsBlocked())
{
turnLeft();
}
}
turnLeft();
}

}

private void ballsTaken() {
if(ballsPresent()) {
takeBall();
}
while(frontIsClear())
{
move();
if(ballsPresent())
{
takeBall();
}
}
}

private void endUpFacingEast()
{
turnLeft();
move();
turnLeft();
}

private void endUpFacingWest()
{
turnRight();
move();
turnRight();
}
}

Answers

Answer:

WHAT????????

Explanation:

if you want to assign a user the permission to create schema and run ALTER or any user, what role should you assign to that user?
A. dp_backupoperator
B. db_accessadmin
C. db_securityadmin
D. db_datawriter

Answers

As a database administrator, if you want to assign a user the permission to create schema and run ALTER or any user, the role should you assign to that user is "db_accessadmin" (Option B)

What does it mean to run ALTER?

In SQL, the ALTER command is used to modify a table, view, or the whole database. The ALTER command in SQL allows us to add, change, and delete constraints, columns, and indexes.

It is to be noted that SQL is a computer language developed for managing data in a relational database management system or for stream processing in a relational database management system.

Learn more about database administrator:
https://brainly.com/question/13040754
#SPJ1

what does syntax error mean :-;
explain briefly.

thankyou!

Answers

A syntax error is an error in the syntax of a sequence of characters or tokens that is intended to be written in a particular programming language. For compiled languages, syntax errors are detected at compile-time. A program will not compile until all syntax errors are corrected.

Know the tags to be used for each style or format.​

Answers

Answer:

1. Bold                           <b                    /b>

2. Strong                      <strong    /strong>

3. Italic                          < i              /i >

4. Emphasized             <em           /em>

5. Superscript              <sup         /sup>

6. Subscript                 <sub        /sub>

Explanation:

What part of a computer stores all the digital content on a computer?

Motherboard

Hard disk drive

SD card

CPU

Answers

Answer:

Its (B) Hard disk drive

Explanation:

Its B since in a computer the hard disk drive stores digital content like video's, word documents, photos, programs, etc.

Boolean Algebra
Simplify AB'(D'+C'D)+B(A+A'CD) and show all work.

Answers

Answer: B details to simplify A'B(D' + C'D) + B(A + A'CD) start with ( D' +C'D) = (D' + C') likewise (A + A'CD) = (A + CD) This gives A'B(D' + C') + B(A + CD)= ...

4 answers

·

1 vote:

[math]A'B (D'+C'D) + B (A+ A'CD)[/math] [math]= A'B (D'+D)(D'+C') + B (A+ A')(

Explanation:

are all counting and calculations done in the system unit

Answers

The ALU (Arithmetic Logic Unit), located in the system unit, is the component of the computer utilized for calculations and comparisons.

Describe ALU.

Arithmetic-logic unit (ALU) definition Arithmetic and logic operations are performed on the operands in computing instruction words by an arithmetic-logic unit, a component of a central processing unit. Some processors separate the ALU into an arithmetic logic unit (AU) and an arithmetic logic (LU).

What are the primary purposes of an ALU?

Simple multiplication, division, addition, subtraction, addition, and logic operations like OR and AND are all performed by the ALU. The data and instructions for the program are stored in memory. Data and instructions are retrieved by the control unit from memory.

TO know more about Arithmetic Logic Unit visit:

https://brainly.com/question/14247175

#SPJ10

What is the full meaning of FORTRAN​

Answers

Answer:

FORTRAN in full is "Formula Translation"

Explanation:

Its a computer programming language created in 1957 by John Backus that shortened the process of programming and made computer programming more accessible

to create a public key signature, use the ______ key.

Answers

Private Key is the correct solution to the problem.  To create a public key signature, you would use the Private key. When you have an SSH key, you must also have the public key in order to set up SSH passwordless login with SSH-key. However, if you have lost the public key but still have the private key, you can regenerate the key.

What is a public key signature?

It is a cryptographic key that is associated with a private key and is used with an asymmetric (public key) cryptographic algorithm. The public key is linked to a user and can be made public. When it comes to digital signatures, the public key is used to validate a digital signature signed with the corresponding private key.

In Layman's Terms, A Public Key Signature (PKI Digital Signature) is the modern equivalent of a wax seal that people historically would use to secure sensitive communications.

What is Private Key?

A private key, like a password, is a secret number used in cryptography. Private keys are also used in cryptocurrency to sign transactions and prove ownership of a blockchain address.

A private key is an essential component of bitcoin and altcoins, and its security features aid in preventing theft and unauthorized access to funds.

To know more about public key signature, visit: https://brainly.com/question/18560219

#SPJ4

1. What operating system are you using on your computer?

Answers

Answer:

Windows

Explanation:

Flexible and convenient

how adobe photoshop can improve productivity of a organization

Answers

Adobe photoshop allows the process of editing an image to go by much quickly. Instead of taking days, it could take a few hours instead with adobe photoshop

what are the activities usually performed in database operations

Answers

Answer:

The most frequently available operators include PROJECT, JOIN and SELECT. SQL includes DDL (Data Description Language)

Explanation:

When collecting and sharing information, the company must meet all _________________________ for the type of data being collected.
A US laws
B State Laws
C Federal Laws
D Federal or State Laws

Answers

Answer: D Federal and State Laws

Explanation: U.S. Privacy Act of 1974-this act established rules and regulations regarding U.S. government agencies collection, use, and disclosure of personal information.

The Federal Trade Commission govern the collection, use, and disclosure of personal data.

HIPPA- Health Insurance Portability and Accountability provide healthcare and health insurance protection

Answer: D

Explanation:

how do you fill different data into different cells at a time in Excel

Answers

The way that you fill different data into different cells at a time in Excel are:

Click on one or a lot of cells that you want to make use of as the basis that is needed for filling additional cells. For a set such as 1, 2, 3, 4, 5..., make sure to type 1 and 2 into the 1st two cells. Then pull the fill handle .If required, select Auto Fill Options. and select the option you want.

How do you make a group of cells auto-fill?

The first thing to do is to place the mouse pointer over the cell's bottom right corner and hold it there until a black + symbol appears. Drag the + symbol over the cells you wish to fill in while clicking and holding down the left mouse button. Additionally, the AutoFill tool rightly fills up the series for you.

Note that  Excel data entering  can be automated and this can be done by: On the Data tab, select "Data Validation," then click "Data Validation." In the Allow box, select "List." Enter your list items in the Source box, separating them with commas. To add the list, click "OK." If you wish to copy the list along the column, use the Fill Handle.

Learn more about Excel from

https://brainly.com/question/25879801
#SPJ1

And one well written paragraph, explain how you can put raw data into excel and turn it into something useful that could be used in different Microsoft office applications.

Answers

The way that you can put raw data into excel and turn it into something useful that could be used in different Microsoft office applications are:

Open the Excel file into which the data is to be imported.Now, select the Data tab on the ribbon.Select  the Get Data option. Select From File > From Text/CSV.Through the use of the explorer, Select a CSV file. Lastly, Select the Load button.

What is excel about?

Excel is said to often used to save, analyze, a well as report on large volume of data.

Note that It is often used as a tool by accounting teams for the recording of financial analysis, as well as been used by professional to manage a list of and unwieldy form of datasets. Examples of Excel applications are balance sheets, budgets, etc.

Learn more about Microsoft office applications from

https://brainly.com/question/15131211
#SPJ1

Given the string, s, and the list, lst, associate the variable contains with True if every string in lst appears in s (and False otherwise). Thus, given the string Hello world and the list ["H", "wor", "o w"], contains would be associated with True.

Answers

In this exercise we have to use the knowledge of computational language in python  to write a code that the string, s, and the list, lst, associate the variable contains with True if every string in lst appears in s (and False otherwise)

Writting the code:

lst = ["H", "wor", "o w"]

s = "Hello world"

contains = True

for e in lst:

if not e in s:

contains = False

break

print(contains)

We used the print() function to output a line of text. The phrase “Hello, World!” is a string, and a string is a sequence of characters. Even a single character is considered a string.

See more about python at brainly.com/question/18502436

#SPJ1

you have a 10vdg source available design a voltage divider ciruit that has 2 vdc , 5vdc , and 8 vdc available the total circuit current is to be 2mA

Answers

If you try to divide 10V in three voltages, the sum of the three voltages must be equal to the total voltage source, in this case 10V. Having said this, 2 + 5 + 8 = 15V, and your source is only 10V. So you can see is not feasible. You can, for example, have 2V, 5V and 3V, and the sum is equal to 10V. Before designing the circuit, i.e, choosing the resistors, you need to understand this. Otherwise, I suggest you to review the voltage divider theory.

For instance, see IMG2 in my previous post. If we were to design a single voltage divider for the 5VDC, i.e, 50% of the 10V source, you generally choose R1 = R2., and that would be the design equation.

Edil wants to create a document by typing in a few paragraphs of text into his computer. He needs to use a pointing device to click the appropriate
buttons to run the text editor.He also needs to see what he is typing. Which three peripherals will Edil need to perform this task?
keyboard
joystick
speaker
mouse
monitor

Answers

A monitor is a screen that is used, for instance, in airports or television studios, to show specific types of information. He was observing a tennis match on a television screen. Screen, visual display unit, and VDU More alternatives to monitor

Explain about the monitor?

A computer system can be monitored to ensure proactive response, data protection, data collection, and overall system health. Although monitoring doesn't solve issues, it does make computers more dependable and stable.

A computer monitor is a display adapter that shows data from the video card of the computer. Images are displayed on the directly attached monitor after binary data, which consists of 1s and 0s, is converted into images by a video card or graphics card.

The most popular sort of monitor you can find right now, along with LED, is LCD. In order to organize the liquid between the two glass panes that make up an LCD monitor, hundreds of rows of pixels are used.

Monitor helps us to see what we are typing.

To learn more about monitor refer to:

https://brainly.com/question/3927906

#SPJ1

Other Questions
Purple hibiscusChapter 7Page. 90: The priest did not preach on the Christmas story or a gospel reading. Instead, he used to occasion to do what? In the context of early childhood education, developmentally appropriate practice emphasizes. why do people like apples Write the ions present in solution of Pb(C2H3O2)2 . Use the graph of the exponential function to answer the following question.Which statements about the graph are TRUE? Select all that apply. A. The x-intercept is 2. B. The y-intercept is 3. C. The asymptote is y = -1D. The range is all real numbers E. The domain is all real numbers F. The function shows growth G. As x increases, y approaches, but never reaches, -1 A 28 0 128 B C Problem 4.1 Determine the measure of the missing angle. [tex]\sqrt{x} 10 greater than, less than, or equal to 3[/tex] I want you to read the story and answer this question.1.) De dnde es mi amiga sol? De___ A. A one-way train ticket in the city costs $1.65. A monthly pass costs $55. For what numbers of rides should you buy the monthly pass?B. In February, there are exactly 4 weeks. You ride the train one time each weekday and two times on Saturdays and Sundays in February. About how much do you save by using the cheaper option? . let s be the subspace of c[a, b] spanned by ex , xex , and x2ex . let d be the differentiation operator of s. find the matrix representing d with respect to [ex , xex , x2ex ]. an ester can be produced by: a. reacting acid anhydride with carboxylic acid b. reacting aldehyde with carboxylic acid c. reacting alcohol with carboxylic acid d. reacting aldehyde with carboxylic acid help me out pleaseeeeeeeeeeeeeeeeee The manager of a theater wants to know whether the majority of its patrons are adults or children. One day, 5400tickets were sold and the receipts totaled $23,258. The adult admission is $5.50, and the children's admission is $3.50.How many adult patrons were there?There were adult patrons. The energy stored in the chemical bonds of a carbohydrate molecule isA. specific heat. B. Kinetic energy. C. potential energy. D. worked. Rewrite the sentences using the passive to emphasize the agent Consumer Economics Each family in a neighborhood is contributing $20 worth of food to the neighborhood picnic. The Harlin family is bringing 12 packages of buns. The hamburger buns cost $2.00 per package. The hot-dog buns cost $1.50 per package. How many packages of each type of bun did they buy?Choose the correct equation that represents the number of buns purchased. [ Select ]Choose the correct equation that represents the cost of the buns. [ Select ][ Select ] packages of hamburger buns were bought.[ Select ] packages of hot dog buns were bought. the path leading the nation to civil war culminated in the firing on fort sumter in april 1861. this chapter outlines the pivotal events between 1840 and 1861 leading to civil war. place the following key events in chronological order. Calculate the kinetic energy of a 1000 kg car moving at 4 meters per second Can someone help me out it dosent seem hard but its just hard for me to focus Help with these 5 questions IM IN A HURRY!!(Brainliest/15pts