The IMA standard that includes disclosing all relevant information that could reasonably be expected to influence an intended user’s understanding of the reports, analyses, or recommendations is ________.

Answers

Answer 1

Answer:

Credibility.

Explanation:

The IMA or institute of management and accounting is one of the largest and most respected group or association of accountants and other financial professionals in the business industry, with the collaborative intent to advance and promote the management and accounting profession.

All members of the association obligatorily adhere to four principles. They are, honesty, fairness, objectivity and responsibility. And they also follow four IMA standards, which are credibility, competence, integrity and confidentiality.

The credibility standard includes disclosing all relevant information that could reasonably be expected to influence an intended user's understanding of the reports, analyses or recommendation.

Answer 2
Final answer:

The IMA standard requiring disclosure of all relevant information for understanding reports, analyses, or recommendations is grounded in the principle of transparency. This encompasses the clear presentation of data and an easily understandable format, adhering to the ISO 9000 Management Categories for quality and continuous improvement.

Explanation:

The IMA standard that includes disclosing all relevant information that could reasonably be expected to influence an intended user’s understanding of the reports, analyses, or recommendations is transparency. Ensuring transparency involves the presentation of monitoring results and data in such a manner that stakeholders can fully comprehend the scope, methodology, biases, and limitations of the research. It is important to consider not only the content but also the format to make sure that the information is accessible and easily understandable.

According to the ISO 9000 Management Categories, part of this transparency involves clear communication and documentation that reveal what the organization planned to do, what it actually did, and the continuous improvement practices that are in place. This principle of transparency is vital to ensure that data, conclusions, and recommendations are fully understood by all stakeholders.


Related Questions

You are capturing packets with a network sniffer and notice a number of packets that are flagged by the sniffer and described as TCP retries. Which layer of the OSI model should you investigate?

Answers

Answer:

Transport Layer                                    

Explanation:

Transport layer is responsible for correcting data transmission errors which is done by requesting retries also called re-transmission of packets in case of data loss or corrupted data.Transport layer ensures end to end delivery of data making sure that the data is received correctly and in same order in which it was sent.Transmission Control Protocol (TCP) is a protocol in this layer that continues to transmit data packets securely from sender to receiver, identifying packet losses. Transport layer works on packet loss issues and corrects data transmission errors.It has flow control and error control services manage data transmission rate and ensures data is received without error. So in case of transmission errors and re-transmission requests transport layer should be investigated.

Incident damage ____ is the rapid determination of the scope of the breach of the confidentiality, integrity, and availability of information and information assets during or just following an incident.

Answers

Answer:

The answer is "assessment"

Explanation:

In the given question some information is missing, that is options that can be described as follows:

a) containment strategy.

b) assessment.

c) incident response.

d) disaster assessment.

Assessment also known as community risk, which is used for evaluations. It played a crucial role in the reaction and recovery after a dangerous incident in any organization.

In this process, the Information of the degree and the position, which is lost are included in the collected information by the Accident investigation Taskforce. This data is analyzed to evaluate the needs of members and the entire community, and other choices are wrong that can be described as follows:In option a, It is a part of world war II, that's why it is wrong.In option c, It is a method that is sort major incident, that's why it is wrong.In option d, It uses cost control and risk avoidance, that's why it is wrong.

Disk Defragmenter eliminates unnecessary file fragments and rearranges files and unused disk space to optimize computer operations. This is an example of which type of program?

Answers

Answer:

Windows utility program.

Explanation:

The operating system is a software used to manage the activities of various parts of the computer system. It acts as a link between the hardware, application software and the user. An example of OS is the Windows OS.

It has the kernel program that directly connects the hardware to the operating system. It provides utility programs to analyse, optimise, control and maintain devices running in the system.

Window utility program is an example of utilities in OS, used to analyse, control, optimise and maintain device and software activities for good system performance.

An example of the windows utility program is the disk defragmenter used to eliminate fragments and rearrange files and unused disk space.

