When students have computer trouble they usually are expected to
make any simple fixes on their own.
solve complex issues by themselves.
drop their school work until it is resolved.
pay a technician a high fee to fix the issue.

Answers

Answer 1

Answer: A) Make any simple fixes on their own.

Answer 2

Answer:

A

Explanation:


Related Questions

You have a Windows Vista workstation with a built-in network card. The card is intermittently malfunctioning. You install a USB network card and want to permanently disable the internal card to avoid any conflicts. Which administrative tool should you use

Answers

Answer:

Device Manager

Explanation:

try it yourself

press windows key + X

then click device manager

here you can right click anything and disable it

its easy its cake

have fun

What type of AWS Systems Manager document can take a snapshot of an Amazon Elastic Compute Cloud (Amazon EC2) instance

Answers

An AWS Systems Manager document that can take a snapshot of an Amazon Elastic Compute Cloud (EC2) instance is a 'Automation document.'

The AWS Systems Manager is a management service that assists in viewing operational data from various AWS services and automating recurring operational tasks. Users can make the most of their infrastructure management, improve security, and make more educated decisions using this integrated interface. It also simplifies the process of patching, updating, and automating compliance by utilizing Amazon EC2 system manager capabilities.

AWS Systems Manager enables IT operations teams to create and run System Manager documents, which are workflows that contain a sequence of actions to execute on a specified instance or a fleet of instances. Systems Manager documents help simplify the process of provisioning instances, deploying applications, and running tasks across your infrastructure.

The Automation document is one of the AWS Systems Manager documents types that is utilized to automate tasks that can be initiated on an EC2 instance, either on-demand or on a schedule. It enables users to define a collection of actions, known as steps, that AWS Systems Manager executes in order. The Automation document is then associated with one or more targets, which can be Amazon EC2 instances, on-premises machines, or other resources.The automation document is a unique AWS Systems Manager document type that is designed to be utilized in conjunction with the Systems Manager Automation service. The Automation service provides a fully managed service that enables users to automate manual, long-running, error-prone, and often repeated IT tasks.

Learn more about AWS :

https://brainly.com/question/30176139

#SPJ11

suppose the information content of a packet is the bit pattern 1010 0110 1011 1101 and an even parity scheme is being used. what would the value of the field containing the parity bits be for the case of a two-dimensional parity scheme?

Answers

The value of the field containing the parity bits for a two-dimensional parity scheme would be "10".

In a two-dimensional parity scheme, the data is divided into a matrix or table, and parity bits are calculated for each row and column. To calculate the parity bits for this specific bit pattern, we first need to divide it into a 2x8 matrix:

1 0 1 0 0 1 1 0
1 0 1 1 1 0 1 1

Next, we calculate the parity bits for each row and column. For the rows, we add up all the bits and determine whether the sum is even or odd. If it's even, the parity bit is 0; if it's odd, the parity bit is 1. For the columns, we do the same thing but vertically.

For the first row, the sum of the bits is 4, which is even, so the parity bit for that row is 0. For the second row, the sum is 5, which is odd, so the parity bit for that row is 1.

For the columns, we have:

1 1
0 0
1 1
0 1
0 1
1 0
1 0
0 1

The sum of the bits for the first column is 2, which is even, so the parity bit for that column is 0. The sum of the bits for the second column is 3, which is odd, so the parity bit for that column is 1.

Putting it all together, the parity bits for the rows are 0101, and the parity bits for the columns are 0010. To get the final parity bits for the entire packet, we take the parity bits for the rows and columns and calculate the parity bit for that data. In this case, the sum of the bits is 4, which is even, so the final parity bit is 0. Therefore, the value of the field containing the parity bits for the case of a two-dimensional parity scheme would be "10".

To know more about even parity scheme visit:

https://brainly.com/question/29331891

#SPJ11

What is Current interrupt register

Answers

Answer: An interrupt control register, or ICR, is a hardware register in a computer chip used to configure the chip to generate interrupts—to raise a signal on an interrupt line—in response to some event occurring within the chip or a circuit connected to the chip.

Explanation:

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

