You have the following code in your program.

from array import *
Which line of code would create an array?


E = array([3, 6, 10])

E = array('b',[3, 6, 10])

E.array('b',[3, 6, 10])

E = array('b',3, 6, 10)

Answers

Answer 1

Answer:

E = array('b',3, 6, 10)

Explanation:

in the lesson I saw an array created in this format arr = array('f',[1.5, 3.6, 23])

:)

Answer 2

The line of code that would create an array is  E = array('b',3, 6, 10). The correct option is d.

What is programming?

High-level programming languages interface with computers via translation, which entails translating program code into machine code. These languages are used to generate computer code or program code, which is a set of instructions that makes up a computer program that is executed by the computer.

A compiler or interpreter converts this source code into machine code, which the computer can then use to do its job. This is the sort of language used in computer programming that accepts human-readable input or commands from the programmer and then converts it to machine-readable code.

Therefore, the correct option is d, E = array('b',3, 6, 10).

To learn more about programming, refer to the link:

https://brainly.com/question/14461424

#SPJ2


Related Questions

Velma is graduating from Ashford at the end of next year. After she completes her final class, she will reward herself for her hard work with a week-long vacation in Hawaii. But she wants to begin saving money for her trip now. Which of the following is the most effective way for Velma to save money each month?

Answers

This question is incomplete because the options are missing; here are the options for this question:

Which of the following is the most effective way for Velma to save money each month?

A. Automatically reroute a portion of her paycheck to her savings account.

B. Manually deposit 10% of her paycheck in her savings account.

C. Pay all of her bills and then place the remaining money in her savings account.

D. Pay all of her bills and then place the remaining money in her piggy bank.

The correct answer to this question is A. Automatically reroute a portion of her paycheck to her savings account.

Explanation:

In this case, Velma needs to consistently save money for her vacation as this guarantees she will have the money for the trip. This means it is ideal every month she contributes consistently to her savings for the vacation.

This can be better be achieved by automatically rerouting a part of her paycheck for this purpose (Option A) because in this way, every month the money for the vacations will increase and the amount of money will be consistent, which means Velma will know beforehand the money she will have for the vacation. Moreover, options such as using a piggy bank or paying the bills and using the rest for her savings, do not guarantee she will contribute to the savings every month, or she will have the money she needs at the end.

Should one own a smart home device

What are some security issues that one can find bothersome with these types of devices?

Answers

Yes, one can have or should one own a smart home device

Some security issues that one can find bothersome with these types of devices are:

Privacy concernsVulnerabilities to hackingLack of updatesWhat are the  security issues?

Smart home tools offer usefulness and can help create growth easier, but they further create freedom risks that should be deliberate.

Some freedom issues so that find bothersome accompanying smart home tools contain:

Lastly, in terms of Privacy concerns: Smart home ploys may accumulate individual dossier, such as custom patterns and choices, that could be joint accompanying after second-party parties for point or direct at a goal buildup or added purposes.

Learn more about  security issues  from

https://brainly.com/question/29477357

#SPJ1

How to send and receive same bits with the SDR in simulink????????

Answers

Answer:

SI QUERÉS SALIMOS

Como te amo te adoro

by using the Communications Toolbox

Calculate the bit rate for the given baud rate and type of modulation.
a) 1000 baud, FSK
b)1000 baud,ASK
c)1000 baud, BPSK
d)1000 baud, 16-QAM

Answers

a) Bit rate for 1000 baud FSK is 2 * 1000 = 2000 bits per second.

b) Bit rate for 1000 baud ASK is 1 * 1000 = 1000 bits per second.

c) Bit rate for 1000 baud BPSK is 1 * 1000 = 1000 bits per second.

d) Bit rate for 1000 baud 16-QAM is 4 * 1000 = 4000 bits per second

How can one calculate the bit rate for baud rate for the modulation types FSK, ASK, BPSK, and 16-QAM?

The bit rate for a given baud rate and modulation type can be calculated as follows:

FSK: Bit rate = 2 * Baud rate

This is because in FSK, two different frequencies are used to represent the binary data (0 and 1), so for each baud, two bits of data can be transmitted.

ASK: Bit rate = 1 * Baud rate

This is because in ASK, only one frequency is used, and the amplitude of the carrier signal is changed to represent the binary data. For each baud, one bit of data can be transmitted.

BPSK: Bit rate = 1 * Baud rate

This is because in BPSK, only one frequency is used, and the phase of the carrier signal is changed to represent the binary data. For each baud, one bit of data can be transmitted.

