I cannot figure out how to limit the number that they can make the bars of the turtle go too. I need to find a way to make them not go any higher than 200.


import turtle

Jane = turtle.Turtle()


bar1 = int(input("What is the height of the first bar?" ))


bar2 = int(input("What is the height of the second bar?" ))


bar3 = int(input("What is the height of the third bar?" ))


bar4 = int(input("What is the height of the fourth bar? "))


Jane.left(90)


def bar(height):


Jane.forward(height)


Jane.left(90)


Jane.forward(20)


Jane.left(90)


Jane.forward(height)


Jane.right(180)



bar(bar4)


bar(bar3)


bar(bar2)


bar(bar1)

Answers

Answer 1

Answer:

import turtle

Jane = turtle.Turtle()

bar1 = int(input("What is the height of the first bar?" ))

bar2 = int(input("What is the height of the second bar?" ))

bar3 = int(input("What is the height of the third bar?" ))

bar4 = int(input("What is the height of the fourth bar? "))

Jane.left(90)

def bar(height):

   if height > 200:

       height = 200

   Jane.forward(height)

   Jane.left(90)

   Jane.forward(20)

   Jane.left(90)

   Jane.forward(height)

   Jane.right(180)

bar(bar4)

bar(bar3)

bar(bar2)

bar(bar1)


Related Questions

How university has utilised Information Technology in society for efficient business process?

Answers

Employees can easily understand and identify their goals, targets, or even if the exertion used was undertaking or not with the help of strong information technology.

What is information technology?

The use of technology to communicate, transfer data, and process information is referred to as information technology.

Among the various trends in information technology are, but are not limited to, analytics, automation, and artificial intelligence.

The use of computers, storage, networking, and other physical devices, infrastructure, and processes to create, process, store, secure, and exchange all forms of electronic data is referred to as information technology (IT).

With the assistance of powerful information technology, employees can easily understand and identify their goals, targets, or even whether the exertion used was undertaken or not.

Thus, universities utilized Information Technology in society for efficient business process.

For more details regarding information technology, visit:

https://brainly.com/question/14426682

#SPJ1

Need help with this program

Need help with this program

Answers

You can search a knowledge base of millions of school questions. If that doesn't work, you can always ask our experts yourself.

Asking a question will get you up to two answers from experts and star students.

You can Help others, complete challenges, and earn points to spend asking your own questions.

Hope this helps.

According to the text, which of the following technological advancements have aided the Internet's role in media convergence?
A. The development of digital technologies that allow information to be transferred as a series of binary codes
B. The development of smaller, personal computers, made possible through the development of microchips and microprocessors
C. The development of fiber-optic cable, which allowed a massive amount of information to be transmitted extremely quickly
D. All options are correct*

Answers

All options are correct. All the statements show technological advancements have aided the Internet's role in media convergence.

The Internet has played a significant role in the convergence of media, which refers to the combining of different forms of media such as television, radio, and print into a single platform or device. This convergence has been made possible by several technological advancements, including:

A. The development of digital technologies: Digital technologies allow information to be transferred as a series of binary codes, which can be easily transmitted and stored on a variety of devices. This has made it possible for people to access a wide range of media content, such as text, audio, video, and images, through the Internet.

B. The development of smaller, personal computers: The development of microchips and microprocessors has enabled the production of smaller, more powerful computers that can be easily carried and used by individuals. This has made it possible for people to access the Internet and media content from anywhere, at any time.

C. The development of fiber-optic cable: Fiber-optic cables are made of thin strands of glass or plastic and are used to transmit data over long distances. They have a much higher capacity for data transmission than traditional copper cables, making it possible to transmit a massive amount of information extremely quickly. This has allowed the Internet to support the streaming of high-quality video and other media content.

All of these technological advancements have contributed to the Internet's role in media convergence and have made it possible for people to access a wide range of media content from a single device.

Learn more about development: https://brainly.com/question/28011228

#SPJ4

Hard drives use a __________ storage medium, and they are known as conventional drives to differentiate them from newer solid-state storage media.

Answers

Answer:

Magnetic

Explanation:

Hard drive, is an electro-mechanical data storage device that stores and retrieves digital data using magnetic storage with one or more rigid rapidly rotating platters coated with magnetic material.

When compare to Solid-State Media or storage they are Hard drives are slower to retrieve data from them.

Using An assembly code
Read a 3 digit number from one row, then a 1 digit number from the second row. Subtract the 1 digit number from the 3 digit number, and display the result. Make sure you print your name first, then your output.
Sample Input
123
1
Output
Name Last name
122
Sample Input
100
1
Output
Name Last name
099 (or you can display 99 without the 0, either one is fine)

Sample Input
001
1

Output

Name Last name
0 (or you can display 000, either one is fine by me)

Answers

An example implementation of the algorithm you described in x86 assembly language using NASM syntax:

The Assembly Language Program

section .data

   ; Define your data here if needed

section .text

   global _start

_start:

   ; Print your name here

   

   ; Read the 3-digit number

   mov eax, 3       ; number of characters to read

   mov ebx, 0       ; file descriptor (stdin)

   mov ecx, buf     ; buffer to store the input

   mov edx, eax     ; maximum number of characters to read

   int 0x80         ; invoke the read system call

   

   ; Convert the input to a number

   mov eax, buf

   sub eax, '0'     ; convert the hundreds digit

   mov ebx, 10

   imul ebx

   mov ecx, buf+1

   sub ecx, '0'     ; convert the tens digit

   add eax, ecx

   imul ebx

   mov ecx, buf+2

   sub ecx, '0'     ; convert the units digit

   add eax, ecx

   

   ; Read the 1-digit number

   mov eax, 1       ; number of characters to read

   mov ebx, 0       ; file descriptor (stdin)

   mov ecx, buf     ; buffer to store the input

   mov edx, eax     ; maximum number of characters to read

   int 0x80         ; invoke the read system call

   

   ; Convert the input to a number

   mov ebx, 10

   mov ecx, buf

   sub ecx, '0'     ; convert the digit

   mul ebx

   

   ; Subtract the 1-digit number from the 3-digit number

   sub eax, ecx

   

   ; Convert the result to a string

   mov ebx, 10

   div ebx

   add edx, '0'     ; convert the units digit

   mov [result+2], dl

   div ebx

   add edx, '0'     ; convert the tens digit

   mov [result+1], dl

   add eax, '0'     ; convert the hundreds digit

   mov [result], al

   

   ; Print the result

   mov eax, 4       ; system call for write

   mov ebx, 1       ; file descriptor (stdout)

   mov ecx, result  ; address of the string to print

   mov edx, 3       ; number of characters to print

   int 0x80         ; invoke the write system call

   

   ; Exit the program

   mov eax, 1       ; system call for exit

   xor ebx, ebx     ; exit status

   int 0x80

section .bss

   buf resb 4       ; buffer for input (3 digits + newline)

   result resb 4    ; buffer for output (3 digits + null terminator)

Note that this implementation uses system calls for input/output and assumes that the input is terminated by a newline character. You may need to modify it to suit your specific requirements or platform.

Read more about assembly language here:

https://brainly.com/question/30299633

#SPJ1

What is a catalyst? a chemical found in leaves a chemical which promotes a chemical reaction a chemical which reacts with sunlight a cell with chlorophyll

Answers

Answer:

a chemical which promotes a chemical reaction

Explanation:

this is the right answer. please mark me as brainiest

PLEASE FILL IN THE BLANK

With a bit depth of __ I can support 8 grayscale variations of black and white images.

Answers

Answer:   Thre correct answer is 3 bit

Explanation:

Using binary, a 3-bit value can support 8 variations in grayscale:

1   000

2   001

3   010

4   011

5   100

6   101

7   110

8   111

quick IM BEGGING
What is the value of the variable result after these lines of code are executed?

>>> a = 12
>>> b = 0
>>> c = 2
>>> result = a * b - b / c

0
0

It has no value since an error occurred.
It has no value since an error occurred.

20
20

6
6

Answers

Answer:

Explanation:

The value of the result variable after these lines of code are executed is -0.0.

Answer:

The value of result after these lines of code are executed would be 0.

Explanation:

This is because the expression a * b - b / c is evaluated as follows:

result = a * b - b / c

      = 12 * 0 - 0 / 2

      = 0 - 0

      = 0

No errors occur in this code, so result will have a value of 0.

Help please! Really need to find this out rn

Help please! Really need to find this out rn

Answers

I believe it’s the “body” answer, because the term P refers to a paragraph, and paragraph code terms don’t change the entire webpage.

user intent refers to what the user was trying to accomplish by issuing the query

Answers

Answer:

: User intent is a major factor in search engine optimisation and conversation optimisation. Most of them talk about customer intent ,however is focused on SEO not CRO

Explanation:

(Shuffle rows) Write a method that shuffles the rows in a two-dimensional int array using the following header: public static void shuffle(int[][] m)

Answers

The question is incomplete. The complete question is :

Write a method that shuffles the rows in a two-dimensional int array using the following header: public static void shuffle(int[][] m)

Write a test program that shuffles the following matrix: int[][] m = {{1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10}};

Solution :

//filename_suffle.java

#public class shuffle{

public_static_void_main_(String[] args) {

int[][] m = {{1, 2} {3, 4} {5, 6} {7, 8} {9, 10}};

System.out.println("Before shuffle");

displayMatrix(m);

System(dot)out(dot)println("After shuffle");

shuffle(m);

displayMatrix(m);

}

public_static_void_displayMatrix_(int[][] m) {

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

for (int j = 0; j < m[i].length; j++) {

System.out.print(m[i][j] + " ");

}

System(dot)out(dot)println("");

}

}

public_static_void_shuffle_(int[][] m) {

int r1; // random row index

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

for (int j = 0; j < m[i].length; j++) {

do {

r1 = (int)(Math.random() * m.length);

} while (r1 == i);

int[] temp = m[i];

m[i] = m[r1];

m[r1] = temp;

}

}

}

}

We can cluster in one dimension as well as in many dimensions. In this problem, we are going to cluster numbers on the real line. The particular numbers (data points) are 1, 4, 9, 16, 25, 36, 49, 64, 81, and 100, i.e., the squares of 1 through 10. We shall use a k-means algorithm, with two clusters. You can verify easily that no matter which two points we choose as the initial centroids, some prefix of the sequence of squares will go into the cluster of the smaller and the remaining suffix goes into the other cluster. As a result, there are only nine different clusterings that can be achieved, ranging from {1}{4,9,...,100} through {1,4,...,81} {100}. We then go through a reclustering phase, where the centroids of the two clusters are recalculated and all points are reassigned to the nearer of the two new centroids. For each of the nine possible clusterings, calculate how many points are reclassified during the reclustering phase. Identify in the list below the pair of initial centroids that results in exactly one point being reclassified.
a) 36 and 64
b) 36 and 100
c) 4 and 16
d) 4 and 81

Answers


A is the answer because I’m good

The list of the pair of initial centroids that results in exactly one point being reclassified is 36 and 64. The correct option is a.

What is the real line?

A real axis, or a line with a set scale so that each real number corresponds to a distinct point on the line, is the most popular definition of "real line." The complex plane is a two-dimensional extension of the real line.

A cluster is a collection or grouping of items in a certain place. Mathematicians define a cluster as data accumulating around a single value, specifically a number. On a table or graph, a cluster can be seen visually where the data points are grouped together.

The numbers are 4, 9, 16, 25, 36, 49, 64, 81, and 100. In the real line, it will be 36 and 64.

Therefore, the correct option is a. 36 and 64.

To learn more about real line, refer to the link:

https://brainly.com/question/19571357

#SPJ2


how do I turn it on the orange button isn’t working :,)

how do I turn it on the orange button isnt working :,)

Answers

Answer:

keep holding it

Explanation:

Hold the button for 30 seconds

Describe why some people prefer an AMD processor over an Intel processor and vice versa.

Answers

Answer: AMD’s Ryzen 3000 series of desktop CPUs are very competitive against Intel’s desktop line up offering more cores (16 core/32 thread for AMD and 8 core/16 thread for Intel) but with a lower power draw - Intel may have a lower TDP on paper but my 12 core/24 thread 3900x tops out at around 140W while a i9 9900K can easily hit 160W-180W at stock settings despite having a 10W lower TDP.

(Python) Write an expression that prints 'You must be rich!' if the variables young and famous are both True. Sample output with inputs: 'True' 'True' You must be rich!

Answers

Answer:

young = True

famous = True

if young == True and famous == True:

   print("You must be rich!")

Explanation:

A feedback loop is:
A. a hyperlink to another part of a story.
B. an endless cycle of creation and response.
C. the excitement people feel about networking.
D. the best method for creating a story.

Answers

Answer:

c

Explanation:

A feedback loop is the excitement people feel about networking

What is feedback loop?

A feedback loop can be used in learning process, where the output or results is used as again as data for another process.

Therefore, A feedback loop is the excitement people feel about networking

Lear more on feedback loop below

https://brainly.com/question/13809355

#SPJ9

write a recursive, string-valued method, reverse, that accepts a string and returns a new string consisting of the original string in reverse. for example, calling reverse with the string goodbye returns the string eybdoog. reversing a string involves: nothing if the string is empty or has only 1 character (reversing a single character string does not change anything) otherwise concatenate the last character with the result of reversing the string consisting of the second through the next-to-last character, followed by the first character. in the above example, you would concatenate the 'e' (last character of goodbye) with the result of calling reverse on oodby (the string from the second character to the next-to-last), with the 'g' (first character).

Answers

String reverse(String word){

  String temp = "";

 if(word.length() >= 1){

     temp = word.substring(word.length()-1, word.length());

     temp += reverse(word.substring(0, word.length()-1));

  }

  return temp;

}

What is a string valued method ?

The java string valueOf() function transforms various value types to strings. You can convert int to string, long to string, boolean to string, character to string, float to string, double to string, object to string, and char array to string using the string function valueOf() { [native code] }() method.

Can learn more about recursive, string-valued method, reverse string from https://brainly.com/question/16024994

#SPJ4

Which of the following represents the numeric value nine as a decimal number? ( 9 01001 ΟΝ Nine​

Answers

Nine is represented as the digit "9" in numerical form. "01001" and "N Nine," the other values mentioned, do not correspond to the decimal value of nine.

What is output with a 0d start?

Python output denotes a decimal integer by beginning with 0d.

What are some of the benefits of procedural programming over object-oriented programming, according to 6 points?

A comparatively straightforward method for programming computers is procedural programming. This is why procedural programming languages are the starting point for many developers because they offer a coding base that the developer can use as they learn other languages, like an object-oriented language.

To know more about decimal visit:

https://brainly.com/question/28033049

#SPJ9

During which part of an examination are various body parts and organs touched and felt?
O Auscultation
Palpation
Inspection
Percussion​

Answers

The correct answer is B. Palpation

Explanation:

In a medical exam or similar, the palpation involves touching different parts of the body to feel the organs and structures in this. This process is essential in diagnosis because palpation can reveal inflammation, pain in certain areas, or abnormalities. Additionally, palpation requires a broad knowledge of anatomy that allows health professionals to understand the structures of the body when they touch these and how to determine abnormalities. Thus, the part of an examination in which body parts are touched and felt is palpation.

DYNAMIC COMPUTER PROGRAMS QUICK CHECK

COULD SOMEONE CHECK MY ANSWER PLSS!!

Why were different devices developed over time? (1 point)

A. experiment with new platforms

B. computing and technological advances

C. to integrate connectivity in new devices

D. to use different software

my answer I chose: A

Answers

It’s B because From the 1st generation to the present day, this article talks about the development of computers and how it has changed the workplace.

Which statements are true about mobile apps? Select 3 options.

Which statements are true about mobile apps? Select 3 options.

Answers

The statements are true about mobile app development are;

Software development kits can provide a simulated mobile environment for development and testingMobile app revenues are expected to growWhether a mobile app is native, hybrid, or web, depends on how the app will be used and what hardware needs to be accessed by the app

How is this so?

According to the question, we are to discuss what is mobile app and how it works.

As a result of this mobile app serves as application that works on our mobile phone it could be;

nativehybridweb

Therefore, Software development kits can provide a simulated mobile environment.

Learn more about mobile apps at:

https://brainly.com/question/26264955

#SPJ1

Full Question:

Although part of your question is missing, you might be referring to this full question:

Which of the following statements are true about mobile app development? Select 3 options.

• Software development kits can provide a simulated mobile environment for development and testing

• Testing is not as important in mobile app development, since the apps are such low-priced products

• Mobile apps can either take advantage of hardware features or can be cross-platform, but not both

• Mobile app revenues are expected to grow

• Whether a mobile app is native, hybrid, or web, depends on how the app will be used and what hardware needs to be accessed by the app

In "PUBATTLEGROUNDS” what is the name of the Military Base island?

Answers

Answer:

Erangel

Explanation:

Answer:

Erangel

Explanation:

The Military Base is located on the main map known as Erangel. Erangel is the original map in the game and features various landmarks and areas, including the Military Base.

The Military Base is a high-risk area with a significant amount of loot, making it an attractive drop location for players looking for strong weapons and equipment. It is situated on the southern coast of Erangel and is known for its large buildings, warehouses, and military-themed structures.

The Military Base is a popular destination for intense early-game fights due to its high loot density and potential for player encounters.

Hope this helps!

define hexadecimal number system ​

Answers

Answer:

a positional numeral system that represents numbers using a radix (base) of 16

a positional numerical system


Using the in databases at the , perform the queries show belowFor each querytype the answer on the first line and the command used on the second line. Use the items ordered database on the siteYou will type your SQL command in the box at the bottom of the SQLCourse2 page you have completed your query correctly, you will receive the answer your query is incorrect , you will get an error message or only see a dot ) the page. One point will be given for answer and one point for correct query command

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

Answers

Using the knowledge in computational language in SQL it is possible to write a code that using the in databases at the , perform the queries show belowFor each querytype.

Writting the code:

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

Number of DB pages allocated = 270

Sweep interval = 20000

Forced Writes are ON

Transaction - oldest = 190

Transaction - oldest active = 191

Transaction - oldest snapshot = 191

Transaction - Next = 211

ODS = 11.2

Default Character set: NONE

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

...

Default Character set: NONE

See more about SQL at brainly.com/question/19705654

#SPJ1

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

Which part of the Result block should you evaluate to determine the needs met rating for that result

Answers

To know the "Needs Met" rating for a specific result in the Result block, you should evaluate the metadata section of that result.

What is the  Result block

The assessment of the metadata section is necessary to determine the rating of "Needs Met" for a particular outcome listed in the Result block.

The metadata includes a field called needs_met, which evaluates the level of satisfaction with the result in terms of meeting the user's requirements. The needs_met category usually has a score between zero and ten, with ten implying that the outcome entirely fulfills the user's demands.

Learn more about Result block from

https://brainly.com/question/14510310

#SPJ1

Which of the following is the best example of a law?
• A. You should not make promises you can't keep.
B. You may not ask an interviewee if he or she is married or has
children.
• c. Teachers must retire at age 65.
D. You can't spend more money that you earn.

Answers

the answer is c

when teachers become old, their mentality changes

this can result in many difficulties at class.

so when there is such a law, it would best help the

nation

As you know computer system stores all types of data as stream of binary digits (0 and 1). This also includes the numbers having fractional values, where placement of radix point is also incorporated along with the binary representation of the value. There are different approaches available in the literature to store the numbers having fractional part. One such method, called Floating-point notation is discussed in your week 03 lessons. The floating point representation need to incorporate three things:
• Sign
• Mantissa
• Exponent

A. Encode the (negative) decimal fraction -9/2 to binary using the 8-bit floating-
point notation.
B. Determine the smallest (lowest) negative value which can be
incorporated/represented using the 8-bit floating point notation.
C. Determine the largest (highest) positive value which can be
incorporated/represented using the 8- bit floating point notation.

Answers

Answer:

A. Encode the (negative) decimal fraction -9/2 to binary using the 8-bit floating-point notation.

First, let's convert -9/2 to a decimal number: -9/2 = -4.5

Now, let's encode -4.5 using the 8-bit floating-point notation. We'll use the following format for 8-bit floating-point representation:

1 bit for the sign (S), 3 bits for the exponent (E), and 4 bits for the mantissa (M): SEEE MMMM

Sign bit: Since the number is negative, the sign bit is 1: 1

Mantissa and exponent: Convert -4.5 into binary and normalize it:

-4.5 in binary is -100.1. Normalize it to get the mantissa and exponent: -1.001 * 2^2

Mantissa (M): 001 (ignoring the leading 1 and taking the next 4 bits)

Exponent (E): To store the exponent (2) in 3 bits with a bias of 3, add the bias to the exponent: 2 + 3 = 5. Now, convert 5 to binary: 101

Now, put the sign, exponent, and mantissa together: 1101 0010

So, the 8-bit floating-point representation of -9/2 (-4.5) is 1101 0010.

B. Determine the smallest (lowest) negative value which can be incorporated/represented using the 8-bit floating-point notation.

To get the smallest negative value, we'll set the sign bit to 1 (negative), use the smallest possible exponent (excluding subnormal numbers), and the smallest mantissa:

Sign bit: 1

Exponent: Smallest exponent is 001 (biased by 3, so the actual exponent is -2)

Mantissa: Smallest mantissa is 0000

The 8-bit representation is 1001 0000. Converting this to decimal:

-1 * 2^{-2} * 1.0000 which is -0.25.

The smallest (lowest) negative value that can be represented using the 8-bit floating-point notation is -0.25.

C. Determine the largest (highest) positive value which can be incorporated/represented using the 8-bit floating-point notation.

To get the largest positive value, we'll set the sign bit to 0 (positive), use the largest possible exponent (excluding infinity), and the largest mantissa:

Sign bit: 0

Exponent: Largest exponent is 110 (biased by 3, so the actual exponent is 3)

Mantissa: Largest mantissa is 1111

The 8-bit representation is 0110 1111. Converting this to decimal:

1 * 2^3 * 1.1111 which is approximately 1 * 8 * 1.9375 = 15.5.

The largest (highest) positive value that can be represented using the 8-bit floating-point notation is 15.5.

Explanation:

what is mouse spealing

Answers

Answer:

use a mouse to move or position a cursor on computer screen

Explanation:

mouse cursor

Draw an ER diagram for the following car sharing system:
In the car sharing system, a CarMatch application has record of anyone who would like to share his/her car, known as a CarSharer. An Administrator registers all the potential CarSharers and with their first name, last name, home address, and date of birth. Each CarSharer is also assigned a unique id. A CarSharer can take policies issued by the Insurance Company. Each policy has a number, premium, and a start date. A CarSharer needs to know the start and destination address of each Journey.

Answers

An ER diagram for the following car sharing system is given below.

             +--------------+       +-------------+         +-----------------+

             |  CarSharer   |       |   Journey   |         |  InsurancePolicy |

             +--------------+       +-------------+         +-----------------+

             |    id        |       |    id       |         |     number      |

             |  first_name  |       |  start_addr |         |     premium     |

             |  last_name   |       |destin_addr  |         |  start_date     |

             |  home_addr   |       | carsharer_id|  +----->|  carsharer_id   |

             | date_of_birth|  +--->|             |  |      +-----------------+

             +--------------+       +-------------+  |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 |                     |

                                 +---------------------+

                                            |

                                            |

                                     +-------------+

                                     |  Administrator  |

                                     +-------------+

                                     |     id        |

                                     +--------------+

What is the diagram about?

The diagram shows the relationships between the entities in the system.

A CarSharer has a unique id and is associated with many Journeys and InsurancePolicies. They have properties such as first_name, last_name, home_addr, and date_of_birth.

A Journey has a unique id and is associated with one CarSharer. It has properties such as start_addr and destin_addr.

An InsurancePolicy has a unique number and is associated with one CarSharer. It has properties such as premium and start_date.

An Administrator has a unique id and is responsible for registering potential CarSharers.

Learn more about ER diagram on:

https://brainly.com/question/17063244

#SPJ1

What is the first step in finding a solution to a problem? Choose a solution. Think of options to solve the problem. Try the solution. Turn the problem into a question.\

