insuring a field is populated with usable data is called what? data validation substantiated data verified schema data data authentication

Answers

Answer 1

Insuring a field is populated with usable data is called data validation.

What is data validation?The process of ensuring that the data entered into a database or other system is accurate and consistent is known as data validation. Data that has been supported by another source, such as an audit trail or a manual review, is referred to as substantial data. Verified data is information that has been examined by a qualified individual for completeness and accuracy. Schema data, which includes columns, rows, keys, etc., is the format or organisation of the data. Data authentication is the process of ensuring that the data is valid and that it was created by the owner or originator and not by another party who might have corrupted or modified it.

To learn more about data validation refer to:

https://brainly.com/question/29746514

#SPJ4


Related Questions

although it is not recommended, a company chief information officer (cio) wants to configure and use the ff02::1 group on his new ipv6 network to send traffic to every node in the infrastructure. what group must he enable?

Answers

The chief information officer of a corporation wants to set up and use the ff02::1 group on his new IPv6 network to transmit traffic to every node in the infrastructure, but this is not advised.

What is collision domain?

The remote client may connect to the Internet via a dedicated or unreliable connection. To allow private network addresses to be converted to a random external port and public IP address, both network address translation (NAT) and port address translation (PAT) must be enabled. Switches typically function at Layer and are one of the network's traffic directors. By utilising packet switching, they enable the connection of several devices within a LAN while reducing the collision domain.

To learn more about collision domain from given link

brainly.com/question/13381300

#SPJ4

you have a website that accepts input from users for creating customer accounts. input on the form is passed to a database server where the user account information is stored. an attacker is able to insert database commands in the input fields and have those commands execute on the server. which type of attack has occurred? answer sql injection dll injection cross-site scripting buffer overflow

Answers

The website has experienced a SQL injection attack. SQL injection is a type of cyber attack in which an attacker inserts malicious code into an input field in order to execute unauthorized database commands on a server.

What is SQL injection attack ?SQL injection attacks often involve the injection of malicious SQL statements into a web form or other input field, which are then passed to a database server for execution. These attacks can be used to access or modify sensitive data, disrupt database operations, or even take over the database server itself. SQL injection attacks are often possible because of poor input validation or insufficient security controls on the server. To prevent SQL injection attacks, it is important for websites to carefully validate user input and to use prepared statements or parameterized queries to prevent the execution of malicious SQL code.

To learn more about SQL injection refer :

https://brainly.com/question/29851314

#SPJ4

Consider the following two code segments. Assume that the int variables m and n have been properly declared and initialized and are both greater than 0.

for (int i = 0; i < m * n; i++)
{
System.out.print("A");
}
for (int j = 1; j <= m; j++)
{
for (int k = 1; k < n; k++)
{
System.out.print("B");
}
}
Assume that the initial values of m and n are the same in code segment I as they are in code segment II. Which of the following correctly compares the number of times that "A" and "B" are printed when each code segment is executed?

Answers

The number of times that "A" is printed in code segment I is equal to m * n, while the number of times that "B" is printed in code segment II is equal to (m - 1) * n.

Therefore, the number of times that "A" is printed is equal to the number of times that "B" is printed if and only if m * n = (m - 1) * n, which simplifies to m = 1.

In other words, if m is equal to 1, then the two code segments will print the same number of "A"s and "B"s. If m is greater than 1, then code segment I will print more "A"s than code segment II will print "B"s. If m is less than 1, then code segment II will print more "B"s than code segment I will print "A"s.

What type of cloud infrastructure delivers services based on security requirements, the mission-critical nature of the applications, and other company-established policies that supports organizations that want to maintain higher security standards for some data but have less-sensitive data that does not require intranet-level protection?.

Answers

A type of cloud infrastructure that delivers services based on security requirements, the mission-critical nature of the applications, and other company-established policies that supports organizations that want to maintain higher security standards for some data but have less-sensitive data that does not require intranet-level protection is: 1) Public cloud.

What are the types of cloud computing?

In Computer technology, there are four (4) main types of cloud deployment model and these include the following:

Private cloudHybrid cloudCommunity cloudPublic cloud

What is a public cloud?

In Cloud computing, a public cloud can be defined as a type of cloud computing service which avails a service provider (business organization) an opportunity or ability to own and manage a well-secured and functional cloud infrastructure for its client organizations.