16-QAM: Bit rate = 4 * Baud rate

This is because in 16-QAM, four bits of data can be encoded in each symbol period. For each baud, 4 bits of data can be transmitted.

Therefore, the correct answers are as given above.

learn more about modulation type: https://brainly.com/question/14674722

#SPJ1

If a process does not call exec after forking, A. the program specified in the parameter to exec will replace the entire process B. all the threads should be duplicated C. all the threads should not be duplicated D. none of above

Answers

Answer:

b) all the threads should be duplicated

Explanation:

The fork provides a process to start a new one, and the new process is not the same program. The exec system call com in play. Exec replaces the currently running process with information. The process is launching a new program firstly fork and create a new process. Exec load into memory. Fork copies of all attribute the new process except for memory. A clone system call implements the kernel fork. Forking provides the existing process. And the thread should be duplicated.

this method of file transfer distributes file transfers across many different computers.

Answers

Answer: Packet switching.

Explanation: The transfer of small pieces of data across various networks is known as packet switching. The faster and more effective transfer of data is made possible by these data chunks, or "packets." When a user transmits a file over a network, it is frequently transmitted in smaller data packets rather than as a single unit.

Write a program that will ask the user for a set of ten numbers. After all ten numbers have been entered, the program will display the largest and smallest numbers of the data set. The program will then prompt the user whether he/she would like to enter another set of data. When the user indicates he/she is finished entering data sets, the program will finally display the average largest number and the average smallest number for all sets entered.

Answers

Answer:

In Python:

nums = []

larg= []

small = []

while True:

   for i in range(10):

       num = int(input(": "))

       nums.append(num)

   print("Smallest: "+str(min(nums))); print("Largest: "+str(max(nums)))

   larg.append(max(nums))

   small.append(min(nums))

   another = int(input("Press 1 to for another sets: "))

   nums.clear()

   if not another == 1:

       break

   

print("Average Large: "+str(sum(larg)/len(larg)))

print("Average Small: "+str(sum(small)/len(small)))

Explanation:

This initializes the list of input numbers

nums = []

This initializes the list of largest number of each input set

larg= []

This initializes the list of smallest number of each input set

small = []

This loop is repeated until, it is exited by the user

while True:

The following iteration is repeated 10 times

   for i in range(10):

Prompt the user for input

       num = int(input(": "))

Add input to list

       nums.append(num)

Check and print the smallest using min; Check and print the largest using max;

   print("Smallest: "+str(min(nums))); print("Largest: "+str(max(nums)))

Append the largest to larg list

   larg.append(max(nums))

Append the smallest to small list

   small.append(min(nums))

Prompt the user to enter another set of inputs

   another = int(input("Press 1 to for another sets: "))

Clear the input list

   nums.clear()

If user inputs anything other than 1, the loop is exited

   if not another == 1:

       break

Calculate and print the average of the set of large numbers using sum and len    

print("Average Large: "+str(sum(larg)/len(larg)))

Calculate and print the average of the set of smallest numbers using sum and len

print("Average Small: "+str(sum(small)/len(small)))

The factorial of n is equal to ______.

Answers

Answer:

n! = n*(n-1)*(n-2)*(n-3)* ... *2*1

Explanation:

The factorial operator is simply a mathematical expression of the product of a stated integer and all integers below that number down to 1.  Consider these following examples:

4! = 4 * 3 * 2 * 1

4! = 12 * 2 * 1

4! = 24

6! = 6 * 5 * 4 * 3 * 2 * 1

6! = 30 * 4 * 3 * 2 * 1

6! = 120 * 3 * 2 * 1

6! = 360 * 2 * 1

6! = 720

So, the factorial of n would follow the same as such:

n! = n * (n-1) * (n-2) * ... * 2 * 1

Cheers.

Apply the Blue, Accent 1 fill color to the selected shape, is the filth option in the first row under Theme Cross, in power point

Answers

The theme cross row under the accent was fill

LaToya is creating a program that will teach young children to type. What keyword should be used to create a loop that will print “try again” until the correct letter is typed
a. print

b. random

c. else

d. while

Answers

Question:

LaToya is creating a program that will teach young children to type. What keyword should be used to create a loop that will print “try again” until the correct letter is typed

Answer:

d. while ✓

Explanation:

The while loop is used to repeat a section of code an unknown number of times until a specific condition is met.

\( \\ \\ \)

Hope it helps

-------☆゚.・。゚ᵴɒƙυᴚᴀ_ƨȶäᴎ❀