4.18 lab: leap year a year in the modern gregorian calendar consists of 365 days. in reality, the earth takes longer to rotate around the sun. to account for the difference in time, every 4 years, a leap year takes place. a leap year is when a year has 366 days: an extra day, february 29th. the requirements for a given year to be a leap year are: 1) the year must be divisible by 4 2) if the year is a century year (1700, 1800, etc.), the year must be evenly divisible by 400; therefore, both 1700 and 1800 are not leap years some example leap years are 1600, 1712, and 2016. write a program that takes in a year and determines whether that year is a leap year. ex: if the input is: 1712 the output is: 1712 - leap year ex: if the input is: 1913 the output is: 1913 - not a leap year 428030.2135884.qx3zqy7 lab activity 4.18.1: lab: leap year

Answers

The Gregorian calendar used today has 365 days in each year, including leap years. If 1712 is the input, then 1712 leap year will be the output.

What does a computer output?

The term "output" refers to any information that a computer, or even another electrical device, processes and sends. An illustration of output is anything that you can read on your laptop's monitor, like the text you type on the computer.

What type of output is it?

All permissible formats include writing, graphics, audio, touch, and video. Monitors, printers, audio gear, microphones, speaker, projections, GPS devices, machine readable readers, and braille readers are a few examples.

Briefing:

// program in Python.

#read year

i_year = int(input("Please Enter a year:"))

#check leap year

if( (i _ year % 4 == 0 and i _ year % 100 != 0)

or (i_year % 400 == 0)):

print("{} is a leap year.".format(i_year))

else:

print("{} is not a leap year.".format(i_year))

Output:

1712

1712 is a leap year.

To know more about output visit:

https://brainly.com/question/12978033

#SPJ4

What is the default administrative distance of a static route within the PAN‐OS ® software?
A. 1
B. 5
C. 10
D. 100

Answers

The default administrative distance of a static route within the PAN-OS software is D. 100. Administrative distance is a measure of the trustworthiness of a routing protocol or a static route. It is used by routers to select the best path when there are two or more routes to the same destination. A lower administrative distance means that the router trusts the route more than a route with a higher administrative distance.

In the case of the PAN-OS software, the default administrative distance for static routes is 100. This means that if there are two routes to the same destination, one learned from a dynamic routing protocol and one configured as a static route with an administrative distance of 100, the router will choose the dynamic route because it has a lower administrative distance.

It's important to note that the administrative distance can be changed to meet specific requirements. For example, if there is a need to prefer a static route over a dynamic route, the administrative distance of the static route can be lowered to a value of less than 100.

Distance is also an important factor when it comes to routing over a network. Distance refers to the length of the path between two points. In routing, the distance can refer to the number of routers that a packet must pass through to reach its destination. The distance can affect the performance of the network, especially in cases where there are long distances or high network traffic.

Learn more about administrative here:

https://brainly.com/question/31152656

#SPJ11

in python i wrote a function where if the user inputs a certain word the function repeats over again, since the function aaks for the word the end of the function, therotically the function can repeat infinte times. Now my question is, how can i find out how many times the function was repeated. i need to know how many times the function repeated in order to do a percentage calculation, can someone tell me, how i can find how many times the function was repeated ?

Answers

Check out the counter set

Really need help Which of these are ways that hackers gain access to computer systems? Select 3 options.


data validation

data validation


phishing

phishing


packet sniffing

packet sniffing


dumpster diving

dumpster diving


layered security

layered security

Answers

The ways that hackers gain access to computer systems are:

PhishingPacket sniffingDumpster diving

What is system attack?

There are different kinds of system attack. This is where the hacker often attacks the system so as to gather data or information about a system.

The different forms of attacks  includes dumpster diving, shoulder surfing, tailgating, phishing and others. Data validation is not an attack on system.

Learn more about hackers from

https://brainly.com/question/23294592

Answer:

Phishing

Packet sniffing

Dumpster diving

Explanation:

where do today’s computers store almost all motherboard configuration data? group of answer choices hdd

Answers

Today computer store almost all motherboard configuration data on CMOS chip. So option a is correct.

Today's computers store almost all motherboard configuration data on a small chip called the "CMOS" (Complementary Metal-Oxide Semiconductor) chip. This chip is located on the motherboard and is powered by a small battery. The CMOS chip stores data such as the system time and date, as well as hardware settings for the computer.

This allows the computer to retain important configuration data even when it is powered off. So, the correct answer is not the HDD (Hard Disk Drive), but rather the CMOS chip on the motherboard.

The complete question is given below:

"

where do today’s computers store almost all motherboard configuration data? group of answer choices hdd

a. CMOS

B. Hard disk

C. RAM

D. ROM

"

You can learn more about CMOS at

https://brainly.com/question/14767803

#SPJ11

Terry received a support call from a supervisor at his company. When he arrived at his supervisor's work area, Terry spoke with the supervisor and asked him for his help in finding a solution for his computer's problem. The supervisor showed Terry the error message and reproduced the error for him to see. Terry backed up all the important data on the machine.

What is the next step Terry should take in the troubleshooting process?
a. Establish a plan of action to resolve the problem.
b. Document his findings.
c. Establish a theory of probable cause.
d. Test his theory.

Answers

Answer:

a

Explanation:

so dat he can deal with any such problems

Which is an example of how data is exported from a database?
A database is sorted and divided by subcategories.
A database imports data from a table.
A database object is saved using a file type that can be opened by other types of programs.
A database is saved under a new name.

Answers

Answer:

c

Explanation:

hope this helps

Please Help ASAP
1) Which Python statement correctly launches a CSV file named "statdata.csv"?

A) csv.reader("statdata.csv", delimiter=",")

B) import csv

C) open("statdata.csv")

D) read("statdata.csv")


2) You wrote a code that validates a user key. The key should be a number between 1000 and 9999 inclusive. What should be in place of the question mark?


def validate(key):

if key > 999 and key ? 10000:

return True

return False

A) <

B) >

C) <=

D) >=

3) You work in a game development industry and want to create a game that closely resembles reality. You want to make sure that every detail of the game is realistic, from the color of the sky to the facial features of the characters. What type of developer are you?

A) The maker

B) The perfectionist

C) The talker

D) The visionary

4) Does a broken login put a password protected computer at risk? Why or why not?

A) No, computer logins are enciphered, and data stored on the computer is cryptic.

B) No, computers logins are encrypted, and data stored on the computer cannot be read.

C) Yes, computer logins and data stored on the computer are each encrypted.

D) Yes, some computer logins are encrypted, but data stored on the computer is not.

5) The program below needs to output "14." What is the missing line in the program?

def Function(A,B):
for i in range(1, len(B)):
/*missing line*/
return B[i]
X = [20, 24, 4, 98, 9]
Y = [2, 4, 14, 9, 98]
print(Function(X,Y))

A) if B[i] == A[i]:

B) if B[i] >= A[i]:

C) if B[i] <= A[i]:

D) if B[i] > A[i],

Answers

Python statement correctly launches a CSV file named "statdata.csv" C) open("statdata.csv")

2. D) >=

3. B) The perfectionist

4. B) No, computers logins are encrypted, and data stored on the computer cannot be read.

5. C) if B[i] <= A[i]

What is Python statement

A Python statement is a line of code that does something in the Python language. A Python code is made up of small parts called "units" that include important words, calculations,  and symbols.

There are many types of sentences in Python, like simple ones. Each instruction is usually on its own line, and Python reads and follows them one after the other from beginning to end.

Read more about Python statement here:

https://brainly.com/question/30392710

#SPJ1

Help please! i don’t know how to do this.

H2 should be:
-Blue
-Times New Roman or Arial
-Align to the right

2. Strong should be:
-Teal
-32pt
-Boldness of 700

3. P should be:
-All in uppercase
-Overlined
-Word space of 10em

Help please! i dont know how to do this.H2 should be:-Blue-Times New Roman or Arial-Align to the right2.

Answers

Answer:

Make sure to create and link a css file with the following:

<link rel="stylesheet" href="./styles.css">

In your css file, enter these styles:

h2 {

   color: blue;

   font-family: 'Times New Roman', Times, serif;

   text-align: right;

}

strong {

   color: teal;

   font-size: 32pt;

   font-weight: 700;

}

p {

   text-transform: uppercase;

   text-decoration: overline;

   word-spacing: 10em;

}

Explanation:

In order for the html file to know where your styles are located, you have to link it to the css file with the code given above. In this file, you will enter some css to change the styles of the elements you have created in your html file.

To alter the style of an element, you first have to enter the name of the element itself, its class or its id. In this case, we have used the element itself, meaning that all the same elements in the html file will have the same style. The styles you wish to use are entered in between the curly brackets.

In your specific problem, we are trying to change the h2, strong and p elements, so that is what we have done. For the h2, you wanted it blue, therefore we use the color property to change the color. For the font, we use the font-family and finally we use text-align to align it to the right. The same pretty much applies for the other two elements. Your strong element needs to be teal,32pt and 700 bold. Therefore we use the color, font-size and font-weight properties respectively. And finally for the p element, we will use the text-transform, text-decoration and word-spacing properties respectively.

When you dont know the name of the property you want to change, I suggest googling it. You will definitely find the property name you are looking for. W3schools.com is a good source to use.

How would I search snowboarding outside of Minnesota in my browser?

Answers

The way to search for snowboarding outside of Minnesota in your browser is to use the search tool to type likely words such as  Popular Downhill Skiing Destinations and then you will see different options to choose from.

What does browsing entail?

When you're searching, you want to finish a task; when you're browsing, you can be seeking for ideas, entertainment, or just additional information. When you are searching, you are actively looking for solutions, whereas when you are browsing, you are merely viewing the results.

An application program known as a browser offers a way to see and engage with all of the content on the World Wide Web. Web pages, movies, and photos are included in this.

Note that by typing key words using your browser such as snowboarding, you will see defferent result.

Learn more about Browser search from

https://brainly.com/question/22650550

#SPJ1

You have been asked to build a computer from scratch. Before you begin, you need to know for what the computer will primarily be used. The computer’s use will have a significant impact on your choice of which two primary components of the motherboard and why?

Answers

Answer: because the mother board is the main component

Explanation:

What is one of the fastest ways to search for an items on a specfic web site

Answers

Geogle is the the fastest way

Explanation:

Which two statements describe benefits of a block-based coding language
like Scratch?
A. It is good for creating realistic computer-animated films.
B. One can share, borrow, and modify other people's programs.
C. It helps engineers do computer-aided design (CAD).
D. It is easy for beginners to learn.
SUBMIT

Answers

Answer D and B I think

Answer:

B and D

Explanation:

I used the program (and still kind of do) so I'll try and explain what Scratch is.

Scratch is like JavaScript but for young people who want to start learning code in what they call "blocks". These blocks can be used to make "projects" and these projects can be shared to everybody in the world. These "projects" and also be remixed so someone can make their own variation of the project. On Scratch you can also follow people if you like their work and people can follow you. If you are active on Scratch for more than 2 weeks than you can access something new called "cloud variables" which can transfer numbers across the platform which can also be used for online games.

Pretty much the best explanation I can give.

HISTORIA DE LAS PRINCIPALES CUENTAS CONTABLES Y DE LOS DOS ESTADOS FINANCIEROS
MENCIONAR LAS CUENTAS Y SUB CUENTAS EN CADA CASO.

Answers

Answer:

Sorry bud, i dont speak spanish, especially not ALL CAPS SPANISH.

Explanation:

this is your question in english:

HISTORY OF THE MAIN ACCOUNTS AND THE TWO FINANCIAL STATEMENTS.

MENTION THE ACCOUNTS AND SUB ACCOUNTS IN EACH CASE.

How do you get information from a form that is submitted using the "get" method in PHP?
A. $_POST[];
B. $_GET[];
C. Request.Form;
D. Request.QueryString;

Answers

In PHP, to get information from a form that is submitted using the "get" method, you would use the superglobal variable $_GET[]. The correct option is B.

