Team leaders do NOT choose which of the following?

Team members

Team facilitators

Team meetings

Team skills

Answers

Answer 1

Answer:

Team skills

Explanation:

Answer 2

The team leaders in a particular team do not choose D. Team skills.

A team leader refers to a person that is charged with the responsibility of providing instructions, guidance, leadership, and direction to a team in order to achieve a particular goal.

A team leader chooses the members of a team. The team leader chooses the people that he or she believes will help the team to achieve their goals.

Also, the team leader chooses the team facilitators and team meetings. The team leader selects the appropriate time that the team members will be available. This is done to ensure that every member of a team is available.

It should be noted that the team leader doesn't choose the team skills. Every member of a team has different skills and everyone is unique in their own way.

In conclusion, the team leader doesn't choose the team skills.

Read related link on:

https://brainly.com/question/24813191


Related Questions

Cilculate MotAinbit's retum on assets (ROM). (Round your percertage answer to two decimal places ) A. 495% B. 99% C. 825 D. 125%

Answers

The return on assets (ROA) for MotAinbit is 125%. This indicates that for every dollar of assets the company possesses, it generates a return of 125 cents. The ROA of 125% suggests that MotAinbit is utilizing its assets fairly well to generate profits.

To calculate the return on assets (ROA), we divide the company's net income by its total assets and multiply the result by 100 to express it as a percentage. Let's assume that MotAinbit's net income is $500,000 and its total assets are $400,000.
ROA = (Net Income / Total Assets) * 100
ROA = ($500,000 / $400,000) * 100
ROA = 1.25 * 100
ROA = 125%
Therefore, MotAinbit's return on assets (ROA) is 125%. This means that for every dollar of assets the company possesses, it generates a return of 125 cents. It suggests that MotAinbit is utilizing its assets effectively to generate profits, which is a positive indicator of the company's operational efficiency and profitability.

learn more about return on assets here

https://brainly.com/question/31080458



#SPJ11

which factors contribute to the overall service time of a mechanical disk?

Answers

Several factors contribute to the overall service time of a mechanical disk (also known as a hard disk drive or HDD).

These factors include:

Seek Time: Seek time is the time it takes for the disk's read/write head to move to the desired track on the disk. It depends on the distance the head needs to travel and the speed of the actuator arm. Lower seek time leads to faster access to data.

Rotational Latency: Rotational latency is the time it takes for the desired sector to rotate under the read/write head once the head is positioned on the correct track. It depends on the rotational speed of the disk, typically measured in revolutions per minute (RPM). Lower rotational latency allows faster data retrieval.

Transfer Rate: The transfer rate refers to the speed at which data can be read from or written to the disk. It is influenced by the density of data on the disk, the recording method (e.g., magnetic or shingled recording), and the disk's interface (e.g., SATA or SCSI). Higher transfer rates enable faster data transfer.

Disk Fragmentation: Disk fragmentation occurs when files are stored in non-contiguous blocks on the disk. Fragmented files require more seek and rotational latency to retrieve, leading to longer service times. Regular disk defragmentation can help mitigate this issue.

Disk Health and Performance: The overall health and performance of the disk, including factors like disk errors, bad sectors, and mechanical issues, can impact the service time. A well-maintained and healthy disk tends to perform better.

Workload and Access Patterns: The workload and access patterns on the disk, such as the number of simultaneous requests and the types of operations (e.g., sequential or random), can affect the overall service time. High workloads and random access patterns can result in longer service times due to increased seek and rotational latency.

It's important to note that with the advent of solid-state drives (SSDs), many of these factors are significantly mitigated or eliminated, as SSDs do not have moving parts and have much faster access times and data transfer rates compared to mechanical disks.

To learn more about mechanical disk

https://brainly.com/question/32068275

#SPJ11

DRIVERS ED. PLS HELP

DRIVERS ED. PLS HELP

Answers

Answer:

A) He is in the fast lane / the passing lane. You are not to go under the speed limit in this lane.