In Coral Code Language - A half-life is the amount of time it takes for a substance or entity to fall to half its original value. Caffeine has a half-life of about 6 hours in humans. Given the caffeine amount (in mg) as input, output the caffeine level after 6, 12, and 18 hours.

Ex: If the input is 100, the output is:

After 6 hours: 50.0 mg
After 12 hours: 25.0 mg
After 18 hours: 12.5 mg
Note: A cup of coffee has about 100 mg. A soda has about 40 mg. An "energy" drink (a misnomer) has between 100 mg and 200 mg.

Answers

To calculate the caffeine level after 6, 12, and 18 hours using the half-life of 6 hours, you can use the formula:

Caffeine level = Initial caffeine amount * (0.5 ^ (time elapsed / half-life))

Here's the Coral Code to calculate the caffeine level:

function calculateCaffeineLevel(initialCaffeineAmount) {

 const halfLife = 6; // Half-life of caffeine in hours

 const levelAfter6Hours = initialCaffeineAmount * Math.pow(0.5, 6 / halfLife);

 const levelAfter12Hours = initialCaffeineAmount * Math.pow(0.5, 12 / halfLife);

 const levelAfter18Hours = initialCaffeineAmount * Math.pow(0.5, 18/ halfLife);

 return {

   'After 6 hours': levelAfter6Hours.toFixed(1),

   'After 12 hours': levelAfter12Hours.toFixed(1),

   'After 18 hours': levelAfter18Hours.toFixed(1)

 };

}

// Example usage:

const initialCaffeineAmount = 100;

const caffeineLevels = calculateCaffeineLevel(initialCaffeineAmount);

console.log('After 6 hours:', caffeineLevels['After 6 hours'], 'mg');

console.log('After 12 hours:', caffeineLevels['After 12 hours'], 'mg');

console.log('After 18 hours:', caffeineLevels['After 18 hours'], 'mg');

When you run this code with an initial caffeine amount of 100 mg, it will output the caffeine levels after 6, 12, and 18 hours:

After 6 hours: 50.0 mg

After 12 hours: 25.0 mg

After 18 hours: 12.5 mg

You can replace the initialCaffeineAmount variable with any other value to calculate the caffeine levels for different initial amounts.

for similar questions on Coral Code Language.

https://brainly.com/question/31161819

#SPJ8

What tool should be used to remove fields and format data when importing?

A.)Power Query Editor

B.)Relationship builder

C.)3D Maps (Power Map)

Answers

Answer:

A.)Power Query Editor

Explanation:

Power Query editor is a Microsoft Office application, it can be utilized to remove fields and format data when importing files.

To remove fields, a user will click on the fields he wants to remove, then right-click to select Remove Columns on the menu, and under the same menu select Remove Columns from the sub-menu.

It is also used in formating data in the table created.

walk through the stair process as it would apply to a hypothetical software development cycle for a video game developer. explain what each stop would look like for such a project

Answers

The stair process, also known as the Software Development Life Cycle (SDLC), consists of several stages that guide the development of software projects.

Let's walk through the stair process as it would apply to a hypothetical software development cycle for a video game developer:

1. Requirement Gathering: In this stage, the game development team gathers requirements and specifications from stakeholders, including the target audience, game mechanics, graphics, and storyline.

2. Design: Based on the requirements, the team creates a detailed design plan. This includes the game's architecture, user interface, levels, characters, and assets.

3. Development: Developers start coding the game, implementing the design elements. This stage involves programming, creating game mechanics, integrating audio and visuals, and optimizing performance.

4. Testing: The game undergoes rigorous testing to identify bugs, glitches, and gameplay issues. Testers play the game, report any problems, and ensure it meets the desired quality standards.

5. Deployment: Once the game is stable and meets the necessary criteria, it is deployed for release. This involves packaging the game, creating installation files, and making it available for distribution

6. Maintenance: After release, the development team provides ongoing support, updates, and bug fixes to ensure the game remains playable and enjoyable for users. They may also address user feedback and implement improvements.

Throughout the entire process, documentation, project management, and collaboration are essential for tracking progress, managing resources, and ensuring effective communication among team members.

By following this stair process, video game developers can effectively plan, develop, test, deploy, and maintain their games, ensuring a systematic and structured approach to the development cycle.

For more questions on SDLC, click on:

https://brainly.com/question/15696694

#SPJ8

How does a Cloud-first strategy approach a client's migration to the Cloud?

Answers

Answer:

by focusing on a single discipline based on the client's greatest area need.