The form data is added to the URL as query parameters when a form is submitted using the "get" method.

These query parameters are automatically added to the $_GET[] superglobal array by PHP. By designating the input name as the array's key in the $_GET[] structure, you can obtain the values of form inputs.

The value given by the user can be retrieved using $_GET['username'] if your form, for instance, has an input field named "username" and is submitted using the "get" method.

Thus, the correct option is B.

For more details regarding PHP, visit:

https://brainly.com/question/25666510

#SPJ4

A technician is installing a network-enabled smart home control system in a SOHO.
To access the system from the internet, which of the following configurations is MOST likely required on the SOHO router?

Port forwarding
NAT
QoS
DHCP

Answers

To access the network-enabled smart home control system from the internet, the technician would most likely need to configure port forwarding on the SOHO router. Option A is answer.

Port forwarding allows incoming connections from the internet to be directed to a specific device or service on the internal network. By setting up port forwarding, the router can forward incoming requests to the appropriate port on the smart home control system, allowing remote access from the internet.

Port forwarding is commonly used in scenarios where specific applications or services need to be accessed externally, such as remote access to home automation systems, security cameras, or gaming servers. It enables communication between the internet and devices/services within the private network, ensuring seamless access and control from remote locations.

Therefore, the correct answer is A.

You can learn more about port forwarding at

https://brainly.com/question/31812328

#SPJ11

The web lab consists of which elements. Select all that apply. Group of answer choices Files Inspector Tool Preview Hints Work Space Instructions

Answers

Answer:

Inspector Tool

Preview

Work Space

Instructions

Explanation:

Web Lab is a function that incorporates HTML in web development. It has functions such as Workspace where the developer writes the body of the website. Preview helps the developer take a look at the final product of what he is creating. Instructions panel provides a list of the different types of html packages that the developer can chose from.

All of these options help the developer produce a website that is up to standard.

The first step of data analysis after generating questions,
is:
a. Preparation - ensuring data integrity
b. Analyze Data
c. Evaluation results
d. Visualizing results

Answers

The first step of data analysis after generating questions is Visualizing results. Thus, option d is correct.

Data analysis is a process of examining, sanctifying, transubstantiating, and modeling data with the thing of discovering useful information, informing conclusions, and supporting decision- timber. Data analysis has multiple angles and approaches, encompassing different ways under a variety of names, and is used in different business, wisdom, and social wisdom disciplines. In moment's business world, data analysis plays a part in making opinions more scientific and helping businesses operate more effectively.

Data mining is a particular data analysis fashion that focuses on statistical modeling and knowledge discovery for prophetic rather than purely descriptive purposes, while business intelligence covers data analysis that relies heavily on aggregation, fastening substantially on business information.

Learn more about data analysis here:

https://brainly.com/question/30094947

#SPJ4

You are generating a derivatively classified piece of information and are looking for information in a classified database. While you are searching, you find a piece of information that is extremely helpful. It appears to include all of the classification markings including portion, banner, and classification authority block. Is this information authorized for use as a source of derivative classification?

Answers

Answer:

Yes

Explanation:

A classified information is piece of information that is hidden from public eyes as it could threaten national security if exposed

A derivatively classified piece of information is a piece of information document that extracts information from a classified information source and incorporates this information into the document. These classified documents bear classification markings which are used to show that the information is classified and give instructions on handling and dissemination. A derivative classifier is one who develops classified information using authorized classified information sources

Section 1.4 of Executive Order 13526 lists categories of information eligible for classification

What is your stand about research?

Answers

Answer:

Hope it helps..

Explanation:

research is the organised and systematic method of finding answers to question. it is systematic because it is a process broken up into clear steps that lead to conclusions. research is organised because there is a Plant Structure or method used to reach the conclusion .

PLEASE MARK ME AS BRAINLIEST

A two-dimensional array is essentially?
A primitive date type
A looped data structure

Answers

Answer:

A looped data structure

Explanation:

A two-dimensional array is an array of another array. You can traverse it using nested loops, one to traverse row and one to traverse columns.

