PLZ WILL MARK BRALEYST

If an organization’s technology is compromised, it can spell disaster for the company’s _____. Select 3 options.

operations

spoofs

reputation

revenues

software bugs

Answers

Answer 1

Answer:

Operations, revenues, and reputation

Explanation:

i just got the question right, pls mark brainlyest

Answer 2

Answer:

Your answer will be the following;

1. Operations

2. Revenues

3. Reputation

Explanation:

If the technology of the organization is not correct then it will cause massive problems to the operators, revenues, and reputation.

Therefore, your 3 answers will be operators, revenues, and reputation.


Related Questions

Marina requested a copy of her credit report in May 2019 and wants to request a second one in November 2019. What is true?

O She can; it is always free
She can, but she may have to pay for it
O She will not obtain it, a free copy can be requested every two years.
O She will not obtain it, the bureau sends it automatically once a year

Answers

Answer:

B. She can, but she may have to pay for it.

Explanation:

A credit report is a report that contains the credit history of an individual. A credit report is issued by Credit bureaus who have financial information of a person.

Credit bureaus issue one credit report for free every year. But if a person desires to issue a credit report more than once a year then he/she will have to pay a fee for it.

In the given scenario, Marina who has requested a copy of the credit report in May 2019, will have to pay a fee for a copy of the second credit report.

Therefore, option B is correct.

Which of these is a type of software that prevents, finds, and removes
dangerous software on computers and networks?
Internet browser
Antimalware or antivirus
Operating system
Multimedia software

Answers

Answer:

Antimalware

Explanation:

It is literally in the name of the software what it does.

Match the parts of a CPU to their functions.

-control unit
-ALU
-register
Is a temporary data storage unit
manages data transfer operations
performs arithmetic and logical operations on input data

Answers

Answer:

CPU performs arithmetic and logical operation on input data

The way it is the performs

In keyboarding there are 2 sides to a keyboard
True or false

Answers

Answer:

true

Explanation:

True, also know this because the your four fingers are supposed to line up one ASDF and JKL; and your thumbs on the Spacebar

26 POINTS HELLPP MEEEEEEE!!!!!!!!!!!!
Complete the sentence.

Your employer conducting a session on a fire evacuation route is an example of
please do the right answer

Answers

Answer: the answer is training

Explanation:

Answer:

the asnwer is training

Explanation:

i did this assignment already

-------- C++ ------

Assume you need to test a function named inOrder. The function inOrder receives three intarguments and returns true if and only if the arguments are in non-decreasing order: that is, the second argument is not less than the first and the third is not less than the second. Write the definition of driver function testInOrder whose job it is to determine whether inOrder is correct. So testInOrder returns true if inOrder is correct and returns false otherwise.

For the purposes of this exercise, assume inOrder is an expensive function call, so call it as few times as possible!

-------------------------------------------

Assume you need to test a function named max. The function max receives two int arguments and returns the larger. Write the definition of driver function testmax whose job it is to determine whether max is correct. So testmax returns true if max is correct and returns false otherwise.

------------------------------------------

Write a program that will predict the size of a population of organisms. The program should ask the user for the starting number of organisms, their average daily population increase (as a percentage, expressed as a fraction in decimal form: for example 0.052 would mean a 5.2% increase each day), and the number of days they will multiply. A loop should display the size of the population for each day.

Input Validation.Do not accept a number less than 2 for the starting size of the population. If the user fails to satisfy this print a line with this message "The starting number of organisms must be at least 2.", display the prompt again and try to read the value. Similarly, do not accept a negative number for average daily population increase, using the message "The average daily population increase must be a positive value." and retrying. Finally, do not accept a number less than 1 for the number of days they will multiply and use the message "The number of days must be at least 1."

Answers

Answer:

The function testInOrder is as follows:

bool testInOrder(){

bool chk= false;

   int n1, n2, n3;

   cin>>n1;cin>> n2; cin>> n3;

   if(n2>=n1 && n3 >= n2){chk = true;}

   bool result = inOrder(n1,n2,n3);

   if(result == chk){ return true;}

   else{return false;}

}

The function testmax is as follows:

bool testmax(){

   bool chk = false;

   int n1, n2;

   cin>>n1; cin>>n2;

   int mx = n1;    

   if(n2>=n1){        mx = n2;    }

   int returnMax = max(n1,n2);

   if(returnMax == mx){        chk = true;            }

   return chk;

}

The prediction program is as follows:

#include <iostream>

using namespace std;

int main(){

   int startSize,numDays;

   float aveInc;

   cout<<"Start Size: ";

   cin>>startSize;

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

   cout<<"Average Daily Increase: ";

   cin>>aveInc;

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

   cout<<"Number of days: ";

   cin>>numDays;

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

   cout<<"Predicted Size: "<<startSize;

}

Explanation:

testInOrder

This defines the function

bool testInOrder(){

bool chk= false;

This declares all three variales

   int n1, n2, n3;

This gets input for the three variables

   cin>>n1; cin>>n2; cin>>n3;

This correctly check if the numbers are in order, the result is saved in chk

   if(n2>=n1 && n3 >= n2){chk = true;}

This gets the result from inOrder(), the result is saved in result

   bool result = inOrder(n1,n2,n3);

If result and chk are the same, then inOrder() is correct

   if(result == chk){ return true;}

If otherwise, then inOrder() is false

   else{return false;}

testmax

This defines the function

bool testmax(){

This initializes the returned value to false

   bool chk = false;

This declares the two inputs as integer

   int n1, n2;

This gets input for the two numbers

   cin>>n1; cin>>n2;

This initializes the max of both to n1

   int mx = n1;    

This correctly calculates the max of n1 and n2

   if(n2>=n1){        mx = n2;    }

This gets the returned value from the max() function

   int returnMax = max(n1,n2);

If returnMax and max are the same, then max() is correct

   if(returnMax == mx){        chk = true;            }

   return chk;

}

Prediction program

This declares all necessary variables

   int startSize,numDays;  float aveInc;

This gets input for start size

   cout<<"Start Size: ";    cin>>startSize;

The loop is repeated until the user enters valid input (>=2) for startSize

   while(startSize<2){

       cout<<"The starting number of organisms must be at least 2.";

       cin>>startSize;    }

This gets input for average increase

   cout<<"Average Daily Increase: ";    cin>>aveInc;

The loop is repeated until the user enters valid input (>=1) for aveInc

   while(aveInc<1){

       cout<<"The average daily population increase must be a positive value.";

       cin>>aveInc;    }

This gets input for the number of days

   cout<<"Number of days: ";    cin>>numDays;

The loop is repeated until the user enters valid input (>=1) for numDays

   while(numDays<1){

       cout<<"The number of days must be at least 1.";

       cin>>numDays;    }

The following loop calculates the predicted size at the end of numDays days

   for(int i = 0;i<numDays;i++){        startSize*=(1 + aveInc);    }

This prints the predicted size

   cout<<"Predicted Size: "<<startSize;

Need the answer ASAP!!!!!!!!
I’ll mark brainliest if correct

Drag each label to the correct location on the image. Match the correct component to the part on the flowchart

Procedure 1

subroutine

procedure 2

decision

input

End

Start

Answers

Answer:

i answerd this on a diffrent page

Explanation:

Which activity might be a job or task of an IT worker who manages networks?
A. Setting up a LAN for the office
B. Checking employee eligibility for promotions
C. Developing software to help retirement planning
D. Checking driver's licenses for tampering

Answers

A

THE WONDERFUL ANSWER IS A

The activity that might be a job or task of an IT worker who manages networks is Setting up a LAN for the office. The correct option is A.

What is LAN?

A LAN (Local Area Network) is a type of computer network that connects devices in a small geographical area, such as an office building, school, or home.

IT network administrators are in charge of designing, installing, and maintaining computer networks that allow organisations to communicate and share information.

They are usually in charge of configuring routers and switches, configuring firewalls and security protocols, troubleshooting network issues, and ensuring that the network runs smoothly and efficiently.

Setting up a LAN (local area network) for an office is one of the most important tasks that an IT network manager may take on.

Thus, the correct option is A.

For more details regarding LAN, visit:

https://brainly.com/question/13247301

#SPJ7

Each sentence in the paragraph below has a number. Choose the number of two sentences that are in the wrong order in this story. Remember to choose two.

1 Last summer, we went to visit Grandma and Grandpa. 2 They live on a farm. 3On the way home, we saw a deer beside the road. 4We helped with some of the work. 5We got home just in time for school to start. 6I helped gather the eggs. 7My brother helped haul the hay. 8All too soon it was time to leave.


1
2
3
4
5
6
7
8

Answers

Answer:

3 5

Explanation:

Project team member Kevin needs to define the use of change bars to show deleted and modified paragraphs. Under which standards does this fall?
O A.
interchange standards
OB.
identification standards
O C.
update standards
OD.
process standards
O E.

Answers

Answer: C) Update Standards