B) Other drivers slow down, become indecisive and get distracted.

The _____ command in Terminal changes between directories.
a) profiles
b) man
c) ls
d) cd

Answers

The "cd" command in Terminal changes between directories. The "cd" command is used in Terminal, which is a command-line interface in Unix-based operating systems, to change between directories. "cd" stands for "change directory," and it is a fundamental command used to navigate the file system hierarchy by moving from one directory to another.

For example, to navigate to a directory called "Documents" located in the current directory, the command would be:

bash

cd Documents

To navigate to the parent directory of the current directory, the command would be:

bash

cd

To navigate to the home directory of the current user, the command would be:

bash

cd ~

The "cd" command is an essential tool for managing and navigating directories in a command-line environment, allowing users to move around the file system, access different directories, and perform various tasks related to file and directory management.

learn more about  "cd" command here:

https://brainly.com/question/30749421

#SPJ11

Hi everyone! I was wondering if any of you want to help me with a computer science problem I have for one of my classes. I do not understand how to do it which is why I ask.

Here is the problem: Write an algorithm for placing a set of pencils in order from largest to smallest (left to right).

I learned other sorting algorithms but I don't quite understand how to implement them into my own algorithm.

Thanks.

Answers

Answer:

Use bubble sorting

Here is an example program I made:

for(int i = 0; i < length; i++){

     for(int j = 0; j < length; j++){

       if(j != length - 1){

         if(input[j] > input[j + 1]){

          storeVar = input[j];

         

          input[j] = input[j+1]; //storeVar2;

         

          input[j+1] = storeVar;

         }

       }

     }

Write a program in python using a WHILE loop to output this sequence of numbers (1, 2, 4, 7, 11, 16, 22 ... ) all the way up to 100. If the number can be divided by 3, output, 'Got one!'. The sequence of numbers has a value that goes up by 1 each time you output a new number.​

Answers

Answer:

num = 1

i = 1

while (num <= 100):

   print (num)

   num += i

   i += 1  

   if num % 3 == 0:

       print ("Got one!")

*** Sample Input ***

*** Sample Output ***

1

2

4

7

11

16

22

29

37

46

56

67

79

92

Explanation:

For this problem, we will simply devise the algorithm necessary to create the desired number sequence, and then program the output using a while loop.

First, let's find the pattern that creates this sequence.

The first term is 1.  The second term is 2.  The third term is 4.  The fourth term is 7.  The fifth term is 11.

We can observe to get from the first to the second, we add 1.

We can observe to get from the second to the third, we add 2.

We can observe to get from the third to the fourth, we add 3.

We can observe to get from the fourth to the fifth, we add 4.

Notice, that as we move forward in the terms of the sequence, the gap between values is increasing by 1.  This means, that as our index increase, we should add that value to the previous term to get the new term at the next index.  For example, to get from 1 to 2, the index at 1 is 0 and the index at 2 is 1.  Hence, to get from 1 to 2, we simply will add the value from index 1, to the desired index.  Therefore, we will get 1 + 1 = 2.

With this in mind, let's build this in code and explain the purpose of each line (Note there are more efficient ways to accomplish this, but these lines are used for simplicity of explanation).

Line (1)  num = 1

Here we are initializing the value of our number in the sequence.  In this case, this is our first value of the sequence, 1.

Line (2) i = 1

Here we are initializing the value of our index in the sequence.  In this case, we are ignoring the initial index 0, and starting with index 1.  This is because of our observation that the base case to get from 1 to 2, is a shift to index 1.

Line (3) while (num <= 100):

Here we create the while loop to check for the condition if our num in the sequence is less than 100.  If it is true, then the while loop executes.  If it is not, then the while loop exits.

Line (4) print (num)

Here we print out the number in the sequence.  On the first iteration of our loop, our algorithm hasn't been applied yet so we will simply print out the initialized value 1, which is also the zero index, or the first value in our sequence.

Line (5) num += i

Here we are applying our algorithm to add the index of the next term in the sequence to the existing value of the number we have from the previous index to get the value at the current index.  Hence our base case, 1 + 1 = 2.

Line (6) i += 1

Here we are simply moving our index pointer to the right in the sequence.  This allows us to be ready for the next iteration of our algorithm.

Line (7) if num % 3 == 0:

Here we are checking to see if our number at the current index is divisible by 3.  This is accomplished using the modulo operator, %.

Line (8) print ("Got one!")

Here we are printing to the console the string "Got one!" if the value at our current index is indeed divisible by 3.

I hope that this helps you understand the process by which to accomplish the problem that has been asked.

Cheers.

Which example of it lifelong learning is most likely to lead to a promotion?
a. a supervisor learns about personal finance.
b. a developer learns a new programming language.
c. a database manager learns a foreign language.
d. a technician learns music history.

Answers

answer

the correct answer is b. a developer learns a new programming language

reason:

this is because learning a new programming language can enhance a developer's skills and make them more valuable to their company. It can also open up new job opportunities within the company and increase the likelihood of being considered for a promotion. while learning about personal finance, foreign languages, or music history can be beneficial, they may not be directly related to the skills and knowledge needed for career advancement in the field of technology.

Why is cyber security an important part of sending information using digital signals

Answers

Cyber security is an important part of sending information using digital signals. Because it keeps data safe while stored in the cloud and when they are transmitted. Option D is correct.

What are cybersecurity functions?

Analysts in cybersecurity defend an organization's hardware and network infrastructure against hackers and cybercriminals looking to harm them or steal confidential data.

When conveying information via digital signals, cyber security is a crucial component. because it protects data as it is sent and stored in the cloud.

Hence, option D is correct.

To learn more about cybersecurity  refer;

https://brainly.com/question/27560386

#SPJ1

Why is cyber security an important part of sending information using digital signals

Which of the following should occur after changes are made to a publication?

Printing the publication

Deleting whitespace

Saving the file

Removing unneeded files

Answers

Answer:

Saving the file.

Explanation:

Whenever a certain work is carried out in a computer system, it is advisable to protect said work so that, in the event of any eventuality or computer problem, it is not lost. Thus, it is recommended at all times to save the modifications made with respect to each job, so that they remain permanently attached to the initial job.

A video clip is normally saved in mp3 format.
True or false

Answers

Answer: False

Explanation: Mp3 is only used for music whereas Videos are saved in a format knows as Mp4.

Answer:

False  :)