If you were a professional photographer, what would be your focus and why?

Answers

Answer:

It'd be about the resolution ( number of pixels per inch ) because it gives the clearance and brightness of any photgraph made.

Explanation:

\(.\)

Implement the functions defined in the following Timer class: (25 points) #include #ifndef TIMER H #define TIMER_H using namespace std; class Timer friend istream& operator>>(istream& in, Timera tt); // Reads a Timer object that is formatted as HH:MM:SS friend ostream& operator<<(ostream& cut, const Timer & tt); // Writes a Timer object formatted as HH:MM:SS. public: Timer(int hours=0, int minutes=0, int seconds=0); // Create a Timer int getHours () const; // Returns the number of hours in the Timer int getMinutes () const; // Returns the number of minutes in the Timer int getSeconds() conat; 1/ Returns the number of seconds in the Timer void set(int hours, int minutes, int seconds); // Sets the timer to the new time. private: int all_seconds; }; #endif // TIMER H In the constructor, input function, and set function, make sure to check if all provided time values are valid. If they are not valid, do not update the time - and in the case of the constructor, exit the prog early. For the of checking the time values, include this function your timer.cpp: // Utility function that can't be seen anywhere else! static bool timeInRange (int time, int upper - 60) t return time >= 0 && time <= upper; The time represents the time value (minute, hour, or second), and upper represents the largest possible value the time could be. It defaults necessary (how many hours are in a day? Not 60!).

Answers

The algorithm to implement the functions defined in the following Timer class:

The Algorithm

Begin the task intelligently.

Create the Timer class that has a private variable named all_seconds.

Create the Timer object by providing the parameters of hours, minutes, and seconds in the constructor.

Make sure that the time values are valid by utilizing the timeInRange utility function within the constructor.

In the event that the time values are not valid, present an error message and terminate the program.

Determine the validity of the time values, and if confirmed, compute the total number of seconds and assign the value to the member variable called all_seconds.

The functions getHours(), getMinutes(), and getSeconds() should be executed to retrieve the relevant time elements.

Use the set() method to update the timer with fresh time inputs, ensuring that the inputs are legitimate before modifying the timer.

Develop the input and output functions, specifically the operator>> and operator<<, in the "HH:MM:SS" style format.

To verify whether a particular time value falls within the appropriate range, utilize the timeInRange() utility function.

End.

Read more about algorithms here:

https://brainly.com/question/13902805

#SPJ4

I will give brainliest help!
Architectural blueprints are protected under copyright but the actual buildings are not.

A.
True

B.
False

Answers

I would say true, but not 100% on that
Answer: True
(I’m 100% sure, I searched it up)
Please mark as brainiest

so i am taking to edhesive computer science course in my school, and i am confused on 1.6 code practice,
here are the intructions, it is also for the python coding language

Write a program that uses two input statements to get two words as input. Then, print the words on one line separated by a space. Your program's output should only include the two words and a space between them.

Hint: To print both words on one line, remember that you can concatenate (add) two phrases by using the + symbol. Don't forget that you'll need to add a space between the words as well.

Sample Run

Enter a word: Good
Enter a word: morning
Good morning

Answers

I included my code in the picture below. Best of luck.