Read more on public cloud here: https://brainly.com/question/29745873

#SPJ1

Complete Question:

What type of cloud infrastructure delivers services based on security requirements, the mission-critical nature of the applications, and other company-established policies that supports organizations that want to maintain higher security standards for some data but have less-sensitive data that does not require intranet-level protection?

1) Public cloud 2) Hybrid cloud 3) Virtualized cloud 4) Private cloud

consider the development of an ssh client, a tool that you should be familiar with, having used it since cs252 (e.g., putty). write a functional requirement that you might expect to find in a software requirements specification for this program. write a non-functional requirement that you might expect to find in a software requirements specification for this program.

Answers

Internet LAN card, modem, CPU, and hard drive are system minimums, along with 64MB of RAM. Program requirements include portability, security, availability, and reliability.

By development, what do you mean?

Growth, advancement, positive change, or the adding of physical, economic, physical, social, and demographic components are all products of development.

Briefing:

Interfaces with menus. The following will be covered:

Download, bookmark, spell-check, search engine widget, security settings, private browsing, pop-up blocker, and history search

hardware specifications

Internet LAN card, modem, CPU, and hard drive are system minimums, along with 64MB of RAM.

requirements for this program.

Reliability: It supports the newest features in accordance with user needs.

Accessibility: It is available for download from the website.

Security: The privacy mode is supported.

It handles all software packages, making it portable.

To know more about Development visit:

https://brainly.com/question/30036072

#SPJ4

algorithm workbench 1. write an if statement that assigns 100 to x when y is equal to 0. 2. write an if-else statement that assigns 0 to x when y is equal to 10. otherwise, it should assign 1 to x.

Answers

Used the equal operator == in the if statement, which returns true if the value to its right is equal to the value to its left and false otherwise.

What is the  if statement ?I used the equal operator == in the if statement, which returns true if the value to its right is equal to the value to its left and false otherwise.By using this operator, you can determine the value of y and, if it is 10, you can assign 0 to x and 1, if it is false, 1, to x.== is used for passwords, for instance, to make a number or string equal to a variable. It is accurate if mypasswords == passwordentered. It is used to verify if the left input is accurate before moving on to the right one.

Program:

if(y==10)

{

    x=0;   // assigning 0 to x if y equals 10.

}

else

{

  x=1;   // assigning 100 to x otherwise.

}

To learn more about if statement refer to:

https://brainly.com/question/13266130

#SPJ4

How can you stop a slide show?

Press the right arrow
Press escape
Press left arrow
Press delete

Answers

Answer:

Press escape so easy bro

Answer:

Press escape bottom to interrupt or cancel the current process or running program, or to close a pop-up, stop, window.

A chatbot is a computer program designed to emulate human conversation. For this program, you will use if statements, user input, and random numbers to create a basic chatbot.

The Scenario
You have decided to design a fashion chatbot that helps people pick out their fashion preferences. Your bot can gauge what types of clothes and accessories the user might like.

Your chatbot should ask the user the following (minimum requirements for the grader) and then give answers depending on the answers the user inputs:

at least 6 questions
at least 3 if-elif-else statements
​​the use of the random module and randomly generated numbers
Based on these criteria, some responses will be based on what the user types and some will be based on random numbers.

plsss helpp mee code

Answers

To write the code for this exercise, we must be familiar with Python's computational language.

What is computational language?

Computational language is defined as an interdisciplinary field focused on modeling natural language computationally and researching effective computational methods for linguistic problems. In addition to automating a variety of useful linguistic tasks, it aims to create systems that facilitate human-computer interaction.

Python is a popular computer programming language used to create software and websites, automate processes, and analyze data. Python is frequently used to create websites and applications, automate tasks, analyze data, and display data.

Thus, to write the code for this exercise, we must be familiar with Python's computational language.

To learn more about computational language, refer to the link below:

https://brainly.com/question/28266804

#SPJ1

main menu2of12 in the five-layer hierarchy of apple's operating systems, mac os x/macos, which layer is most complex?

Answers

In the five-layer hierarchy of apple's operating systems, mac os x/macos, The layer that is most complex is Layer five, the application layer that has Cocoa and Carbon.

What distinguishes the Apple operating system (OS) from others?

The operating system that runs every Mac is called macOS, and it is the first layer in Apple's five-layer operating system architecture. It enables you to perform tasks that other computers simply cannot perform. This is so because it was built to work with the hardware that it uses, and vice versa.

Therefore, one can say that the OSI (Open Systems Interconnection) model's Session Layer regulates the conversations (connections) between computers. The connections between the local and distant applications are established, managed, and terminated by it.

Learn more about application layer from

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

Templates contain common layout and formatting that can save you time by not having to recreate documents from scratch

Answers

Templates contain common layout and formatting that can save you time by not having to recreate documents from scratch is true.

What is the purpose of applying templates?

Using templates makes creating documents easier. The use of templates can reduce stress and lessen work-related burdens while also improving productivity. The audience is more attentive while using templates. They aid in time and financial savings.

Therefore, based on the above, Standard layouts or placeholder text are frequently included in document templates so they can be reused whenever new files are created. As a result, using the template eliminates the need to constantly produce new documents by allowing users to reuse certain common sections of text and merely fill in the variable sections.

Learn more about Templates from

https://brainly.com/question/13985404

#SPJ1

See full question below

Templates contain common layout and formatting that can save you time by not having to recreate documents from scratch. triu or false.

what is the purpose of the iris? to focus light on the retina to process color to allow light into the eye to enable night vision to detect specific shapes

Answers

Your eyes can see clearly thanks to your iris, which controls your pupil. The iris causes the size of your pupil to change continuously and without your control.The term for this is the pupillary light reflex.

What iris to focus light on the retina to process color?

Behind the iris, the clear portion of the eye known as the lens aids in focusing light on the retina. It enables the eye to concentrate on both distant and close objects. The colorful iris is a component of the eye. It controls how much light passes through the pupil of the eye and into the eye.

Therefore, acts as a diaphragm to control how much light enters the eye. By lowering spherical aberrations and enhancing depth perception, it guards against too much light reaching the retina.

Learn more about iris here:

https://brainly.com/question/4190629

#SPJ1

question 8 what sql function lets you add strings together to create new text strings that can be used as unique keys? 1 point length coalesce concat cast

Answers

Using the concat sql function, you can combine strings to get new text strings that can be used as unique keys.

What is concat's purpose in SQL?

A single string is created by joining two or more strings together using the SQL CONCAT function. At least two parameters are required for the CONCAT function, which has a maximum parameter count of 254. A string in programming languages is a collection of characters that are used to declare texts.

In SQL, what is the string function?

Regardless of the data type, a string function always returns a string value when given a string value as input. Many of SQL Server's built-in string functions are accessible to developers.

To know more about SQL visit :-

https://brainly.com/question/14469511

#SPJ4

when setting up a new wireless access point, what is the first configuration change that should be made?

Answers

when setting up a new wireless access point, the default login is the first configuration change that should be made.

What is the access point's configuration?

You can attach a laptop or PC via a serial connection to the wireless access point's console port in order to configure the access point for your client. You can examine access point configuration panels and modify particular settings, including radio channel and transmit power, by using terminal software.

Which username is the standard?

In an operating system, the default user is a special user account that holds the default user profile information for new users. Microsoft Windows, for instance, has a default user profile. With the name Default or a similar name, this profile can be found in the directory C: Users in Windows 10.

What kind of authentication is a default setting for an access point?

Wireless networks employ open authentication. With wired networks, pre-shared keys are utilized. An encrypted secret word is necessary for pre-shared keys. A secret word is not required for open authentication.

To know more about access point visit:

https://brainly.com/question/30000682

#SPJ4

you have been given logs for a system that was identified as having unusual network activity. after analyzing the logs, you determined that there were many failed login attempts by multiple usernames, most of which were invalid accounts. there were no log entries for successful logins from external addresses, and the system integrity logs indicate that no files were tampered with. which incident type best describes this situation?

Answers

Brute Force Attack is the incident type best describes this situation.

What is  Brute Force Attack? A Brute Force Attack is a type of cyberattack that involves attempting to gain access to a secure system by trying every possible combination of characters and/or words until the correct one is discovered. This attack is often used to gain access to an account or to decrypt an encrypted message. The attacker usually uses automated software to launch the attack and can try thousands of combinations in a short amount of time. The attack can be successful if the attacker knows some information about the target system such as the type of encryption used or the length of the password. Brute Force Attack can be difficult to protect against since the attacker has access to a wide range of possible combinations. The best way to protect against a Brute Force attack is to use strong passwords, limit the number of failed login attempts, and employ two-factor authentication.    

To learn more about force attack refer to:

https://brainly.com/question/17277433

#SPJ4

You want to copy a formula in a cell down the column into multiple other cells. What would be the best tool for the job?

answer choices
Spelling Checker
Find and Replace
Cut and Paste
AutoFill

Answers

You wish to move a formula from one cell in a column to several others. The ideal tool for both the job would be AutoFill.

What is a class 9 cell computer?

Each row and then a column come together to form a cell. An address that comprises of the data type and row number is used to identify a cell. For instance, its first cell is labeled as A1, indicating that it is located where row 1 and column A converge.

What does a cell range mean?

In Excel, a cell range is a group of selected cells. It can be used as a formula reference. With the connection of the top half cell serving as the range's minimum value and the ref of lower-right cell serving as the range's maximum value, this is specified in a spreadsheet.

To know more about Cell visit :

https://brainly.com/question/8029562

#SPJ4

Which of the following statements is false?

A.
Obstacles can make a game frustrating.

B.
Obstacles can be rewarding when they are overcome.

C.
Physical obstacles are better than mental obstacles.

D.
Obstacles can be used to keep the player in the play area.

Answers

c because physical obstacles hurt

Who is a good target for angry feelings in a story that engages the audience?

A.
the hero
B.
the place the story takes place
C.
the villain
D.
the sidekick

Answers

the answer would be C
I think it is C as well

A Class or ID can be declared in the opening or closing tag
psing tag
O True
O False

Answers

Answer

True.

Explanation:

In HTML, you can declare a class or ID for an element in the opening tag or closing tag of the element.

amanda is assessing a vehicle's internal network. what type of bus is she most likely to discover connecting its internal sensors and controllers?

Answers

Microcontrollers, sensors, and other components can interact with one another via a vehicle-specific standard called the Controller area Network (CAN).

What is a sensor?

A sensor is something that accepts input of any kind from the physical world and reacts to it. Lights, heat, motion, moisture, pressure, and a variety of other environmental phenomena can all be inputs.

How do sensors function?

Simply said, a sensor produces electrical impulses by translating inputs like heat, light, sound, and motion. These signals are transmitted through a device that transforms them together into binary code before sending it to a computer for processing.

To know more about sensors visit :

https://brainly.com/question/7144448

#SPJ4

Which programming language type is the most basic human-readable and closest to actual machine language?.

Answers

I Hope This Helps: An assembly language is a type of low-level programming language that is intended to communicate directly with a computer's hardware. Unlike machine language, which consists of binary and hexadecimal characters, assembly languages are designed to be readable by humans.

after seizing a telephone, it occurs to you that cohorts of the suspect may hack into the phone and wipe it clean before you can examine it back at the lab. you don't have anything in which to store the phone which would block incoming signals, and because the phone is password-encoded, you need to keep it running. what else might you do to prevent this from happening? group of answer choices

Answers

Could you do something to stop this ? Change the phone's mode to airplane.

What takes place if a police investigation results in the seizure of your phone?

The phone itself may be kept for the duration of the if it contains evidence rather than merely the data on it. After the pertinent data has been copied, the phone will likely be returned if the authorities are just interested in what is on it. Certain steps must be taken after your phone has been confiscated.

What should you do if you suspect that your phone has been ?

What to do if you believe your phone has been is described here. You should seek for any that you don't recall downloading as your initial step.

To know more about  airplane mode visit :-

https://brainly.com/question/28274546

#SPJ4

If you have the two functions as shown,
int someFunction(int value);
float someFunction(float value);
and a variable x, which is a double, which function is called by the following statement?
cout << someFunction(x);

Answers

Answer:

it is a syntax error

What are examples of common computer hardware problems? select three options. Pages from a printer come out blank. Programs freeze or quit unexpectedly. The monitor goes blank or turns black. The keyboard keys get stuck or fall off. The mouse responds very slow to a click command the computer crashes when trying to boot up.

Answers

Answer:

Pages from a printer come out blank.

The monitor goes blank or turns black.

The keyboard keys get stuck or fall off.

an unhappy systems administrator installed malware that attacked after a timed event, rather than when it was installed. what type of malware does this describe?

Answers

It describes a logic bomb type of malware.

What is a Malware?

Malware is any software intentionally designed to cause disruption to a computer, server, client, or computer network, leak private information, gain unauthorized access to information or systems, deprive access to information, or which unknowingly interferes with the user's computer security and privacy. By contrast, software that causes harm due to some deficiency is typically described as a software bug. Malware poses serious problems to individuals and businesses on the Internet. According to Symantec's 2018 Internet Security Threat Report (ISTR), malware variants number has increased to 669,947,865 in 2017, which is twice as many malware variants as in 2016. Cybercrime, which includes malware attacks as well as other crimes committed by computer, was predicted to cost the world economy $6 trillion USD in 2021, and is increasing at a rate of 15% per year.

To know more about malware visit:

https://brainly.com/question/28317160

#SPJ4

write a Visual Basic program that asks the user to enter their favourite colour and then displays the message "good choice" if they say "green" and the message "bad choice" otherwise.​

Answers

Answer:

Module Module1

 Sub Main()

  Dim choice As String

  Console.WriteLine("What is your favorite color?")

  choice = Console.readline()

  if choice == "green" Then

      Console.WriteLine("Bad choice!")

  Else

      Console.WriteLine("Good choice!")

 End Sub

End Module

How could a Boolean search help with researching a term paper? What is the primary advantage of using a Boolean search? Within your description, provide a specific example of a Boolean search.

Answers

Answer:

A Boolean search can help with researching a term paper by allowing the researcher to use specific keywords and logical operators to find relevant results. The primary advantage of using a Boolean search is that it can help to narrow down the search results and find only the most relevant and useful information.

For example, if a student is writing a term paper on the history of the American Revolution, they could use a Boolean search to find only sources that mention the American Revolution and the years 1775-1783. The search query could be written as "American Revolution" AND 1775-1783. This would return only sources that mention the American Revolution and the specific time period, rather than more general sources about American history.

Another advantage of using a Boolean search is that it allows the researcher to use multiple keywords and logical operators to refine their search and find even more specific and relevant information. For example, the student could add another keyword to their search query, such as "Battles" or "George Washington", to find sources that mention specific aspects of the American Revolution. This can help the researcher to find more detailed and accurate information for their term paper.

This string method returns a copy of the string with all leading and trailing whitespace characters removed.a. cleanb. stripc. remove_whitespaced. rstrip

Answers

In Java, you can use the trim() function to get rid of leading and trailing spaces. The return value of this method is either a copy of this string with the leading and trailing white space removed, or this string if there is no leading or trailing white space.

If you use the split method on a string, does it split the string into two substrings?

A string is split into two substrings when you call the split function on it. A string's starting index is indicated by this. If you attempt to utilize an index that is outside the acceptable range for a string, this will occur. This function gives back a string's length.

Which method returns the string's leading and trailing characters?

The Python programming language includes a built-in function called Python String strip() that returns a duplicate of the string without the leading and trailing characters (based on the string argument passed). There is a solitary optional parameter in it.

To know more about string's split method visit;

https://brainly.com/question/20470489

#SPJ4

What needs to be public and what needs to be private?

Answers

In this scenario, the most appropriate implementation of the Car class would be:

public class Car
{
public String make;
public String model;
public Car(String myMake, String myModel) { /* implementation not shown */ }
}
In this implementation, the attributes make and model are both declared as public, which means that they can be accessed and modified by code outside of the Car class. This is appropriate, as the make and model of a car are typically considered to be public information that can be accessed by anyone.

The constructor for the Car class is also declared as public, which means that it can be called by code outside of the Car class. This is appropriate, as the constructor is used to create new instances of the Car class, and this functionality should be available to code outside of the class.

In contrast, if the attributes make and model were declared as private, they would only be accessible within the Car class and would not be available to code outside of the class. Similarly, if the constructor were declared as private, it would only be accessible within the Car class and could not be called by code outside of the class. These declarations would limit the ability of code outside of the Car class to access and use the make, model, and constructor functionality, which would not be appropriate for this scenario.

Information system using the latest information technology has benefited which modern need?.

Answers

Information system using the latest information technology has benefited increased data security.

Give a brief account on data security.

Data security is the process of guarding digital data against unwanted access, corruption, and theft across all stages of its life. It is a notion that covers every facet of information security, including the logical security of software programs, administrative and access controls, and the physical security of hardware and storage devices. It also contains the policies and practices of the organization.