Explanation:

in sql server and microsoft access, to add a specific number of months to a date, use the ____ function.

Answers

In both SQL Server and Microsoft Access, to add a specific number of months to a date, use the DATEADD function.

Microsoft developed the relational database management system known as Microsoft SQL Server. It is a piece of software known as a database server that stores and retrieves data in response to requests from other software applications. These applications can run on the same computer or on another computer in a network.

Microsoft SQL Server is a social information base administration framework. As an information base server that stores and recovers information as mentioned by other programming applications on a similar PC or a far off PC utilizing the client-server model. As a web service, SQL Server can be accessed via Microsoft's APIs.

Know more about SQL server, here:

https://brainly.com/question/30389939

#SPJ11

Microsoft calls a drive structure created with a dynamic disk a . A. drive. B. partition. C. volume. D. sector. C. volume.

Answers

Microsoft calls a drive structure created with a dynamic disk a volume.

In Microsoft Windows operating systems, dynamic disks provide advanced features and flexibility compared to basic disks. With dynamic disks, you can create different types of volumes that span multiple disks or provide fault tolerance through redundancy.

A volume, in the context of dynamic disks, refers to a logical storage unit that can be created on a dynamic disk. It can consist of a single disk or span across multiple disks. Volumes can be of different types, such as simple volumes, spanned volumes, striped volumes, mirrored volumes, or RAID-5 volumes, depending on the specific configuration and requirements.

Each volume is assigned a drive letter or a mount point and can be formatted with a file system (such as NTFS) to store data. Volumes offer more flexibility and capabilities than traditional partitions found on basic disks, allowing for dynamic resizing, expansion, and other advanced features.

Therefore, in the context of dynamic disks in Windows, the correct answer is volume.

To learn more about Microsoft

https://brainly.com/question/30236893

#SPJ11

Question 17/20
The process for maturing an idea towards patentability is called:
Select the correct option(s) and click submit.
Freedom to Operate
MCD
Trademarking
CIM
Submit

Answers

The process for maturing an idea towards patentability is called: CIM.

An intellectual property can be defined as an intangible and innovative creation of the mind that is solely dependent on human intellect (intelligence).

Hence, an intellectual property is an intangible creation of the human mind, ideas, thoughts or intelligence.

Globally, there are three (3) main ways to protect an idea or intellectual property and these include:

Trademarks.Copyright.Patents.

A patent can be defined as the exclusive (sole) right granted to an inventor by a sovereign authority such as a government, which enables him or her to manufacture, use, or sell an invention (idea) for a specific period of time.

Generally, patents are used on an idea or innovation for products that are manufactured through the application of various technologies.

CIM is an acronym for collaborative invention mining and it can be defined as the process for maturing an idea towards patentability, especially through collaborative interaction..

Thus, the objective of collaborative invention mining (CIM) is to collectively strengthen, mature and develop an idea to become a tangible product that proffers a solution to a problem, thereby, making it patentable.

Read more: https://brainly.com/question/22374164

Write a program that asks the user to enter a city name, and then prints Oh! CITY is a cool spot. Your program should repeat these steps until the user inputs Nope.

Sample Run:
Please enter a city name: (Nope to end) San Antonio
Oh! San Antonio is a cool spot.
Please enter a city name: (Nope to end) Los Angeles
Oh! Los Angeles is a cool spot.
Please enter a city name: (Nope to end) Portland
Oh! Portland is a cool spot.
Please enter a city name: (Nope to end) Miami
Oh! Miami is a cool spot.
Please enter a city name: (Nope to end) Nope

Answers

user_name = input("Please enter city name to run the program: ")

while( user_name != "Nope" ):

  print("Nice to meet you ", user_name )

  user_name = input("Please enter a name or type Nope to terminate the program: ")

I hope this helps!

James is creating a presentation for his class. The presentation includes photos of his classmates throughout the year. He would like some of the photos to fit inside shapes. How should James insert the shapes onto the slide?​

Answers

Answer: crop and shape.

which of the following are key considerations for dealing with challenges associated with the development of a business continuity plan for a cloud-based contact center? (choose 2 answers) a. local server backup schedule b. local data center failure plan c. cloud service availability d. functionality of telecommunication solutions

Answers

Correct answer is (C) Cloud service accessibility (D) When developing a business continuity plan for a cloud-based contact center, the functionality of telecom solutions must be taken into account as a major factor.

How accessible are cloud services?

When it comes to cloud infrastructure solutions, availability refers to the portion of the service's length that the data center is open to the public or provides the intended IT service.

What roles do telecommunication systems play?

A communications system's main function is to facilitate information sharing among its users. A number of methods, including multiparty phone communications, television, electronic mail, and electronic message exchange, can be used to exchange this information.

To know more about Cloud service accessibility visit :-

https://brainly.com/question/28390917

#SPJ4

What will the following code print?
num = 8;
cout << --num << " ";
cout << num++ << " ";
cout << num;

Answers

The following code will print the following output:

```
7 7 8
```


The first `cout` statement uses the pre-decrement operator (`--num`), which decreases the value of `num` by 1 before printing it. Therefore, `num` becomes 7 and is printed as 7.

The second `cout` statement uses the post-increment operator (`num++`), which increases the value of `num` by 1 after printing it. Therefore, `num` is printed as 7, but its value becomes 8.

The third `cout` statement simply prints the current value of `num`, which is 8.

Overall, the code prints "7 7 8".

Learn more about programming:

https://brainly.com/question/28338824

#SPJ11

Using a recursion tree, show the process how to solve the following recurrence in terms of the big O representation. Use the substitution method to prove your conclusion.

T(n) = 2T(n/3) + cn

Answers

To utilize a recursion tree in solving the recurrence relation T(n) = 2T(n/3) + cn.

The Recursion Tree

Commence by initializing the topmost node that symbolizes T(n).

The initial node bifurcates into a pair of offsprings, symbolizing T(n/3).

The child nodes divide into two additional child nodes that depict T(n/9).

Carry out this procedure repeatedly until you arrive at the leaf nodes, which signify T(1).

The accumulated work completed at every stage is equivalent to cn.

The tree's height is determined by log base three of n.

To determine the overall work accomplished, the individual work executed at every level needs to be added together. This individual work is represented as cn multiplied by 2 raised to the power of log base 3 of n.

We can express it in a simpler form as cn multiplied by n raised to the power of the logarithm of 2 with a base of 3.

Let us consider the substitution method and suppose that T(n) does not exceed kn raised to the power of log base 3 of 2, where k is a constant.

By inserting this supposition into the sequence formula, we obtain T(n) ≤ 2(k(n/3)^(log₃(2))) + cn.

To make it more concise, we can write the upper bound for T(n) as (2/3)kn^(log₃(2)) + cn.

By selecting an appropriate value for k such that (2/3)kn^(log₃(2)) is less than or equal to cn for sufficiently large n, we can establish that T(n) is no greater than kn^(log₃(2)) for all values of n.

Consequently, the time complexity for T(n) can be expressed as O(n^(log₃(2))) based on this information.

Through the utilization of both the substitution method and the recursion tree, we have cleverly demonstrated that T(n)'s time complexity is bounded by O(n^(log₃(2))).

Read more about recursion tree here:

https://brainly.com/question/30425942

#SPJ4

when coded in a where clause, which search condition will return invoices when paymentdate is not null and invoicetotal is greater than or equal to $500?

Answers

When coded in a WHERE clause, return invoices when the payment date is not null and the invoice total is higher than or equal to $500.

Which clause defines how many rows should be obtained after the predetermined number of rows have been skipped?

The number of rows in the result table to skip before any rows are retrieved is specified by the offset clause. The offset clause states that before rows are obtained, the number of rows given by offset-row-count should be skipped.

Which of the following clauses is used to extract rows from a grouped result that match the stated condition?

Following the grouping of the rows using the where clause, which also does aggregate calculations, the groups are filtered using the having clause.

To know more about invoices visit:-

https://brainly.com/question/24076114

#SP

what is the most popular monitor​

Answers

Probably a television or a radio I guess

Compose an e-mail to your coworker Adam that describes how to add a photograph to a slide.

Answers

The ways to add a photograph to a slide is given below: What to write when composing the email is also given below.

How do you Insert photos into a slide?

The steps are given below?\

The first thing to do is to open  the slide you want to insert the image on.then click on Insert menu, and take the cursor to the Picture, and then one can click Photo Browser or insert pictures.Then select the picture that you want and and one can drag it onto the slide.

Note that it is essential to follow the steps and one can add as many pictures as they want to their slides.

Learn more about e-mail from

https://brainly.com/question/24506250

#SPJ1

you are responsible for the design of a communications switch that has to provide 24/7 availability but that is not safety-critical. giving reasons for your answer, suggest an architectural style that might be used for this system.

Answers

Software architecture is the simply known as the platform or framework of a software system. There are different styles of software architecture such as data-centric, layered and object-oriented styles. etc.

What happens in architecture style?

In Architecture Style, all software needs a well plan and detailed framework before trying to develop. Software architecture is regarded as a high level structure used for making software systems.

The reason for software creation with a specific functionalities is the center of software's architectural style and pattern used. Architectural style is focused based. it focuses on how to organize the code that is needed for creating the software.

Therefore, Software architecture is the simply known as the platform or framework of a software system. There are different styles of software architecture such as data-centric, layered and object-oriented styles. etc.

Learn more about software from:

brainly.com/question/23405852

#SPJ1

How to get your deceased parents social security number?.

Answers

You cannot legally obtain your deceased parent's Social Security number.

It is important to respect the privacy and security of individuals, even after they have passed away. Obtaining a deceased parent's Social Security number is not a legally permissible action. Social Security numbers are considered sensitive personal information and should be handled with care. Access to such information is restricted for privacy and security reasons.

If there is a legitimate need for your deceased parent's Social Security information, it is recommended to contact the appropriate authorities, such as the Social Security Administration or a legal professional, who can guide you through the proper channels and provide guidance on any necessary procedures.

You can learn more about Social Security number at

https://brainly.com/question/31736453

#SPJ11

If a spreadsheet user wants Calc to add a range of cells, what built-in function should he or she use?

A) the ADD function
B) the OPR function
C) the SUM function
D) the WIZARD function

Answers

C, SUM will give you the sum of the values in a range of cells.

Answer: Its C

Explanation:

1

The tire pressure is 20% underinflated.

The service life is reduced by...

%

check

Answers

Answer

A constant 20 percent underinflated condition will reduce the life of a tire by 30 percent, and 40 percent underinflation will reduce tire life by 50 percent. Underinflation will increase flexing and heat buildup within the tire components which deteriorate tires and reduces casing life and retreadability.

Question 1
1 pts
(02.01 MC)
Jackie used the software development life cycle to create a new game. Jackie ran her code to make sure it
worked and had no errors.
Which stage of the software development life cycle is Jackie currently in?
o Coding
O Maintenance
O Planning & Analysis
Testing

Answers

Answer:

she is running a maintenance to make sure everything works

If the same condition is described as both acute and chronic, and separate subentries exist in the Alphabetic Index at the same indentation level, report both codes and sequence the acute code first.TrueFalse

Answers

Report both codes and sequence the acute code first if the same condition is described as both acute and chronic and separate subentries exist in the Alphabetic Index at the same indentation level.

What is Alphabetic Index?To code topography (anatomical sites) and morphology, use the alphabetical index (histological terms). The index also lists a few conditions and tumor-like lesions. The first code character in Chapter II of the ICD-10, the letter C, designates topography codes. The morphology codes are identified by the prefix M. Both the noun and the adjective are listed along with the terms. For instance, basophil adeno-carcinoma is listed both under B and A for "basophil adeno-carcinoma." The next two terms containing the word "abdominal" are separated from the "Abdomen" group by a horizontal space. The two morphologic terms that start with "abdominal" are the only ones, so they do not require a heading; however, the four terms that follow in terms of topography do have the bold heading "Abdominal."

To learn more about morphology refer to:

https://brainly.com/question/8282896

#SPJ4

What technique is most commonly associated with the use of malicious flash drives by penetration testers

Answers

Answer: Distributing malicious flash drives in a parking lot or other high-traffic area, often with a label that will tempt the person who finds it into plugging it in, is a technique used by penetration testers.

Explanation:

select the correct word to complete the sentence

First developed by grace hopper a ____ is a computer program that translates higher level programming languages into machine code

A assembly language

B COBOL

C digital circuit

D compiler

pls help quick or i am screwd cause i was not paying attention to my class ​

Answers

Answer:

Answer is B.

Explanation:

First developed by grace hopper a COBOL is a computer program that translates higher-level programming languages into machine code. The correct option is B.

What is a COBOL?

COBOL (Common Business-Oriented Language) is a high-level business programming language. It was the first popular language to be intended to be operating system-independent, and it is still used in many financial and commercial applications today.

First developed by grace hopper a COBOL is a computer program that translates higher-level programming languages into machine code.

Hence, the correct option is B.

Learn more about COBOL:

https://brainly.com/question/4584026

#SPJ2

When your grounded and the only thing you can get on is a computer........................oh wellllllllllllllllllllllllllllllllllllllll

Answers

Answer:

I feel your pain

i mean u could log into ur snap and ig but i mean sure why not???

Other Questions
Question one (40 marks)Discuss what a business process is. With your choice of productprovide an example of your own business process.Guideline to follow Choose a company of your choice Tab a nurse is caring for a patient with depression. which symptom should the nurse closely monitor for in the patient? Kidneys pass waste products through the ureters to the __________.A.urethraB.bladderC.stomachD.small intestine HELP NOW ILL GIVE BRAINLISET!!!!!When a bill reaches the governor's desk, what options does Georgia's governor have? Check all that apply.A. The governor can make significant changes.B. The governor can immediately sign it into law.C. The governor can kill it forever by vetoing it.D. The governor can send it back to committee.E. The governor can choose to leave it alone.F. The governor can return it to assembly by veto. he law of piercing the corporate veil has been developed through __________ law in order to provide protection to the creditors of corporations. An expression is shown, where a is a positive number less than 1, b is less than 0, and |a| What did the "M" stand for that was brandedon the British soldier's thumbs for theirinvolvement in the Boston Massacre?A. moneyB. murderC. mother HELP ASAP!!! WILL GIVE BRAINLIEST Balance the reaction, Find Q, and predict how the reaction will be proceed.At 500 (C), the equilibrium constant for the following reaction is 0.080.[NH3] = 0.0596 M [N2] = 0.600 M[H2] = 0.420M_N2 + H2 = _NH3Q=__Q__Keq Reaction proceeds to be ________, towards _________ Obtain an annual report (the most recent) of any listed company you are familiar with. Using the financial statements in that report, calculate the following five ratios and interpret the results: Working capital The quick ratio Earnings per share Debt-to-equity Return on earnings (10) 3.2 Discuss possible reasons for a bank to declare scrip dividends or share splits (5) 3.3 Critically discuss why shareholders have varying interests in dividends (5) 3.4 Recommend five best practices to prevent and detect corruption in your chosen organisation Mrs. Miller's 903 drink is 50% water. How do you represent this number as a decimal? americans tend to have all but which of the following views on the role that the law should play in contemporary life? that it is always fair in addressing concerns of private causes of action and wrongs committed against the general welfare. that the courts and police primarily act as obstructions to personal freedom and to a fully efficient market that the law should ensure everyone who is in need is cared for adequately that the law should shelter everyone from wrongdoers If the orbit of a rocket is a circle around the earth with a radius r= 8 x 106 m, and the mass of the earth is 5.97 x 1024 kg whilethat of the rocket is 0.5 x 106 kg, then what is the speed of therocket under uniform circular motion (in m/s, G = 6.67 10-11 N(m/kg) 2)?a 2.04 x 10-b 7.06 10c 2.04 x 10-3d 7.06 x 10e 7.06 x 105 1. you have 10 different user ids and passwords for different accounts and have a hard time remembering them all. the best thing to do is: Find the GCF from the two numbers, and rewrite the sum using the distributive property. 24 + 36Do not put any spaces in your answer PLEASE HELP!!! ITS EASY!Simplify:(1/2a - 1/3b) - (1/3b - 1/2a) Why do price and quantity move in opposite direction? A picture frame is 20 cm long and 30 cm wide. This includes a pink border that is 5cm wide surrounding the picture itself, as shown below. What is the area of this pinkborder in square centimeters?20 cm30 cm 3. A gene has the base sequence that starts with GAC TGA CGA TTA. a) What would be the complementary DNA strand formed from this DNA? (ctg acr get aat)b) What would be the mRNA base sequence formed from this DNA sequence? (3 points)(I need help on B) b. For what interval(s) is the function negative