so i am taking to edhesive computer science course in my school, and i am confused on 1.6 code practice,here
Other Questions
ARGUMENTATIVE ESSAY TOPIC: Climate Change ( Global Warming) 1.Write an Essay of about 2 pages in which you state if you agree or disagree with President Donald Trump regarding climate change Motivate your point of view regarding climate change (global warming) by means of supporting arguments Make use of Internet, Newspapers(articles), data from Video clips ,Statistics, Case Studies, QR Codes, etc The essay must be written during class periods (extra lessons / study periods) 4 You can bring resources to class to assist you in the planning and writing of the essay Use the attached RUBRIC to guide you in writing an essay. Keep the following in mind when writing an Argumentative Essay; (a) Introduction (b) Take a position (PRO/CON) (c) Gather evidence (d) Present Argument (e) Conclusion A state offers specialty license plates that contain 5 numbers followed by 2 letters. License plates are assigned randomly. All license plates are equally likely. Find the number of possible license plates that can be issued using this system.12,500 possible license plates1,188,137,600 possible license plates67,600,000 possible license plates39,917,124 possible license plates meteorologists use indices (such as convective available potential energy) to forecast where tornadoes may develop. from what product are these indices derived? Select from the drop-down to correctly complete the statement.Plant cells change the suns energy to chemical energy duringA. PhotosynthesisB. RespirationC. Traits What is the constant?1) The more time people spend using social media, the less they read books. Independent Variable: Time people spend using social mediaDependent Variable: The amount of books readIdentify 2 Constants: _______________________________________ Which disease or disorder occurs when blood sugar levels become too low? diabetes hypoglycemia hypothyroidism hyperthyroidism The next question refers to the dialogue that follows. The paragraphs have been numbered to help you identify them more easily.(1) Logan sighed as he sat on the couch. "I can't believe we're stuck at home on the Fourth of July!"(2) "I blame Dad," said Kerry. "He should have driven us to see fireworks instead of taking Mom to a movie."(3) "It's going to be pretty boring watching fireworks on television." said Logan.(4) "Oh, I've got better plans than that," laughed Kerry. "I've got four firecrackers and two model rockets. Care to join me in the backyard?"Which paragraph features dialogue that reveals information about the setting? (5 points) a. Paragraph 1 b. Paragraph 2 c. Paragraph 3 d. Paragraph 4(it's worth 30 points and I will give brainiest) Removing which ordered pair from the table would make the relation a function of x? Four study skills you have learned so far at school,that can prepare you for the world of work Which of the following actions would be most likely to decrease agency costs for the firm?1. Increase employees salaries to exceed the salaries paid by competitors2. Pay all employees based on the amount of revenue generated by the firm3. Prohibit employees from becoming shareholders of the firm4. Pay bonuses to employees only if profits increase from one year to the next5. Reward high performing employees with shares of stock After developing its mission, a firm next must perform a using a SWOT analysis that assesses both the intemal environment wath regard to its strengths and weaknesses (internal analysis) and the external environment in terms of its opportunives and threats (exteenal analysis). Multiple Choice a.Organizational analysis b.Situationat auditc.situasional analysis d.organizational review e.situational insight (I have two questions because I'm currently doing the quiz right now)What is the probability of rolling a six-sided die and landing on a four?( please show your work )what is the probability of flipping the dime and Landing with heads facing up?( please show your work ) draw a flowchart showing the general logic for totaling the values in an array What is another name for the germ theory of disease?A) Pathogenic theory of medicineB) Theory of microorganism infectionC) Theory of bacteria and virusesD) Infection theory Which of the following coordinates of points belong to the solution set of the inequality y A _____ is the statistic which gives the number of people who respond to a direct mailer. Return on investment Response rate Mailing list O is the center of the regular dodecagon below. Find its perimeter. Round to the nearest tenth if necessary. 16. Which punctuation rule is correct?A. If the adverb clause comes at the beginning of the sentence, set off the clause with acomma.B. Complex sentences whose adverb clauses come at the end of the sentence neverrequire a comma.C. Relative pronouns signal an adjective clause and are always set off with commas.D. If a clause begins with the relative pronoun that, writers must use the context, ormeaning, of the sentence to decide whether a comma should be used or not.17. Never use a comma before a clause beginning with the relative pronoun "that."A. TrueB. False18. When are commas needed to set off an adjective clause?A. When the clause begins with "which."B. If the clause provides unnecessary description for the reader to understand thesentence.C. Both situations require a comma.D. Neither situation requires a comma19. Which sentence is correctly punctuated?A. While sipping tea with the queen, Georgia burned her tongue and yelped.B. Georgia burned her tongue and yelped while sipping tea with the queen.C. Georgia, who was sipping tea with the queen, burned her tongue and yelped.D. The queen threw Georgia out of her palace, which had recently been cleaned of yelpingchildren.E. All the options are correct.F. All the options include a mistake. Please help me please Volume of Spheres\Volume of SpheresVolume of Spheres