Explanation: Hope this help :D

Which of the following represents over one million characters, including emojis?
A. ASCIU
B. Java
C. Turing
D. Unicode

Answers

Answer:

Unicode is responsible for emojis.

the length of a rectangle is 6cm and its perimeter is 20 cm . find its breadth​

Answers

Answer:

4 cm

Explanation:

Width you mean?

The perimeter of a rectangle is 2*length+2*width, so

2*6+2w=20

12+2w=20

2w=8

w=4

The width is 4 cm.

Define the following terms: Staff authority ,in your own words.

Answers

Answer:

To provision advise for other services to line managers.

Explanation:

Question:

Define Staff authority

Explanation:

Line managers receive counsel and other services from staff authority. Senior managers must exercise caution when it comes to restricting the number of employee employment. A company might end up with an excessive level of corporate overhead if this does not happen.

------------------------

hope it helps...

have a great day!!

ANSWER:POST-TEST

direction encircle the letter of the correct answer..

1 .the written description accompanying the working drawing

2. a board made of plaster with covering of paper

3.a fire protection device that discharge water when the effect of a fire have been detected, such as when a predetermined temperature has been reached.

4.structural members in building construction that holds the ceiling board

5.the position or placement of lightning fixtures of the house.


with answer na din.

1.C
2.D
3.B
4.A
5.D

SANA MAKATULONG★☆☆


TLE​

Answers

Answer:

1. Specifications.

2. Gypsum board.

3. Sprinkler systems.

4. Ceiling joist.

5. Lighting fixtures.

Explanation:

In Engineering, it is a standard and common practice to use drawings and models in the design and development of buildings, tools or systems that are being used for proffering solutions to specific problems in different fields such as banks, medicine, telecommunications and industries.

Hence, an architect or design engineer make use of drawings such as pictorial drawings, sketches, or architectural (technical) drawing to communicate ideas about a plan (design) to others, record and retain informations (ideas) so that they're not forgotten and analyze how different components of a plan (design) work together.

Architectural drawing is mainly implemented with computer-aided design (CAD) software and it's typically used in plans and blueprints that illustrates how to construct a building or an object.

1. Specifications: it's a well-written description that accompanies a working drawing used for designs and constructions.

2. Gypsum board: also referred to as drywall due to its inherent ability to resist fire. It's a type of board that's typically made of plaster with some covering of paper and it's used for ceilings, walls, etc.

3. Sprinkler systems: it's an automatic fire protection device that is typically designed to discharge a volume of water as soon as the effect of a fire is detected. For instance, when a predetermined or set temperature has been reached such as 69°C

4. Ceiling joist: structural members that are aligned or arranged horizontally in building construction in order to hold the ceiling board together.

5. Lighting fixtures: it's typically the position or placement of lightning fixtures of the house.

what are th sensors of street lights
only light or there something else ?

Answers

Answer:they also provide satellites to vision where roads are

Explanation:

A town government is designing a new bus system. The planners are deciding where to put the different bus stops. They want to pick a set of bus stop locations that will minimize the distance anyone needs to walk in order to get to any bus stop in town. What term best defines this kind of problem?

A. A decision problem
B. An optimization problem
C. An undecidable problem
D. An efficiency problem

Answers

B. An optimization problem
B is the correct answer

. Find the supplements of : 150' and 70°​

Answers

30 is the supplement of 150

Collin wants to insert and center a title at the top of his spreadsheet. Collin should _____.


A. highlight the cells in row 1, select Center command, and type the title

B. type the title in cell A1 and click on the center icon

C. select cells in row 1, select the Merge and Center command, and type the title

D. click on cell A5 and type the title

Answers

Answer:

C. select cells in row 1,select the merge and center command, and type the title.

ANSWER ASAP, PLEASE !! 40 POINTS!
In 1-2 sentences, explain how to save a spreadsheet.

Answers

Answer:

Click the Microsoft Office Button , and then click Save As, or press CTRL+S. Important: If you don't see the Microsoft Office Button , click Save As on the File menu.

in 2 or 3 sentences, describe one advanced stradegy and how its useful

Answers

Answer:

A search strategy is useful because it helps you learn about things that are not available to you in person. One advanced search strategy is to form words carefully. I could copy 'describe one advance search strategy and how it is useful' and put it into a search engine and get many different results that aren't helpful. But if I shorten it to 'advance search strategies' I get helpful information.

Explanation:

Based on the following quote from Leonardo Da Vinci, what would be his definition of a fine artist? “Principles for the Development of a Complete Mind: Study the science of art. Study the art of science. Develop your senses- especially learn how to see. Realize that everything connects to everything else.” - Leonardo da Vinci
A fine artist must discover the world for herself and not listen to others’ interpretations.

A fine artist is one who sees things others don’t see and makes connections others don’t make.

A fine artist is a scientific genius who cultivates the power of observation.

A fine artist must first be scientist and use science to improve his art.

Please hurry :(

Answers

Answer:

A fine artist is one who sees the things other don't see and make connections other don't make.

Answer:

I think it is

A fine artist is one who sees things others don’t see and makes connections others don’t make.

Does anyone play genshin impact here?

Answers

Answer:

what server are u on

Explanation:

yes i do play itttttttttttttttttttttt

Need the answer ASAP PLZ!!!! I’ll mark brainliest if it’s correct

Select the correct answer.
Suzanne, a project manager, wants to change the style and font of the text in the document. What documentation standards should Suzanne
follow?

OA
interchange standards
ОВ.
identification standards
OC.
update standards
OD
process standards
OE.
presentation standards

Answers

Answer:

update standards

i think this is correct

don't be afraid to correct me if im wrong

Explanation:

mrk me brainliest

Which act passed by the US government in 1998 criminalizes the production and distribution of technology that intends to evade anti-piracy laws?

A.
Stop Online Piracy Act (SOPA)
B.
Digital Millennium Copyright Act (DMCA)
C.
Preventing Real Online Threats to Economic Creativity and Theft of Intellectual Property Act (PROTECT IP or PIPA)
D.
World Intellectual Property Organization (WIPO) Copyright Treaty

Answers

Answer:

B

Explanation:

Can you please help me

Answers

Answer

More info?

Explanation:

A computer consists of both software and hardware. a)Define the term software​

Answers

Answer: We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

Have a nice day!

Answer/Explanation:

We should first look at the definition of the term software which is, “the programs and other operating information used by a computer. Now looking at this we can break this definition down. Software, are instructions that tell a computer what to do. Software are the entire set of programs, procedures, and routines associated with the operation of the computer. So pretty much to sum it up software is the set of instructions that tell the computer what to do, when to do it, and how to do it.

CUANDO QUEREMOS EJECUTAR ALGUN TIPO DE EMPRENDIMIENTO, DEBEMOPS DE PENSAR EN TRES TIPOS DE MEDIDAS BASICAS​

Answers

When we want to execute some type of entrepreneurship, we must think about three types of basic measures

Zachary drinks 2 cups of milk per day. He buys 6 quarts of milk. How many days will his 6 quarts of milk last?

Answers

Answer:

12 days

Explanation:

There are 2 cups in a pint, and 2 pints in a quart. Therefor, there are 4 cups in a quart. In total, there are 24 cups in 6 quarts. If Zachary drinks 2 cups of milk per day, it will take him 12 days to drink the 24 cups.

Which of the following would be the
reason a science technician would be
taking photographs in the lab?
A. to place employees on a blog or web page
B. to keep track of updates needed for the facilities
C. to use as part of the funding for the project
D. to document the process of chemical reactions