Strong data security measures, when correctly executed, will safeguard an organization's information assets from cybercriminal activities but they also guard against insider threats and human mistake, which continue to be among the top causes of data breaches in the present. Data security entails the use of tools and technology that increase an organization's awareness of where its crucial data is located and how it is being used. These solutions ought to be able to implement security measures like encryption, data masking, and redaction of sensitive files, as well as automate reporting to speed up audits and ensure compliance with legal standards.

To know more about, data security, visit :

https://brainly.com/question/14487203

#SPJ1

a pet store sells dogs, cats, birds, and hamsters. write a declaration for an anonymous enumerated data type that can represent the types of pets the store sells.

Answers

Enumerators can be freely utilized to provide features like control variables or even improved readability because they have been developed and specified.

What is a fundamental data type?

The primary or fundamental data types are other names for the fundamental data types. The C language uses basic data types to store the accessible values in integer and decimal representations, and these types accept both unregistered and signed literals.

What does SQL datatype mean?

A type of data is an attribute that describes the kind of data an object can store, such as binary strings, numeric data, character data, financial data, time and date data, and so on. System data types are provided by SQL Server and can be utilized with SQL Server.

To know more about data type visit:

https://brainly.com/question/22574321

#SPJ4

Other Questions
students hoping to receive maximum federal aid should be ready to submit the fafsa on or soon after . what is the resonance frequency if the capacitor value is doubled and, at the same time, the inductor value is halved? You have a recipe that indicates to use 7 parts of sugar for every 4 parts of milk. You use 28 cups of sugar how much milk do you need major, large city newspaper endorsements often carry important weight, especially in down ballot races for local offices. Find the sale price: Sergio bought a belt that was discounted 43% from an original price of $543. Explain step-by-step how to simplify -5(2x - 3y + 6Z - 10) A local variable is printed outside its function. What is the output?A global version of the variable Both local and global versions of the variable The local variable The output is not definedIn which of the following cases should an import statement not be used? For a library module needed in a code For a package with functions from the libraries For code from Python libraries For redefining a function called in a codeSelect a circumstance when placing a comment inside your code is not justified. When mentioning useful information that is not in the code When referencing obscure logic to make sure others follow the code When stating a simple fact in the code When using block comments for a longer explanation of the codeFor the program below, suppose shipping=200. What is the program output?def main(): shipping = int(input("Please enter shipping distance.")) if shipping Pls help due today!!!!! - which economic condition of the 1920s was a major cause of the great depression? The Chess Club wants to raise a total of $150 for a group trip.They earn $1.25 for each box of pies they sell. They havealready made $16.25. Which equation could be used to findhow many more boxes of pies they must sell? clara schumann was among the first pianist to perform concerts from memory (i.e., she didn't use any printed music).a. trueb. false pyridostigmine bromide is prescribed for a client with myasthenia gravis. the nurse evaluates that the medication regimen is understood when the client makes which statement? People with lower social standing are usually more likely to see the world from a sociological perspective than people who are well offTrue/false A stalk of wheat grows at a rate of 4 inches every month. Emerson planted A stalk of wheat when it was initially only 6 inches tall. > Create an explicit formula for this situation. ABCD is a square with four congruent sides and four congruent angles. triangle BAD is congruent to A Title slide should always be your first slide.TrueFalse How many full cae and additional item are needed to fulfill the order? 80 item ordered item per cae Question 1(Multiple Choice Worth 1 points)(05 04 LC)A survey was taken of students in math classes to find out how many hours per day students spend on social media. The survey results for the first-, second-, and third-period classes are as followsFirst period: 2, 4, 3, 1, 0, 2, 1, 3, 1, 4, 9,2,4,3,0Second period: 3, 2, 3, 1, 3, 4, 2, 4, 3, 1, 0, 2, 3, 1, 2Third period: 4, 5, 3, 4, 2, 3, 4, 1, 8, 2, 3, 1,0, 2, 1, 3.Which is the best measure of center for first period, and why?O Mean, because there are no outliers that affect the centerO Median, because there is one outier that affects the centerOInterquartile range, because there is one outier that affects the centerO Standard deviation, because there are no outliers that affect the center Help with this real fast Rather than looking for problems, ________ seeks to identify the unique qualities and special strengths of an organization, which can then be built upon to improve performance