explain how communication is a basis of decision making and planning​

Answers

Answer 1

Basis of Decision-Making and Planning:

Communication is essential for decision-making and planning. It enables the management to secure information without which it may not be possible to take any decision. ... Without effective communication, it may not be possible to issue instructions to others.


Related Questions

Why would an administrator want to use the MAP Toolkit? Which tasks, other than the ones performed in this exercise, can administrators use the MAP TOOLKIT TO PERFORM?

Answers

Answer:

The MAP TOOLKIT is used to inventory the Microsoft computer devices in a network to check its readiness for upgrade and for mapping the utilisation of computer servers.

Explanation:

The Microsoft Assessment and Planning toolkit plays a vital role in the work of an IT administrator as it is automatic in inventory the users, devices and applications used in a computer network. It creates a mysql database as a default setup and is used to locate and upgrade servers in a network by analysing it's utilisation in the network.

what is the different between the simple statement and compound statement ?​

Answers

Answer:

Following is the difference between Simple and Compound statement; Simple statement (sentence) is one which has only one subject and one predicate. A Compound statement (sentence) is one which has two or more independent clauses consisting of their own subject and predicate.

Explanation:

hope it helps you

Mark as brainliest.

And follow for a follow back

create a program that calculates the areas of a circle, square, and triangle using user-defined functions in c language.​

Answers

A program is a set of instructions for a computer to follow. It can be written in a variety of languages, such as Java, Python, or C++. Programs are used to create software applications, websites, games, and more.

#include<stdio.h>

#include<math.h>

main(){

 int choice;

 printf("Enter

1 to find area of Triangle

2 for finding area of Square

3 for finding area of Circle

4 for finding area of Rectangle

 scanf("%d",&choice);

 switch(choice) {

    case 1: {

       int a,b,c;

       float s,area;

       printf("Enter sides of triangle

");

       scanf("%d%d %d",&a,&b,&c);

       s=(float)(a+b+c)/2;

       area=(float)(sqrt(s*(s-a)*(s-b)*(s-c)));

       printf("Area of Triangle is %f

",area);

       break;

     case 2: {

       float side,area;

       printf("Enter Sides of Square

       scanf("%f",&side);

       area=(float)side*side;

       printf("Area of Square is %f

",area);

       break;

   

 case 3: {

       float radius,area;

       printf("Enter Radius of Circle

");

       scanf("%f",&radius);

       area=(float)3.14159*radius*radius;

       printf("Area of Circle %f

",area);

       break;

    }

    case 4: {

       float len,breadth,area;

       printf("Enter Length and Breadth of Rectangle

");

       scanf("%f %f",&len,&breadth);

area=(float)len*breadth;

       printf("Area of Rectangle is %f

",area);

       break;

    }

    case 5: {

       float base,height,area;

       printf("Enter base and height of Parallelogram

");

       scanf("%f %f",&base,&height);

       area=(float)base*height;

       printf("Enter area of Parallelogram is %f

",area);

       break;

    }

    default: {

       printf("Invalid Choice

");

       break;

    }

 }

}

What do you mean by programming ?

The application of logic to enable certain computing activities and capabilities is known as programming. It can be found in one or more languages, each of which has a different programming paradigm, application, and domain. Applications are built using the syntax and semantics of programming languages. Programming thus involves familiarity with programming languages, application domains, and algorithms. Computers are operated by software and computer programs. Modern computers are little more than complex heat-generating devices without software. Your computer's operating system, browser, email, games, media player, and pretty much everything else are all powered by software.

To know more about ,programming visit

brainly.com/question/16936315

#SPJ1  

How do you create a function in C++

Answers

Answer:

1. Declaration: the return type, the name of the function, and parameters (if     any)

2. Definition: the body of the function (code to be executed)

Explanation:

You have searched a database to locate US cities with population counts above 1 million people. You need to present the results to the class. Which of these describes the process you should use to accomplish these tasks?

options

enter data into a form and present it to the class

present the table you used to search for cities with more than 1 million people

run a query and create a report from the datasheet

run a query and present the datasheet to the class

Answers

Answer:

Run a query and create a report from the datasheet.

Explanation: creating a report will give a easy to understand explanation of all the data you have collected.

Answer:

the answer is C

the next one is B

Explanation:

find the network adrres

find the network adrres
find the network adrres

Answers

Given the IP address 124.170.30.7 and subnet mask 255.255.252.0:

To find the network address, we perform a bitwise AND operation between the IP address and the subnet mask:

IP address:    01111100.10101010.00011110.00000111

Subnet mask:   11111111.11111111.11111100.00000000

Network addr:  01111100.10101010.00011100.00000000  (124.170.28.0)

To find the broadcast address, we need to flip all the host bits to 1:

Network addr:  01111100.10101010.00011100.00000000

Inverted mask: 00000000.00000000.00000011.11111111

Broadcast:     01111100.10101010.00011111.11111111  (124.170.31.255)

To find the number of host addresses, we count the number of bits in the host portion of the subnet mask (in this case, 10 bits). The number of hosts is 2^10 - 2, since the network and broadcast addresses are reserved.

The network IP address is the same as the network address.

To find the network address and broadcast address of the 29th subnet, we need to determine the subnet mask for the 29th subnet. Since we have a /22 subnet mask (255.255.252.0), each subnet has a block size of 4 (2^2). The 29th subnet would start at the address 124.170.116.0, which is 28 subnets (28 x 4 = 112) away from the first subnet (124.170.28.0):

Network addr:  01111100.10101010.01110100.00000000  (124.170.116.0)

Broadcast:     01111100.10101010.01110111.11111111  (124.170.119.255)

To find the IP address of the 650th host in the 29th subnet, we can start with the network address and add 650 to get the host address:

Network addr:  01111100.10101010.01110100.00000000  (124.170.116.0)

650th host:    01111100.10101010.01110100.01010010  (124.170.116.82)

To know m ore about IP address visit:

https://brainly.com/question/14291365

#SPJ1

You are designing a high availability solution for SQL databases that will be migrated to Azure.

You are evaluating whether you need to implement geo-replication or failover groups.

Which requirement will cause you to choose failover groups for high availability?

Select only one answer.

You need to host a database on an Azure SQL managed instances.

You need to have multiple readable copies of the database.

You need to be able to failover a database to a secondary region.

Answers

You need to be able to failover a database to a secondary region will cause you to choose failover groups for high availability. Hence option C is correct.

What is the SQL databases about?

Azure offers different options to achieve high availability for SQL databases. Geo-replication is a feature that allows you to replicate data across different Azure regions, providing a secondary copy of the data that can be used in case of a disaster.

Failover groups, on the other hand, allow you to group multiple databases together and configure automatic failover between them. This feature is particularly useful when you need to failover a database to a secondary region in case of an outage or a disaster.

Then, You need to host a database on an Azure SQL managed instances, You need to have multiple readable copies of the database, are not requirements that will cause you to choose failover groups for high availability.

Learn more about SQL databases from

https://brainly.com/question/29853852

#SPJ1

Type the correct answer in the box. Spell all words correctly.
Which testing requires coding the test cases into a scripting language?
testing requires coding the test cases into a scripting language.

Answers

Answer:

sorry I forgot it

Explanation:

because I am now in a last position

Which describes a market research report? Select all that apply.
A record of customer names
A summary of consumer buying behaviors
A projection of future consumer buying behaviors
An analysis of consumer interests

Which describes a market research report? Select all that apply. A record of customer names A summary

Answers

Answer:

A projection of consumer buying behaviors prediction comes in various ways. It can be through collecting information through primary or secondary research such as analyzing online actions, feedback analysis, focus groups, conversational marketing, and more.

Create a program that uses an array of Shape references to objects of each concrete class in the hierarchy (see program-2). The program should print a text description of the object to which each array element refers. Also, in the loop that processes all the shapes in the array, determine the size of each shape If it‟s a TwoDimensionalShape, display its area. If it‟s a ThreeDimensionalShape, display its area and volum ​

Answers

You got any social media would send you the rest. If you want it.
Create a program that uses an array of Shape references to objects of each concrete class in the hierarchy

The program uses an array for shape reference to objects of each concrete class given. The program is in text description in java language.

What is a program array?

Array programming in computer science refers to methods that allow operations to be applied to a whole set of values at once. This kind of solution is frequently used in scientific and engineering settings.

Shape.java

public abstract class Shape { private int sides;

public Shape() {

this.sides=0;

}

public Shape(int sides) { super(); this.sides = sides;

}

public int getSides() { return sides;

}

public void setSides (int sides) { this.sides = sides;

}

public abstract double calcArea();

Override

public String toString() {

return "This Shape has [sides=" + sides + "]";

Therefore, the program array is given above.

To learn more about program array, refer to the link:

https://brainly.com/question/13104121

#SPJ2

productivity is the combination of

Answers

Answer:

Productivity is the combination of efficiency and effectiveness.

Explanation:

Write the Python code for a program called MarathonTrain that asks a runner to enter their name, and the maximum running distance (in km) they were able to achieve per year, for 4 years of training. Display the average distance in the end. 4​

Answers

Your question has not been processed through Brainly. Please try again

Network ____ specify the way computers access a network. a. wires b. files c. standards d. instructions

Answers

Answer:

c. standards

Explanation:

Network standard specifies the way computers access a network. They are guided rules that must be taken into consideration for successful integration and interaction of technologies that use a wide variety of networks.

Another integral importance of network standard is that they ensure that individual usage of carried out without issues related to inconsistency.

Examples of Agencies governing the regulation of network standards are the International Telecommunication Union (ITU) and the Institute of Electrical and Electronics Engineers (IEEE)

g) Describe four features you expect to find on tablets and smartphones.​

g) Describe four features you expect to find on tablets and smartphones.

Answers

Four common features found on tablets and smartphones are:

Touchscreen Interface: Both tablets and smartphones typically have touchscreen displays that allow users to interact with the device by tapping, swiping, or pinching on the screen. Touchscreens enable intuitive navigation and control of applications, menus, and content.Wireless Connectivity: Tablets and smartphones are equipped with wireless connectivity options such as Wi-Fi and Bluetooth. Wi-Fi allows for internet access and data transfer over wireless networks, while Bluetooth enables wireless communication with other compatible devices, such as headphones, speakers, or smartwatches.Cameras: Most tablets and smartphones are equipped with built-in cameras, both front-facing and rear-facing. Cameras enable users to capture photos and videos, make video calls, and scan QR codes or barcodes. The quality and capabilities of the cameras may vary depending on the device's specifications.Mobile Applications (Apps): Tablets and smartphones support the installation and use of mobile applications, commonly referred to as apps. These apps provide a wide range of functionality, including productivity tools, social media platforms, entertainment content, gaming, navigation.

It's important to note that the features mentioned above are not exhaustive, and tablets and smartphones may include many additional features such as biometric authentication.

for similar questions on smartphones.​

https://brainly.com/question/31692112

#SPJ8

The automation paradox states: “The more automated machines are, the less we rely on our own skills.” But instead of relying less on automation to improve our skills, we rely even more on automation.” Elaborate further on the skills we would lose as automation is implemented.

Answers

The skills we would lose as automation is implemented are:

Communication Skills. Social Skills. Critical ThinkingThe use of Imagination and Reflection.

What takes place if automation takes over?

The Automation can lead to lost of jobs, as well as reduction in wages.

Note that Workers who are able to  work with machines are said to be the ones that will be more productive than those who cannot use them.

Note that  automation tends to lower both the costs as well as the prices of goods and services, and thus they makes consumers to be able to feel richer as well as loss of some skills for workers.

Therefore, The skills we would lose as automation is implemented are:

Communication Skills. Social Skills. Critical ThinkingThe use of Imagination and Reflection.

Learn more about automation from

https://brainly.com/question/11211656

#SPJ1

Answer: Automation will elimate problem solving skills and communication skills.

Explanation: With the inability to solve problems we lose the skill of using our imaginationa and allowing our brain cells to grow. When you figure out and solve a problem your brain gains more knowledge and you are exercising your brain cells, if you don't use them you will lose them and your inability to make decisions well because there is now AI doing it for you. Also communication one being writing if we no longer have to write with pen and paper we lose the ability to communicate properly in writing our grammer becomes poor and handwriting will no longer be a skill because you never use it.

Can someone shows me an example of recursive descent parser and recursive descent parser tests ?

Answers

Answer:

Parser is type of program that can determine that whether the start symbol can derive the program or not. Parser done carefully then parser is right otherwise it is wrong.

Explanation:

Recursive descent Parser example: It is also called the top down parser. In this parser, the symbol can be expand for whole program.

The recursive Descent and LL parser are called the top down parser.

Example:

E->E+T / T

T-T*F / F

F-> (E) / id

S -cAd

A- ab/a Input string is w= cad

What is cybersecurity? Cybersecurity refers to the protection of hardware?

What is cybersecurity? Cybersecurity refers to the protection of hardware?

Answers

Cybersecurity is the practice of safeguarding computer systems, networks, and mathematical data from unauthorized approach, theft, damage, or additional malicious attacks.

What is cybersecurity?

It involves the use of differing technologies, processes, and practices to secure digital maneuvers, networks, and data from a wide range of dangers, including cybercrime, cyber-spying, cyber-terrorism, and different forms of malicious endeavor.

While cybersecurity does involve protecting fittings, it also involves looking after software, networks, and digital dossier. In addition to protecting against external warnings, etc.

Learn more about cybersecurity from

https://brainly.com/question/28004913

#SPJ1

Microsoft
Comments are added through the ____________________________ tab on the ribbon. [Add Comments]
Question 1 options:

Home

Help

Review

View

Answers

I believe it’s review

Comments are added through the review tab on the ribbon. The correct option is c.

What are tabs and ribbons in Microsoft?

The animation tab in the PowerPoint ribbon is distinct from other office suites like word, excel, outlook, publisher, etc. Since animation can use in PowerPoint to make your presentations animated, you can manage all of your animation settings in the animation tab.

Many of your most important functions in Microsoft Word are available on the ribbon, allowing you to do them without accessing any menus. To improve efficiency, you can modify this ribbon as you see fit.

A new screen containing options for opening, saving, printing, sharing, and dismissing a file is displayed when you click the File tab. Groups of commands are displayed above the currently open document on the other Ribbon tabs.

Therefore, the correct option is c, Review.

To learn more about tabs and ribbons, refer to the link:

https://brainly.com/question/10015755

#SPJ2

Special icons on compute







Answers

Explanation:

by default windows 11 doesn't display any special icons such as the pc or recycle bin on your desktop. If you'd like a classic windows look ,you can enable special desktop icons easily. Here's how to do it , first right click an empty spot on the desktop and select personalize in the menu that appears

What statement best describes primary keys?

A. Primary keys cannot have duplicate values.

B. There can be two primary keys in a table.

C. Primary keys can be blank.

D. Primary keys are also known as foreign keys.

Answers

Answer:

B. There can be two primary keys in a table.

If cell A2 contains "Today is Monday," the result of the function =LEN(A2) would be __________. Fill in the blank space.

Excel Quiz.​

Answers

If cell A2 includes the phrase "Today is Monday," the result of the function =LEN(A2) would be 15, which is the number of characters in the cell.

How can I figure out how many characters there are in Excel?

Type =LEN(cell) in the formula bar and hit Enter to invoke the function. In many instances, cell refers to the cell that you want to count, like B1. Enter the formula, then copy and paste it into further cells to count the characters in each cell.

What does Len have to offer?

A number is returned by LEN after it counts the characters in the text, including spaces and punctuation. LEN is set to zero if text is an empty string ("") or a reference to an empty cell.

To know more about cell visit:-

https://brainly.com/question/8029562

#SPJ1

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn−1 + Fn−2 for n > 1.
In other words, each number is the sum of the two previous numbers in the sequence. Thus the first several Fibonacci numbers are 1, 1, 2, 3, 5, and 8. Interestingly, certain population growth rates are characterized by the Fibonacci numbers. If a population has no deaths, then the series gives the size of the poulation after each time period.
Assume that a population of green crud grows at a rate described by the Fibonacci numbers and has a time period of 5 days. Hence, if a green crud population starts out as 10 pounds of crud, then after 5 days, there is still 10 pounds of crud; in 10 days, there is 20 pounds of crud; in 15 days, 30 pounds of crud; in 20 days, 50 pounds of crud, and so on.

Write a program that takes both the initial size of a green crud population (in pounds) and some number of days as input from the keyboard, and computes from that information the size of the population (in pounds) after the specified number of days. Assume that the population size is the same for four days and then increases every fifth day. The program must allow the user to repeat this calculation as long as desired.
Please note that zero is a valid number of days for the crud to grow in which case it would remain at its initial value.
You should make good use of functions to make your code easy to read. Please use at least one user-defined function (besides the clearKeyboardBuffer function) to write your program.

basically I've done all the steps required except the equation in how to get the final population after a certain period of time (days). if someone would help me with this, I'll really appreciate it.

Answers

In Python, it can be expressed as follows. Using the recursive function type, we find the sum of the previous term and the sum of the two previous terms.

Python:

x=int(input("Initial size: "))

y=int(input("Enter days: "))

mod=int(y/5)-1

def calc(n):

   gen_term = [x,2*x]

   for i in range(2, n+1):

       gen_term.append(gen_term[i-1] + gen_term[i-2])

   return gen_term[n]

if(mod==0):

   print("After",y,"days, the population is",x)

else:

   print("After",y,"days, the population is",calc(mod))

The nth Fibonacci number Fn is defined as follows: F0 = 1, F1 = 1 and Fn = Fn1 + Fn2 for n &gt; 1.In

give one major environmental and
one energy problem kenya faces as far as computer installations are concerned?​

Answers

One considerable predicament that Kenya encounters pertaining to the utilization of computers is managing electronic waste (e-waste).

Why is this a problem?

The mounting number of electronic devices and machines emphasizes upon responsibly discarding outdated or defective hardware in order to avoid environmental degradation.

E-waste harbors hazardous materials such as lead, mercury, and cadmium which can pollute soil and water resources, thereby risking human health and ecosystem sustainability.

Consequently, a significant energy drawback with computer use within Kenya pertains to the insufficiency or instability of electrical power supply.

Read more about computer installations here:

https://brainly.com/question/11430725

#SPJ1

The models below represent nuclear reactions. The atoms on the left of the equal sign are present before the reaction, and the atoms on the right of the equal sign are produced after the reaction.

Model 1: Atom 1 + Atom 2 = Atom 3 + energy
Model 2: Atom 4 = Atom 5 + Atom 6 + energy

Which of these statements is most likely correct about the two models?

Both models show reactions which produce energy in the sun.
Both models show reactions which use up energy in the sun.
Model 1 shows reactions in the nuclear power plants and Model 2 shows reactions in the sun.
Model 1 shows reactions in the sun and Model 2 shows reactions in a nuclear power plant.

Answers

The statements which is most likely correct about the two models are Both models show reactions which produce energy in the sun. Thus, option A is correct. Thus, option A is correct.

The basic fusion reaction through which the sun produces energy is when two isotopes of hydrogen, deuterium and tritium, atoms undergoes fusion reaction resulting to an helium atom, an extra neutron and energy.  In this reaction, some mass are being transformed into energy.

Model 1 shows reactions in the nuclear power plants and Model 2 shows reactions in the sun.

Learn more about energy on:

https://brainly.com/question/1932868

#SPJ1

write c++ program to find maximum number for three variables using statement ?

please help me..​

write c++ program to find maximum number for three variables using statement ?please help me..

Answers

The variable 10 ~ 810 would equal off to 10 leaving 40 left over..

Answer:

int a, b, c;

cin >> a >> b >> c;

max = (a>b) ?

          (a > c ? a : c) :

          (b > c ? b : c);

cout << max;

2. Part of a pie chart that represents one value from the series.
a. axis
b. data
c. slice
d. chart​

Answers

......................

A. Axis

Write a function that takes two integer lists (not necessarily sorted) and returns true precisely when the first list is a sublist of the second.
The first list may appear anywhere within the second, but its elements must appear contiguously.
HINT: You should define and test a helper function that you can use in sublist.

Answers

Answer:

The function written in Python is as follows:

def checksublist(lista,listb):

     if(all(elem in lista for elem in listb)):

           print("The first list is a sub list of the second list.")  

     else:

           print("The first list is not a sub list of the second list.")

Explanation:

This line defines the function

def checksublist(lista,listb):

The following if condition checks if list1 is a subset of list2

     if(all(elem in lista for elem in listb)):

           print("The first list is a sub list of the second list.")  

The following else statement is executed if the above if statement is not true

     else:

           print("The first list is not a sub list of the second list.")

The function that takes two integer lists (not necessarily sorted) and returns true precisely when the first list is a sub list of the second is as follows:

def check_sublist(x, y):

  if(set(x).issubset(set(y))):

     return "The first list is a sublist of the second"

  else:

     return "The first list is not a sublist of the second"

print(check_sublist([2, 3, 5], [1, 2, 3, 4, 5, 6, 7]))

The code is written is python.

Code explanation:A function is declared called check_sublist. The function accept two parameters namely x and y.if the parameter x is a subset of y then the it will return  "The first list is a sublist of the second"Else it will return  "The first list is not a sublist of the second"Finally, we use the print statement to call our function with the required parameter.

learn more on python code here; https://brainly.com/question/25797503?referrer=searchResults

Write a function that takes two integer lists (not necessarily sorted) and returns true precisely when

Write a program that asks for the weight of a package and the distance it is to be shipped. This information should be passed to a calculateCharge function that computes and returns the shipping charge to be displayed . The main function should loop to handle multiple packages until a weight of 0 is entered.

Answers

Answer:

#include <iostream>

#include <iomanip>

using namespace std;

int main()

{

   const int WEIGHT_MIN   =    0,

             WEIGHT_MAX   =   20,

             DISTANCE_MIN =   10,

             DISTANCE_MAX = 3000;

   float package_weight,

         distance,

         total_charges;

   cout << "\nWhat is the weight (kg) of the package? ";

   cin >> package_weight;

   if (package_weight <= WEIGHT_MIN ||

       package_weight > WEIGHT_MAX)

   {

       cout << "\nWe're sorry, package weight must be\n"

            << " more than 0kg and less than 20kg.\n"

            << "Rerun the program and try again.\n"

            << endl;

   }

   else

   {

       cout << "\nDistance? ";

       cin >> distance;

       if (distance < DISTANCE_MIN ||

           distance > DISTANCE_MAX)

       {

           cout << "\nWe're sorry, the distance must be\n"       << "within 10 and 3000 miles.\n"

                << "Rerun the program and try again.\n"

                << endl;

       }

       else

       {

            if (package_weight <= 2)

               total_charges = (distance / 500) * 1.10;

           else if (package_weight > 2 &&

                   package_weight <= 6)

               total_charges = (distance / 500) * 2.20;

           else if (package_weight > 6 &&

                   package_weight <= 10)

               total_charges = (distance / 500) * 3.70;

           else if (package_weight > 10 &&

                   package_weight <= 20)

               total_charges = (distance / 500) * 4.80;

           cout << setprecision(2) << fixed

               << "Total charges are $"

               << total_charges

               << "\nFor a distance of "

               << distance

               << " miles\nand a total weight of "

               << package_weight

               << "kg.\n"

               << endl;

       }

   }

Explanation:

Drag each tile to the correct box. Match each decimal number to an equivalent number in a different number system. 6910 22810 4210 2710​

Drag each tile to the correct box. Match each decimal number to an equivalent number in a different number

Answers

Explanation:

you can do that with calculator only

Drag each tile to the correct box. Match each decimal number to an equivalent number in a different number

Write a loop to print 56 to 70 inclusive (this means it should include both the 56 and 70). The output should all be written out on the same line.

Sample run:
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70

Answers

In python:

for i in range(56, 71):

   print(i, end=" ")

Answer:

for n in range(56,71):

   print(n, end=" ")

Explanation:

Other Questions
I need help guys please When inspecting containers, what tool is used to determine weld serviceability and the severity of corrosion? Sara wants to make a scale drawing of her bedroom. Her bedroom is a rectangle withlength 6 m and width 2 m. She decides on a scale of 1 to 50.Sara"s bedroom door is 0.8 m wide. How wide should the door be on the scale drawing? if an atom has 17 protons and 18 neutrons, what is the charge of the atom's nucleus? What factors helped drive the growth of slavery in the United States? Use the Log Rule to find the indefinite integral. (Use C for the constant of integration. Remember to use absolute values where appropriate.)55x7dx The coordinates of 3 of the vertices of a parallelogram are (-3, 4), (-2, 1), and (2, 6). What is the equation for theline containing the side opposite the side containing the first two vertices? (Remember, opposite sides of aparallelogram are parallel.) Does anyone know where Catherine the Great lived while she ruled Russia? which year was the national ffa organization founded? How have cell lineages derived from the Neural Crest contributedto the anatomical variations seen in many vertebrates? how do the villages and farmers depend on each other solve for x. 2/2+x=1/x+5 Liz earns a salary of $2,300 per month, plus a commission of 3% of her sales. She wants to earn at least $2,500 this month. Enter an inequality to find amounts of sales that will meet her goal. Identify what your variable represents. Enter the commission rate as a decimal. true or false Physical and social mobility is limited in the rural areas. El mes pasado yo ___ ___________ (organizar) el festival de comida guatemalteca en mi escuela. Yo ______________ (buscar) en el Internet toda la informacin necesaria sobre la gastronoma de Guatemala. Yo ______________ (clasificar) los diversos platos tpicos en entradas, platos fuertes y postres. Todo tena que salir perfecto as que me esforc mucho en la decoracin del lugar y la propaganda del evento. El da del festival ______________ (comenzar) mi da muy temprano por la maana y ______________ (llegar) a la escuela a la 8 de la maana. Estuve todo el tiempo muy ocupado. El evento sali de maravilla. Yo ______________ (almorzar) deliciosos platos tpicos guatemaltecos con mis profesores y amigos. Given the function {eq}f(x)= e^{2x}(x^2-2) {/eq}a. does the decreasing arc reach a local or global minimum?b. does f have a global maximum? 13. What were the three big trading ports in Eastern Africa?Kilwa, Zimbabwe, MogadishuMali, Ghana, SonghaiKilwa, Songhai, MaliMogadishu, Kilwa, Mombasa (1 point) Find the second-degree Taylor polynomial for f(x) = 2x - 8x +7 about x = 0. P(x) = 2x What do you notice about your polynomial? In order to assist your ALS partner with acquiring a 12-lead ECG tracing, what must be present first and foremost?Select one:a. An adult male or female patient with chest painb. A patient who is not suffering from thoracic traumac. Medical direction protocol that allows the EMT to assist the ALS provider with this skilld. Isopropyl alcohol to help dry the skin if the patient is diaphoretic DESCRIBE WHY MANY AMERICANS IN THE NORTH OPPOSED SLAVERY WHILE MOST SOUTHERNERS SUPPORTED SLAVERY... HOW DID THIS DIVIDE LEAD TO CONFLICT....?