Consider the following code snippet: public class Motorcycle extends Vehicle { private String model; . . . public Motorcycle(int numberAxles, String modelName) { model = modelName; super(numberAxles); } } What does this code do?

Answers

Answer:

The answer is "The code will not be compiled".

Explanation:

Description of the given code as follows:

In the given code, the class "Motorcycle" is defined, which inherits the above class that is "Vehicle". Inside Motorcycle class a private string variable "model" is declared. In the next line, the parameterized constructor "Motorcycle" is defined, that accepts two different parameters, which is "integer and string", inside the constructor string variable model used to hold parameter "modelName" value, and use the super keyword to call above class variable "numberAxies", which is not defined in this code, that's why the code is not compiled.

An engineer plans to connect three switches (SW1, SW2, and SW3) in a lab. Before connecting the switches, he starts by configuring all three switches as VTP servers, with matching CTP domain name and password. He then configures some VLANs on each switch so that switch SW3 has a revision number of 10, switch SW2 has a revision number of 6, and switch SW1 has a revision number of 8. Only then does he engineer connect the switches with trunks: first SW1 to SW2, then SW2 to SW3, and then SW3 to SW1. Switch SW1 is elected the STP root switch in VLAN 1. Which answer most accurately states which VLAN configuration database is used, and why?

Answers

Answer:

c. All use SW3's database because SW3 has the highest revision number.

Explanation:

In this particular configuration, the three switches will definitely be connected to one another by the presence of some path with the specific trunks. As a result, the database with the most revision number will ultimately win. The process of the STP election does not have any influence on the selection of the VTP.

You have been asked to implement enterprise software for a manufacturer of kitchen appliances. What is the first step you should​ take?

Answers

Answer:

Option E i.e., Select the functions of the system you wish to use is the correct answer.

Explanation:

In the above statement, some part of the question is missing that is options.

The first step is taken by the user is that they have been select those methods of the computer system which he wants to use firstly if he has to implement the software or an application for that manufacturers who sales the appliances of the kitchen. Then, it is necessary to take the following steps by the user according to its needs.

Jason is using TCPdump to capture traffic on his network. He would like to review a capture log gathered previously. What command can Jason use?

Answers

Answer:

tcpdump -r capture.log

Explanation:

Based on the information provided within the question it can be said that the command that will allow Jason to do this would be the following : tcpdump -r capture.log . This command (like mentioned in the question) will allow provide Jason with previously captured network traffic logs in order for him to be able to thoroughly review those logs.

Assume that inputFile references a Scanner object that was used to open a file. Which of the following while loops is the correct way to read data from the file until the end of the file is reached?

Answers

Answer:

while(inputFile.hasNext()) { //some code here  }

Explanation:

Even though you did not provide the options, here is how it should look like.

It is known in the question that there is an object called inputFile. To be able to read all the data from a file in Java, you need to use hasNext() function with the object. inputFile.hasNext() enables you to read the data in a file.

while(inputFile.hasNext()) {   } enables you to loop through the file while it has something to read in a file.

The biggest change affecting computer security that has occurred over the last 30 years has been the transformation of the computing environment from a highly interconnected network of smaller systems to large mainframes.

Answers

Answer:

False

Explanation:

The change that occurred to computing over the last 30 years was the shift from large mainframes to the highly interconnected networks of smaller systems. Users in time past need to be in a fixed location to be able to use the computer, but over the years size of computers were reduced significantly to very portable devices sharing resources over the internet and can have access to a work server fro any location.

Clicking a _____ name opens a drop-down list of commands and options. Select one: a. menu b. status bar c. ribbon d. toolbar

Answers

Answer:

menu

Explanation:

https://quizlet.com/231958668/windows-chapter-1-concepts-exam-flash-cards/

Final answer:

Clicking a menu name opens a drop-down list of commands and options in many software applications, where users can choose from various actions.

Explanation:

Clicking a menu name opens a drop-down list of commands and options. This characteristic is common in many software applications where a menu is a graphical control element that bears a list of options that a user can choose from to perform certain actions.

Menus are typically found across the top of the screen or window and contain items such as File, Edit, View, and Help. Different types of menus, such as context menus, appear upon interacting with elements within the software, displaying relevant options for that context.

The examples provided such as 'Menu: Actions... Colors... green' indicates a hierarchical menu structure where 'Actions' is a menu, and 'Colors' is a sub-menu with 'green' as one of the selectable options.

In the context of Web server performance evaluation, _____ is testing that is used to compare the performance of hardware and software.

Answers

Answer:

Benchmarking.

Explanation:

Web servers are platforms used in networking to provide resources for websites and software applications. Every end devices in a network request for website resources and applications from Web servers.

To maintain these resources, web server performance must be evaluated to prevent unexpected downtime of the server. One way of evaluating web server performance is the benchmarking test.

The benchmarking test is used to compare the performance of the hardware and software of the server system.

Assume the market for DVD movies is initially at equilibrium. A decrease in the price of streamed movies, a substitute for DVD movies, will __________ the equilibrium price and ___________ the equilibrium quantity of DVD movies.

Answers

Answer:

The answer is "decrease; decrease".

Explanation:

DVD movies are used to short and a digital portable digital video, It uses a disc that stores much more data as compared to CD.

It is widely used for films and other data storage and display. It decreases the streaming video costs, as substitution for DVD videos, would increase the average demand and high the surplus in DVD films.

The design strategy that starts with a global view of the entire problem and breaks the problem down into smaller, more manageable subproblems is known as what type of design?

Answers

Answer:

Top down design

Explanation:

Top-down design is an approach that is used to break down the problem into the smaller subpart so that it can be manageable into more clear form.

C programming is the example of a top-down approach while C++ is the example of the bottom-up approach.

The advantages of the top-down design approach are:

1) easy to manage

2) easy to find the error

3) easy to debug

Match each type of software license with the appropriate definition.
Each answer choice is used only once.
Part A
1. Software distributed for a multitude of users
2. Software you must purchase before using
3. Software distributed with a limited license
4. Software distributed free of charge
Part B
a. Freeware
b. Shareware
c. Network
d. Buyware

Answers

Answer:

1- Software distributed for a multitude of user: network

2- Software you must purchase before using:  buyware

3- Software distributed over a limited license: shareware

4- Software distributed free of charge: freeware

Explanation:

The software which we have to buy before using it is called buyware. The software which is only provided to the people who have lisence to use it, is called shareware. The software which can be used by many users is called the network. software which can be used without purchasing is called freeware.    

Final answer:

Software licenses can be categorized based on how the software is distributed and used. Freeware refers to software that is distributed free of charge, while shareware is distributed with a limited license. Network software is distributed to a multitude of users, and buyware requires a purchase before use.

Explanation:

Part A:

Software distributed for a multitude of users - NetworkSoftware you must purchase before using - BuywareSoftware distributed with a limited license - SharewareSoftware distributed free of charge - Freeware

Part B:

a. Freeware - Software distributed free of chargeb. Shareware - Software distributed with a limited licensec. Network - Software distributed for a multitude of usersd. Buyware - Software you must purchase before using

In the Linux Bash shell, the ____ key combination deletes the content of the command line from the current cursor position to the end of the command line.A. Ctrl+bB. Alt+dC. Ctrl+kD. Ctrl+a

Answers

Answer:

C. Ctrl+k.

Explanation:

The bash shell is a command processor interface in Linux operating system as a default login shell. There are other versions for operating systems like Windows and Mac OS. A user can input a plain text command to the command line interface and use different key combinations to initiate different action.

The key combination used to delete the content of the command line from the position of the cursor is the Ctrl+k combination.

Which key or key sequence pressed during the boot process will allow a user to start a Windows PC using the last known good configuration?

Answers

Answer:

F8

Explanation:

In Windows PC (e.g Windows 7), Last Known Good Configuration, is an option that helps users to start up their PC if it doesn't start normally. This option is only accessible at boot process by using the keyboard (mouse will not work at this point). So to access this option, the F8 key is pressed repeatedly or held down. This will display some start up menus where the user can use the arrow keys to access the option.

With more and more users using mobile to look at websites, it is key that you optimise your site so users can find it when searching online. Which two elements should you look to optimise for improved SEO performance?

Answers

Answer:

Site speed and usability.

Explanation:

Web pages are developed using web development tools like HTML, CSS, JavaScript etc. A collection of these web pages are called a website. The web is a hosted for internet use in a web server.

All requests for a website in a web server is done in a web browser in a client device. For a website to be easy searched for , the search engine optimisation technique is used.

A hosted website on a server must have a unique and usable domain name and the page loading on a browser should be made faster by optimising the size of the scripting language.

What can be controlled through IoT? Choose four answers.
Desktops
Door locks
Laptops
Light switches
Security cameras
Thermostat

Answers

Answer:

Door locks

Light switches

Security cameras

Thermostat

Explanation:

IoT is internet of things that means network of different things that are interconnected through internet and make the decision with the help of Electronic sensors. The sensor sense the data from environment at different times and send this to the cloud (that may be the server). On the basis of this data different devices such as door looks, light switches, security cameras and thermostat take decisions with the help of controllers and change their current state.

For Example

In case of door look, there may be sensor that is sensing the finger prints of the user and after recognizing the person the door will be unlock. If unauthenticated user will try to open the lock a message has been sent to concerned. The training data of the the authorized persons is saved on the cloud, whenever someone tries to access, the data from sensor and cloud send to controller for making comparison and decision. So we can say that Door lock can be controlled IoT.

In case of light switches, there are few sensor available to sense the intensity of life. Different training values of that sensors are stored on the cloud. Whenever these sensors sense the light intensity, they send the data to the cloud contentiously, whenever the data match with darkness intensity, a signal has been send from controller to the switch to ON the lights.

Same as in cameras and Thermostat both are sending data to the cloud and controller. With the help of different image processing techniques and sensor camera will take the decision related to face recognition. Thermostat devices are also on and off by variation of temperature.

A user is claiming a host can be reached via the IP address but not through the name. What should a technician do first to resolve the problem?
Add an entry to the HOSTS file
Restart the client device
Restart the DNS server
Restart the DNS service

Answers

Answer:

Add an entry to the HOSTS file

Explanation:

A file that is used to add the host name along with their IP addresses is called Host file. In this file all the IP addresses are mapped with their respective host names. Whenever some user tries to access some website, he may use the name of website to access it. The website have both name and IP address of the server, both of these information stored in host file. On GUI the user only see the information of Host name.

If some user only access the IP address of the website instead of the host name. The technician should add the name and IP address of the host in Host file. He should follow the following steps to resolve the problem.

Access the host file by following the given path of file in Windows operating system.open the host file edit the file with new host name and relevant IP address save the changes

Based on the current economic situation do you expect the employment demand for graduating engineers to increase or decrease? Explain the basis for your answer.


With a significant economic recovery, what do you think will happen to future enrollments in graduating engineering programs?

Answers

Answer: the employment demand would increase.

Explanation:

Several factors affect the employment demand especially in a field as peculiar as engineering, the cumulative build up of unemployed graduates and the skill set required to fit into the present working structure is also of Paramount importance. The evaluation method for recruitment seeks to function based on this rationale by selecting a few amongst many.

Final answer:

The economic situation points to an increase in employment demand for graduating engineers, tied to economic recovery and the trend of higher job growth for those with more education. Future enrollments in engineering programs are expected to increase with economic recovery. Countries like China and India have a high number of engineering graduates, reflecting their focus on technology and industry.

Explanation:

Based on the current economic situation, the employment demand for graduating engineers is likely to increase as economies recover from downturns and companies start to expand and invest in new technologies and infrastructure. This is supported by the trend that higher levels of education, including engineering degrees, are associated with higher job growth rates. For instance, those with a bachelor's degree have job growth expectations of 17 percent.