Answers

Answer: Summarize the six steps of the problem solving process.

Explanation:

Answer:

turn the problem into a question

Explanation:

I got it right on a test!

Other Questions
PLZ HELP QUICK!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Which is a clause? "a very interesting book" "eating ice cream" "the orange and white cat" "when the moon rises" I am one of the elements. I am a metal that can form a cation. My atomic number is Z. My atomic radius is smaller than the atomic radius of the element Z-1 but is larger than the atomic radius for Z-2. Of the two elements in my group that have biological importance, I am the one with lower atomic mass. Who am I ________ is a federal law that requires lenders to give borrowers a pamphlet that discloses types of closing costs and settlement procedures. explain the action of the diaphragm when you inhale and exhale. heat is produced by radiant energy (A) when it travels through space (B) when it strikes matter (C) when its reflected from the Earth's surface (D) in all these ways Match the description of the Principle of COSO: ERM Integrating with Strategy and Perfo The organization is committed to building human capital in alignment with the strategy and business objectives. The organization establishes operating structures in the pursuit of strategy and business objectives. The organization defines risk appetite in the context of creating, preserving, and realizing value. The organization considers potential effects of business context on risk profile. The organization identifies and selects risk responses. The organization assesses the severity of risk. The organization identifies and assesses changes that may substantially affect strategy and business objectives. The board of directors provides oversight of the strategy and carries out governance responsibilities to support management in achieving strategy and business objectives. The organization reports on risk, culture, and performance at multiple levels and across the entity. The organization develops and evaluates a portfolio view of risk. HELP IN MATH PLS, THANK YOU How do you convert MgO to Mg? Which item may a customer reuse? Enter the explicit rule for the geometric sequence.9,6,4,8/3, Suppose you are asked to take a sample of men and women in order to measure their emotional IQ. The emotional IQ scale that you administer has a minimum of 0 and a maximum of 100, with higher scores indicating higher emotional intelligence (the range of the scale is not pertinent to the question -- I simply provide it so that you have some context in which to provide your answer). You sample 25 men and 25 women. The mean for men is 70 with a standard deviation of 10 and the mean for women is 82 with a standard deviation of 15. Required:What is the 99% confidence interval for the scores of men and women? the nurse is caring for a client scheduled for magnetic resonance imaging (mri). which instruction does the nurse reinforce to the client? Why did the narrators new home appeal to Bodh Raj? An example of a liquidity ratio is: 1) fixed asset turnover. 2) current ratio. 3) acid test or quick ratio. 4) 1 and 3. 5) 2 and 3. You purchased 100 shares of ABC common stock on margin at $70 per share. Assume the initial margin is 50% and the maintenance margin is 30%. Below what stock price level would you get a margin call? Assume that the stock pays no dividend and ignore interest on margin. 1) $21 2) $50 3) $49 4) $80 5) $75 Why is evaluating the training a company provides(internally or externally) an important part of a Human Resourcestrategy?*Please provide 2 citations (with references listed) and 250-300words** select all that apply what are the three major elements of hackman and oldham's job characteristics model? (choose every correct answer.) multiple select question. psychological states work outcomes instrumentality core job characteristics Daily Enterprises is purchasing a $10.2 million machine. It will cost $45,000 to transport and install the machine. The machine has a depreciable life of five years using straight-line depreciation and will have no salvage value. The machine will generate incremental revenues of $4.3 million per year along with incremental costs of $1.1 million per year. Daily's marginal tax rate is 35% You are forecasting incremental free cash flows for Daily Enterprises. What are the incremental free cash flows associated with the new machine? The free cash flow for year O will be $ (Round to the nearest dollar.) Brave new world5. In which of these societies does John feel most comfortable?(2.5 Points)A.) Neither London nor the ReservationB.) LondonC.) Both London and the ReservationD.) The Reservation inferences that people draw about the causes of events and theirs and others' behaviors are known as Calculate the pH during the titration of 25.00 mL of 0.1000 M HF(aq) with 0.1000 M RbOH(aq) after 14 mL of the base have been added. Ka of HF = 7.4 x 10-4.