Answers

Answer:

D. to document the process of chemical reactions.

Explanation:

A chain of custody can be defined as a paper trail containing the chronological order of items of evidence and how they have been handled, controlled, transferred, analyzed, and disposed during the investigation of a case.

This ultimately implies that, a chain of custody contains all the details or informations regarding the investigators (people) who handled, controlled, transferred, analyzed, and disposed an evidence in the course of carrying out investigations on a particular case. The most important and significant part of an investigation is the evidence because it helps to unravel the truth and facts relating to a case. Therefore, it is very important and essential to document and maintain a chain of custody so as to preserve the evidence.

A chemical reaction can be defined as a reaction in which two or more atoms of a chemical element react to form a chemical compound.

Hence, the possible reason a science technician would be taking photographs in the lab is to document the process of chemical reactions by generating pictorial evidences.

Many companies ban or restrict the use of flash drives
Motivate why they sometimes do this by referring to a practical reason they
might have, besides the risk of spreading malware such as viruses​

Answers

Answer:

Companies do not allow flash drives because of any sort of virus, corrupted file, or anything that could hack into the companies' data base, which can ruin they're entire company!

Explanation:

Other Questions
find the circumference of the pizza to the nearest tenth (10in) Please help show work A 19B 37C 58D 24 defonition for Natural Resources - add3+8y-12zand5x-7y+15zhelp meee What kinds of jobs did working-class women hold?A. NursesO B. TeachersO c. Office workersD. Seamstresses The firefighter needs to drive 3 miles in 3 minutes. How fast should the firefighter drive? The author chose to italicize the specific words and phrases underlined in this passage.Which sentence best describes how the italicized text affects the meaning of the passage?1. It suggests the White Rabbit's sense of urgency which draws Alice into the chase.2. It shows the reader when the White Rabbit is speaking out loud to other characters.3. It signals the point when Alice decides to follow her instincts and trust the White Rabbit.4 It emphasizes the disbelief of the narrator about what Alice sees and hears from the White Rabbit. 32After giving a pep talk in the locker room, Coach Potbelly told all of the players to win the game.What is the infinitive phrase in this sentence?OA.told all of the playersOB.in the locker roomO C.to win the gameOD.After giving a pep talkResetSubmit Write the following series in sigma notation.5+13+21+29+37+45+53 Please help me, I'll really appreciate it! Good answer will get brainly :) How is fear shown in this paragraph?Finally, the long night was over. From inside the boat came noises of iron fastenings pushed aside. One of the steel plates flew up, and a few moments later, eight sturdy fellows appeared silently and dragged us violently down into their fearsome machine. A _____ is the part of the environment in which an organism lives. Last week Jovanna ran 30 milesmore than Rachel. Jovanna ran47 miles. How many miles didRachel run? Which inequality represents all possible solutions of -12d2 -6?A d< - 1/2 B d> - 1/2 C d< 1/2 D d> 1/2 Ang birtud na ito ay parehong intelektwal at moral na birtud. A. Maingat na PaghuhusgaB. KalayaanC. KatarunganD. Katataganplease helpesp Round to the nearest 5764.357894 Two airplanes leave an airport at the same time, the first headed due north and the second at a bearing of N42^ E . At 2:00PM, the first airplane is 312 miles from the airport while the second airplane is 487 miles from the airport. Assuming both followed linear paths from the airport, how far apart are the two airplanes at 2:00PM? Solve the system of equations: y = 2x 8 and y = -2x - 8 can anyone solve this? Describe the scene where the narrator first meets Daisy. When a product is being imported in such increasedquantities [amounts) as to be a substantial cause ofserious injury or the threat thereof to domestic producersof like or directly competitive products, the importingParty shall consult with the other Party ... before takingany action affecting the trade of the other Party.-Israel Free Trade Agreement,Article 51985Why would this passage appear in a trade agreement?Check all that apply.It gives imported products an advantage in aforeign marketIt lets a nation phase out industries that are nothelping its economy.It lets each ration protect its own industriesIt lets the partner nation know about decisionsaffecting its exports.It balances a nation's imports with its exports.