With a significant economic recovery, enrollments in graduating engineering programs are also expected to rise. This is because students may perceive engineering as a field with strong job prospects, which can lead to more secure and well-paying positions. Therefore, during economic recoveries, the allure of a promising career in engineering could attract more students to these programs.

In the context of global engineering graduates, countries with the most graduates can be indicative of their prioritization of technical education and their industrial and technological sectors' requirements. For example, countries like China and India have high numbers of engineering graduates due partly to their large populations and emphasis on engineering as a driver of economic growth.

Suppose your cell phone carrier charges you a monthly fee of $30.00 for up to 300 minutes and $0.45 for each additional minute after the first 300. Assuming you used your phone for x minutes with x > 300, the total monthly fee would be?

If you used your phone for <= 300 minutes then the charge is $30.00 Assume the user enters a positive value for the number of minutes

30 + (x -300) * .45ç correct answer

Use the following template

A = 300 #CONSTANT fee for <= 300 minutes

m = int(input("Enter the number of minutes "))

c = 0 # initialize cost variable

if (m>300): # minutes>300

# calculations here to compute the solution above

# use the correct answer provided

print(" the cost for ", m, " minutes is ", c )

else: # here m is <= 300# s <= 0

print(" the cost for ", m, " minutes is ", A )

Answers

Answer:

# 30 + (x -300) * .45ç correct answer

A = 30 #CONSTANT fee for <= 300 minutes

m = int(input("Enter the number of minutes "))

c = 0 # initialize cost variable

if (m>300):

   c = 30 + ((m - 300) * 0.45) #Cost when the minute is greater 300

   print("The cost for ", m, " minutes is $",c )

else:

   print("The cost for ", m, " minutes is $",A )

Explanation:

   c = 30 + ((m - 300) * 0.45) #Cost when the minute is greater 300

First 300 is subracted from the given minute to get the extra minute, and then the extra minute is multiplied by $0.45 after which it is added to the constant of $30 for the 300 minutes

Given a string variable named "myString" of length 5, how could you access the first character and last character using a numeric index?

Answers

Answer:

The first index myString[0]

The last index myString[4]

Explanation:

Indexing starts at "0". so the first character in a string will be at index "0" and the last character will be at index "-1". But since we were given the length of this string to be 5, we know that the index of the last character will be "4".

The python code bellow will print character at the first and last index:

myString = "hello"

print("The First Index is "+myString[0])

print("The Last Index is "+myString[-1])

You are a domain administrator for a large, multi-domain network. There are approximately 2500 computers in your domain. Organizational Units (OUs) have been created for each department. Group Policy objects (GPOs) are linked to each OU to configure department-wide user and computer settings.While you were on vacation, another 20 computers were added to the network. The computers appear to be functioning correctly with one exception: the computers do not seem to have the necessary GPO settings applied.What should you do?

Answers

Answer:

move the computer accounts from their current location to the correct Organizational Units (OU's)

Explanation:

Based on the information provided within the question it can be said that in this scenario the best thing to do would be to move the computer accounts from their current location to the correct Organizational Units (OU's). This would keep things organized and have each computer account in the unit that they belong with the correct access and privileges that they need.

The __________ supports the primary system components (such as the CPU and RAM) necessary for all digital electronics devices such as 1. desktop PCs2. notebook PCs3. mobile phones4. iPads4. servers

Answers

Answer:

Computer System unit.

Explanation:

The computer system unit holds all the other components together and protect them outside elements. The components include motherboard, CPU, hard drive, RAM, video card and power supply.

What computer is designed to meet the computing needs of several people simultaneously in a small to medium-size business environment?

Answers

Answer: Mini computer or mid-range computer

Explanation:

Mini-computer are the computers that is used for purpose of serving engineering,business and scientific processing.It provides storage, processing,DBMS(database management system), handling and management of files and data etc.

Mini-computers are also known as mid-range computer.Example-IBM Power System.These computers are usually used for server processing from small to medium sized fields.This range of computer is between mainframe and microcomputer.

How can the security information and event management system in a SOC be be used to help personnel fight against security threats?

Answers

Answer:

i think its A.

Explanation:

:)

Which feature of SQL Server 2012 provides a failover environment consisting of a group of primary user databases with up to four replicas?

Answers

Answer:

(always on) availability group

Explanation:

Availability group of SQL server 2012 provides replicated alternatives for multiple databases.

In case of a disaster situation, this feature recovers the system by using replicated environments.

This feature is an alternative solution to database mirroring

If our list called List is populated as [0, 1, 2, 3, 4], what happens if our code tries to access List [5] per the rules of the AP Computer Science Principles Reference Guide?

Answers

Answer:

The number 4 will be returned.

Explanation:

Given;

List = [0, 1, 2, 3, 4]

Using the AP Reference Guide;

The first element has an index of 1 and can be accessed using the same. i.e

=> List[1] = 0

The second element has an index of 2 and can be accessed using the same. i.e

=> List[2] = 1

Therefore, if our code tries to access List[5], then the number at index 5 will be returned. i.e

=> List[5] = 4

This implies that the last number 4 will be returned.

Note: Many programming languages (such as Java) actually start their collection (array, list) index from 0 rather than 1. But since we are using the AP Computer Science Principles Reference Guide, the index has to start from 1.

When people use Web browser software to become part of the Web, their computers become Web client computers on a worldwide client/server network.

A. True
B. False

Answers

Answer:

A. True.

Explanation:

The internet or the world wide web (www) is a global network of interconnected networks. It has a wide range of dedicated servers, intermediate network devices like routers and switches, and end devices to access data.

The website is a collection of web pages hosted on web servers on the internet. Web browsers are application softwares used by end devices to request for web pages. There are two types of network connection, peer to peer and client/server connection.

The peer to peer network involves computers serving as client ( requesting for data) and server (transmit data) at the same time. The client/server network one has a dedicated server that transmits data and a client that request for data.

This makes computer running web browsers, clients to web servers on the internet.

When working with arrays, most programming languages perform ________, which means they do not allow programs to use invalid subscripts. Group of answer choices

1. buffer overrun protection
2. None of these
3. bitwise data execution
4. array bounds checking subscript binding

Answers

Final answer:

In array operations, most programming languages use array bounds checking to prevent the use of invalid subscripts, ensuring memory safety.

Explanation:

When working with arrays, most programming languages perform array bounds checking, which means they do not allow programs to use invalid subscripts. The correct answer is option 4. Array bounds checking is a safety feature in many programming languages that prevents programs from accessing memory locations outside of the allocated array space.

This is important to prevent errors and potential vulnerabilities like buffer overruns, where an attacker could manipulate the program to execute arbitrary code by overwriting parts of the memory.

Other Questions
A paradigm is one of the fundamental models of frames of reference we use to organize our observations and reasoning. Therefore, when a new paradigm emerges in social science, old paradigms would be completely replaced and discarded. A truck can be ready for company a 420 dayPlus $.30 per mile can we be charges $50 a day plus $.50 per mile to rent the same truck find the number of miles in a day at which the rental costs for a company a and Company B same Which order pair is not a solution to the equation y = 2x - 1.(0, 6)(3, 17)(2, 7)(-1, 1) Find a unit vector that has the same direction as the given vector. 3i + 2j k Pls help me!!! Will mark brainliest!!!These 4 questions answered and work shownFor Reference): Topics: Trig functions exact values and reciprocal trig functions exact values Use unit multipliers to convert 50 square meters to square inches Evaluate -3x + 5( x +2) Title II of the Sarbanes-Oxley Act prohibits registered public accounting firms from providing certain nonaudit services. These services include all of the following except: which on a negative anect of social networking?Robyn watches online cooking classesceline locates her Tends from summer campSites a blog about the nation's healthcare systemen uses social media to convince a peer to drop out of a competition. 3. At the beginning of the day, a water tank contained 526.8 gallons of water. During the day,some of the water was used to water a garden. At the end of the day, the water tank contained318.05 gallons of water.What was the total amount of water used that day?a. 202.75 gallonsb. 208.75 gallonsC. 208.85 gallonsd. 210.80 gallons A 0.30 kg mass is sliding on a horizontal, frictionless air track with a speed of 4.0 m/s when it instantaneously hits and sticks to a 2.0 kg mass initially at rest on the track. The spring constant is 100 N/m . The other end of the spring is fixed.a. Determine the following for the 0.30 kg mass immediately before the impact:i. Its linear momentum ii. Its KEb. Determine the following for the combined masses immediately after the impact:i. The linear momentum in. The KEc. Besides the fact that the objects stick together, what other clue lets you know that this was an inelastic collision 1) If 0.193 grams of toluene is dissolved in 2.532 grams of p-xylene, what is the molality of toluene in the solution?2) If a freezing point depression of 3.57Celcius is measured for the solution described in question 1, calculate [tex]K_f[/tex] for p-xylene.3) Suppose you dissolved 0.123 gram of pentane in 2.493 grams of p-xylene and measured a freezing point depression of 2.88celcius for the solution. Calculate the molar mass of pentane using this data and the value for [tex]K_f[/tex] that you calculated in question 2. Which of the following influenced the United States culturally and politically after the War of 1812?A. Embargo ActB. Alien and Sedition ActC. a spirit of democratic nationalismD. exceptionalism Near the ceiling of a room air is warmer. The warm air rises because of An engineering team has members from Egypt, Malaysia, Australia, Argentina, and the U.S. They communicate by email and videoconferencing. The work of this globalized team is made easier because of A soft-drink bottler purchases glass bottles from a vendor. The bottles are required to have internal pressure strength of at least 150 pounds per square inch (psi). A prospective bottle vendor claims that its production process yields bottles with mean internal pressure strength of 157 psi and standard deviation of 3 psi. The bottler strikes an agreement with the vendor that permits the bottler to sample from the vendor's production process to verify the vendor's claim. The bottler obtains a random sample of 64 bottles. If the mean internal pressure strength of the sample falls below K, the bottler will conclude the vendor's claim about the mean internal pressure strength to be false. Suppose the bottler is willing to risk a 2% chance of concluding the vendor's claim to be false even if the claim is true. Find the value of K. PLEASE HURRY! ;)Which statements are true?A;When triangle ABC is reflected over the y-axis to create triangle A'B'C' , the coordinates for B' are(1, -1) .B;When triangle ABC is rotated 90 degrees clockwise about point A to create triangle A'B'C' , the coordinates for B' are (3,3]CWhen triangle ABC is dilated from the origin by a scale factor of 1\4 to create triangle A'B'C', the coordinates for B'are (4,4)DWhen triangle ABC is translated 2 units to the left and 1 unit down to create triangle A'B'C' , the coordinates for B' are (-1, 0)EWhen triangle ABC is dilated from the origin by a scale factor of 5 to create triangle A'B'C', the coordinates for B' are (5,5) During a science lab investigating chemical reactions, Mr Grace students place an antacid tablet in a ziplock bag. They recorded the mass of the tablet, 25 g, in the bag, 60 grams. Then they carefully added 50 g of water and quickly seal the bag. The tablet began at this and soon disappeared. The bag was filled with gas. If the total mass of the bag+tablet+water was 135 grams before the reaction, what was the total mass of the bag+liquid+gas after the reaction was completed? A) 60 grams B) 75 grams C) 135 grams D) 270 grams You are advising a local nonprofit on strategy. The nonprofit supports cancer research and relies entirely on donations. You recommend that the nonprofit engage in marketing activities. The executive director tells you that because it is a nonprofit that does not engage in selling activities and has a small budget, the nonprofit has no use for marketing. You disagree and explain that marketing is not just for for-profit organizations. You explain the different ways the nonprofit can engage in marketing without changing its practices or the mission. Which of the following marketing activities would be most feasible for this nonprofit? Hep me ASAP!!!! A.-2 B.4 C.7-3sqrt3 D.7- sqrt3 Steam Workshop Downloader