In Criminal justice, the type of evidence which contradicts a given theory is known as?​

Answers

Answer:

In general, scientific evidence are the results of scientific tests used to prove or disprove a theory or hypothesis. In criminal cases, scientific evidence is used to help jurors understand and determine the facts of a case. Explanation:

Which factor affects reading speed the most?
a.
The desire to improve speed
c.
The motivation to practice
b.
The willing to try new techniques
d.
These are all equal factors


Please select the best answer from the choices provided

A
B
C
D
Mark this and return

Answers

D of course because each one of them affects reading speed equally.

Answer:

D. these are all equal factors

Explanation:

i took the test lads

In devising a route to get water from a local lake to its central water storage tank, the city of Rocky Mount considered the various routes and capacities that might be taken between the lake and the storage tank. The city council members want to use a network model to determine if the city's pipe system has enough capacity to handle the demand.
1. They should use ____________.
A. Minimal Spanning Tree Method
B. Shortest Path Method
C. Maximal Flow Method
D. Any of the above will do

Answers

Answer:

C. Maximal Flow Method

Explanation:

When it comes to optimization theory, Maximal Flow Method or problems have to do with finding a possible or viable flow through a flow network that obtains the maximum potential flow rate. The maximum flow problem can be viewed as an exceptional case of more complex and complicated network flow problems, such as that of the circulation problem.

What is cyber security framework?

Answers

A organised method of managing and lowering cybersecurity risk is known as a cybersecurity framework It offers a set of standards, best practises and recommendations that businesses can use to evaluate

A framework is a methodical strategy or model that offers principles, recommended actions, and benchmarks for achieving a particular objective. A cybersecurity framework, in the context of management and mitigation of cybersecurity risks, is a set of rules and norms. No of the size or industry, it offers a common vocabulary and a methodical approach to cybersecurity that can be used by any organisation. An organization's assets, systems, and data are often protected from cyber attacks by a collection of controls, policies, and procedures that are typically included in cybersecurity frameworks. They support businesses in evaluating their cybersecurity posture, locating vulnerabilities, and putting policies in place to manage risks. In general, cybersecurity

Learn more about framework here:

https://brainly.com/question/29584238

#SPJ4

Which of the following is a fast and easy way to gather information about a company? (Choose all that apply.)
a. Conduct port scanning.
b. Perform a zone transfer of the company’s DNS server.
c. View the company’s Web site.
d. Look for company ads in phone directories.

Answers

The options that are a fast and easy way to gather information about a company are as follows View the company's website, Look for company ads in phone directories. Therefore the correct option is option C and D.

To acquire information about a company, conducting a zone transfer of the company’s DNS server and port scanning aren't the recommended techniques because they’re intrusive and can lead to security risks.

Both the website and the phone directory are easy to access, safe, and are often trustworthy sources of information. To gather the required information, one can quickly check out the company's website, where it is possible to find the required information that one needs, and also look for company ads in phone directories.

These two methods are fast and easy to access. One can also go through the company profile on various social media platforms for getting insights into the company's culture, employee reviews, and reviews from customers. Therefore the correct option is option C and D.

For such more question on directories:

https://brainly.com/question/29486744

#SPJ11

which one of the following statements accurately defines the thermal efficiency of a heat engine? multiple choice question. the net heat output divided by the work input the net heat output divided by the heat input the net work output divided by the work input the net work output divided by the heat input

Answers

The thermal efficiency of a heat engine is defined as the net work output divided by the heat input.

What is heat engine?

A heat engine is a device that uses thermal energy from a heat source to convert some of that energy into useful work. Heat engines are typically used in power plants, automotive engines, and other mechanical devices. Heat engines work by transferring heat from a hotter area to a cooler area, and then using the resulting temperature difference to create mechanical work. Heat engines are based on the principles of thermodynamics, which involve transferring heat to create a pressure differential that can be used to generate power. Heat engines are typically classified as either external combustion or internal combustion, depending on where the heat is generated.

This is calculated by dividing the net work output (the total work output minus any losses) by the total heat input. This tells us how much useful work is produced compared to the total heat input.

To learn more about heat engine
https://brainly.com/question/5181209
#SPJ4

10+2 is 12 but it said 13 im very confused can u please help mee

Answers

Mathematically, 10+2 is 12. So your answer is correct. However, if you are trying to write a code that adds 10 + 2, you may need to troubleshoot the code to find where the bug is.

What is troubleshooting?

Troubleshooting is described as the process through which programmers detect problems that arise inside a specific system. It exists at a higher level than debugging since it applies to many more aspects of the system.

As previously stated, debugging is a subset of troubleshooting. While debugging focuses on small, local instances that can be identified and fixed in a single session, troubleshooting is a holistic process that considers all of the components in a system, including team processes, and how they interact with one another.

Learn more about Math operations:
https://brainly.com/question/199119
#SPJ1

Thao tác trên mảng hai chiều với các yêu cầu sau đây: Khai báo mảng hai chiều; Nhập dữ liệu cho mảng hai chiều; Xuất theo dòng; Xuất theo cột; Nếu là ma trận vuông thì: Xuất đường chéo chính;Xuất đường chéo phụ

Answers

Answer:

THIS SERVER IS FOR THE PEOPLES WHO'S ON THE UNITED STATES ONLY . IF U WANT US TO ANSWER YOUR QUESTION TRANSLATE IT TO ENGLISH

HELPPPPPOOP
Jeremy wishes to create a site map for his website. What tag will surround the URL of his home page?
A.
B.
C.
D.

Answers

Answer:b

Explanation:

For the equation y = 5 + 6x, what does y equal when x is 4?
A.
29

B.
15

C.
19

D.
23

Answers

Answer:

y = 29

Explanation:

y = 5+6x

What is y when x = 4

Substitute x with 4 :

5 + 6(4)

5 + (6×4)

5 + 24

29

y = 29

Hope this helped and have a good day

Answer:

y=29

Explanation:

y=5+6x

y=5+6(4)

y=5+24

y=29

Question providede in the document please use my provided codes!!

Answers

Answer:

become successful in your Photo to the best of all time favorite

Read the following statement:

if(x > 5 and x < 10):

Which values of x make the if condition true? (5 points)

5, 6, 7, 8, 9
5, 6, 7, 8, 9, 10
6, 7, 8, 9
1, 2, 3, 4, 5, 6, 7, 8, 9

Answers

The values of x make the if condition true is 6, 7, 8, 9.

The statement "if(x > 5 and x < 10)" represents a conditional statement that checks if the value of x falls within the range of numbers greater than 5 and less than 10. To determine the values that make this condition true, we need to examine the range between 5 and 10, excluding the boundary values.

The condition explicitly states that x must be greater than 5 and less than 10. By satisfying both parts of the condition, the values of x that make the if condition true are 6, 7, 8, and 9.

These values meet the criteria of being greater than 5 and less than 10. It is important to note that the condition specifically excludes the values of 5 and 10. Therefore, they are not considered true for the given condition.

The values of x that make the if condition "x > 5 and x < 10" true are 6, 7, 8, and 9. Any values below 6 or equal to or greater than 10 do not satisfy both parts of the condition and  would not make the if statement true.

Correct option is 6, 7, 8, 9.

For more such questions on Condition

https://brainly.com/question/30848414

#SPJ11

Read the following code:

x = 1
(x < 26):
print(x)
x = x + 1

There is an error in the while loop. What should be fixed? (5 points)

Add quotation marks around the relational operator
Begin the statement with the proper keyword to start the loop
Change the parentheses around the test condition to quotation marks
Change the colon to a semicolon at the end of the statement

Answers

The given code snippet contains a syntax error in the while loop. To fix the error, the statement should be modified as follows:

x = 1

while x < 26:

print(x)

x = x + 1

The correction involves removing the parentheses around the test condition in the while loop. In Python, parentheses are not required for the condition in a while loop.

The condition itself is evaluated as a Boolean expression, and if it is true, the loop continues executing. By removing the unnecessary parentheses, the code becomes syntactically correct.

In Python, the while loop is used to repeatedly execute a block of code as long as a certain condition is true. The condition is evaluated before each iteration, and if it is true, the code inside the loop is executed. In this case, the code will print the value of the variable "x" and then increment it by 1 until "x" reaches the value of 26.

Therefore, the correct fix for the error in the while loop is to remove the parentheses around the test condition. This allows the code to execute as intended, repeatedly printing the value of "x" and incrementing it until it reaches 26.

For more questions on code

https://brainly.com/question/28338824

#SPJ11

what is data abstraction and data independence?​

Answers

Data abstraction and data independence are two key concepts in computer science and database management systems. They are closely related and aim to improve the efficiency, flexibility, and maintainability of data management.

What is data abstraction and data independence?

The definitions of these two are:

Data Abstraction:

Data abstraction refers to the process of hiding the implementation details of data and providing a simplified view or interface to interact with it. It allows users to focus on the essential aspects of data without being concerned about the underlying complexities. In programming languages, data abstraction is often achieved through the use of abstract data types (ADTs) or classes.

By abstracting data, programmers can create high-level representations of data entities, defining their properties and operations.

Data Independence:

Data independence refers to the ability to modify the data storage structures and organization without affecting the higher-level applications or programs that use the data. It allows for changes to be made to the database system without requiring corresponding modifications to the applications that rely on that data. Data independence provides flexibility, scalability, and ease of maintenance in database systems.

Learn more about data at:

https://brainly.com/question/179886

#SPJ1

Write a program that will ask the user to input how many numbers are in a list. A loop is used to load the list
beginning with number 1. The user is then asked to enter a number between 0 and the biggest number in the list.
The original list is displayed. A function is then called that accepts 2 arguments (the list and the number entered
by the user) and then displays all numbers from the original list that are larger than the number entered by the
user. (!!IMPORTANT: a main function MUST be used for this program – the main function MUST call the display
larger function, passing the list and input value as arguments to determine and display numbers larger than the
number input by the user)

Answers

The program that will ask the user to input how many numbers are in a list is given below.

How to explain the program

Lst is the original empty list

# number of elements as input

n = int(input("How many numbers will be added to original list : "))

# iterating till the range

for i in range(0, n):

   ele = int(input())

   lst.append(ele) # adding the element

n1 = int(input("Enter a number Between 0 and "+str(n)+":")) // enter smaller number elememts

print("The list number smaller than "+str(n1)+" are :")

print(lst[0:n1])  

Learn more about program on

https://brainly.com/question/26642771

#SPJ1

Which is heavier a CRT or LED?

Answers

CRT TV is huge heavy & bulky compared to LED TV's but more reliable as far as the Tube itself is concerned. LED TV's are light and also consume less current.

Other Questions
What is the best explanation for how simplified laboratory conditions can illuminate everyday life? Write the slope-intercept form of the equation that passes through the point (4,-6) and is parallel to the line y = -3/4x - 5 what main method did kohlberg use to evaluate moral reasoning? I need help plss Solve for b.a=b-9 when providing discharge teaching for a client with uric acid calculi, the nurse would include an instruction to avoid which type of diet? Paraphrase the 2 main reasons Macbeth fears Banquo in act 3 1.Fill in the code to complete the following method for checking whether a string is a palindrome.public static boolean isPalindrome(String s) {return isPalindrome(s, 0, s.length() - 1);}public static boolean isPalindrome(String s, int low, int high) {if (high Los nios no deben mirar televisin.oratoria The distance between the centers of Earth and the Moon is D. If the mass of the Earth is Me and the mass of the Moon is MM, which of the following is a correct expression for the magnitude of the acceleration of an object that is located halfway between the two bodies, a distance 1/2D from their centers? a.4G ( ME-MM)/D b.2G (ME-MM)/D^2 c.G (ME + MM)/D^2 d.2G (ME + MM)/D^2 e.4G (ME + MM)/D2 Write an equation of the line that passes through point P and is parallel to the line with the given equation:P(3,5); y=2x-6 9.) Which decimal is greater, 0.489 or 0.711? Compare these two decimals using the number if needed. 0.0 +++1.0 All of the following are assumptions that underlie Theory X management except:A. By their very nature, people do not like to work and will avoid it whenever possibleB. Workers have little ambition, try to avoid responsibility and like to be directedC. The primary need of employees is job securityD. The expenditure of physical and mental effort at work is as natural to people as resting Convert 27 inches to feet in dimensional analysis . Which two ratios represent quantities that are proportional A 9/5 and 19/10B 4/6 and 10/16C 15/10 and 21/14D 25/35 and 20/24 FIRST AWNSER GET BRAINLY Match the action with the correct role of the President. 1. May order troops into battle, makes foreign policy decisions with force when needed.2. Carry out the nations laws, name people to serve in various positions of the government.3. May propose new laws to Congress, makes speeches to build support for those goals they want to see move forward. 4. Is a symbol for the nation, builds goodwill with other countries. Options (match the letters to the numbers like c2) Immigration is a fact of life in the united states. this will lead to a big boost in the labor supply. what field would you rather be in? Someone help fast please Find the value of sin W rounded to the nearest hundredth, if necessary. Identify and explain one way that social hierarchies stayed the same in the period 1450-1750 que tipo de cursos se necesita para ser forense de criminalista? the shared communicative capabilities that include motor & neurological systems for sounds & movements that are able to communicate is called: