Write a Python program that verifies the formula with the help of the Python Math module. Note that the trigonometric functions in the module act on the angles in radians. Your program should perform the following steps 3 times:_____.
1. Pick a random number between 0 and 180 degrees representing an angle in degrees, say Dangle
2. Convert the angle from degrees to radians, say Rangle
3. Use the Math module to find and print the values of sin(Rangle) and cos(Rangle), and
4. Compute and print the value of the above expression: sin^2(Rangle) + cos^2(Rangle).
You can then visually verify if the result printed is 1 (or close to it).
Hint: angle_in_radians = (angle_in_degrees * Pi)/180

Answers

Answer 1

Answer:

Written in Python

import math

import random

Dangle = random.randint(0,181)

pi = 22/7

Rangle = Dangle * pi/180

Rsin = math.sin(Rangle)

Rcos = math.cos(Rangle)

Result = Rsin**2 + Rcos**2

print("Result = "+str(Result))

Explanation:

The next two lines import math and random library respectively

import math

import random

This line generates a random integer between 0 and 180

Dangle = random.randint(0,181)

This line initializes pi to 22/7

pi = 22/7

This line converts angle to radians

Rangle = Dangle * pi/180

The next two lines calculate the sin and cosine of the angle in radians

Rsin = math.sin(Rangle)

Rcos = math.cos(Rangle)

This line implements sin^2 theta + cos^2 theta

Result = Rsin**2 + Rcos**2

This line prints the required Result

print("Result = "+str(Result))


Related Questions

An array in c++ is decleared as ''float split[31][13][23] How many bytes does it occupy in memory?​

Answers

Answer:

Size of array = size of each element * total number of elements

Explanation:

array occupies 38,332 bytes (or approximately 37.4 KB) of memory in C++


Using examples, evaluate the open source model of software development. In your discussion highlight some of its advantages and disadvantages. Furthermore, explain some of the alternatives that also exist.

Answers

Hope this helps! Good luck!
Using examples, evaluate the open source model of software development. In your discussion highlight

Page 1: Briefly describe 2 network models Page 2: Briefly describe the modern Ethernet

Answers

Modern ethernet networks are capable of using half-duplex communication.

What is a Router?

A router has been defined as the network device that has been used to route data packets just across one or more networks. Routers would select the paths for the data packets just to travel from their source to their destination.

For the instance, as per the scenario which is given in the statement, when the computer has residing on the network A sends the packet to another computer placed on the network C.

Routers have the internal routing tables in order to make decisions to route the packet. For example, when the router receives the packet, it will read the header of the received packet to the determine its intended destination.

Therefore, Modern ethernet networks are capable of using half-duplex communication.

Learn more about communication on:

https://brainly.com/question/14665538

#SPJ1

What are the main advantages of layered approach to system design?

Answers

Answer:

Explanation:

Layering provides a distinct advantage in an operating system. All the layers can be defined separately and interact with each other as required. Also, it is easier to create, maintain and update the system if it is done in the form of layers. Change in one layer specification does not affect the rest of the layers.

Example of mediated communication and social media

Answers

Answer: mediated communication: instant messages

social media: social platforms

Explanation:

Example of mediated communication and social media

In what year was napier bone invented ​

Answers

The Napier's Bones is a manually-operated calculating device, invented by the Scottish mathematician John Napier in the early 17th century, around the year 1617.

What is Napier bone used for?

Napier's Bones, also known as Napier's rods, are used for multiplication, division, and square root calculations. The device consists of a set of rectangular rods or bones with each bone representing a single digit in the multiplication table.

By manipulating the rods, users can quickly perform calculations that would otherwise be time-consuming to complete by hand. The Napier bone is an early example of a calculating device and is considered a predecessor to modern mechanical calculators.

Learn more about Napier bone  at:

https://brainly.com/question/24242764

#SPJ1

Most of the indentured servants in the American colonies were born in. A. Africa B. Asia OC. South America OD. Europe

Answers

Answer:Europe

Explanation: Just took it

The following example demonstrates a program that uses 3 levels of nested dictionaries to create a simple music library. The following program uses nested dictionaries to store a small music library. Extend the program such that a user can add artists, albums, and songs to the library. First, add a command that adds an artist name to the music dictionary. Then add commands for adding albums and songs. Take care to check that an artist exists in the dictionary before adding an album, and that an album exists before adding a song.

music = {
'Pink Floyd': {
'The Dark Side of the Moon': {
'songs': [ 'Speak to Me', 'Breathe', 'On the Run', 'Money'],
'year': 1973,
'platinum': True
},
'The Wall': {
'songs': [ 'Another Brick in the Wall', 'Mother', 'Hey you'],
'year': 1979,
'platinum': True
}
},
'Justin Bieber': {
'My World':{
'songs': ['One Time', 'Bigger', 'Love Me'],
'year': 2010,
'platinum': True
}
}
}

#complete/edit code given below:

# Get user input

# While user input != 'exit'
# ...

Answers

Answer:

def add_album(artist,album):

   song_list = input("enter the list of song titles separated by comma: ").split(",")

   print(song_list)

   year = int(input("enter release year: "))

   is_platinum = bool(input("Is it platinum? True/False"))

   music[artist][album] = {}

   music[artist][album]['songs'] = song_list

   music[artist][album]['year'] = year

   music[artist][album]['platinum'] = is_platinum

def add_artist():

   artist = input("enter name of artist: ")

   if music.get(artist, "no") == "no":

       music[artist] = {}

       

   else:

       print("artist already exist in dictionary.")

   is_album = input("add album? ")

   if is_album == "yes":

       album_name = input("Enter album name: ")

       add_album(artist,album_name)

           

for _ in iter(dict, 0):

   is_exist = input("Do you want to end the program? yes/no: ")

   if is_exist == "yes":

       break

   elif is_exist == "no":

       is_art = input("Add artist? ")

       if is_art == "yes":

           add_artist()

       else:

           print("enter  yes/no")

   else:

       print("make a decision, yes/no")

Explanation:

The python program defines an "add_artist" and "add_album" function that references the dictionary "music". The functions prompt for user inputs of the artist name, album, year, and platinum record.

The functions use the bracket notation to access and update the dictionary in the memory.

what is government to business ​

Answers

Government-to-business is a relationship between businesses and governments where government agencies of various status/levels provide services and/or information to a business entity via government portals or with the help of other IT solutions.

Source: https://snov.io/glossary/g2b/

Which statistical measurement tools should be
used to solve the problem? Check all of the boxes
that apply.
A coach wants to calculate the average test scores
of students who participate in the most popular
sport that the school offers.
mean
median
mode

Answers

Answer:

mean

mode

Explanation:

edg 2020

Answer:

MEAN

mode

Explanation:

when computer and communications are combined, the result is information and cominiations Technology (true or false)​

Answers

Answer: When computer and communication technologies are combined the result is Information technology.

Explanation: This is a technology that combines computation with high-speed data, sound, and video transmission lines. All computer-based information systems utilized by companies, as well as their underlying technologies, are referred to as information technology.

As a result, information technology encompasses hardware, software, databases, networks, and other electronic gadgets.

IT refers to the technological component of information systems, making it a subsystem of information systems.

Information systems, users, and administration would all be included in a broader definition of IT.

Many organizations rely on IT to support their operations, since IT has evolved into the world's primary facilitator of project activities. IT is sometimes utilized as a catalyst for fundamental changes in an organization's structure, operations, and management. This is because of the capabilities it provides for achieving corporate goals.

These competences help to achieve the following five business goals:

Increasing productivity,

lowering expenses,

improving decision-making,

improving customer interactions, and

creating new strategic applications.

5. It is possible to prevent someone
from copying the cell from yoursheet?
How?​

Answers

can you elaborate more?

Answer:

click REVIEW tab and then "protect workbook"

Explanation:try it

What formatting changes do spreadsheet applications permit in the rows and columns of a spreadsheet?
Row and Column Formatting Options
Formatting rows and columns is similar to cell formatting. In an OpenOffice Calc spreadsheet, you can format data entered into rows and columns with the help of the Rows and Columns options. You can insert rows and columns into, or delete rows and columns from, a spreadsheet. Use the Insert or Delete rows and columns option on the Insert tab. Alternatively, select the row or column where you want new rows or columns to appear, right-click, and select Insert Only Row or Only Column options.

You can hide or show rows and columns in a spreadsheet. Use the Hide or Show option on the Format tab. For example, to hide a row, first select the row, then choose the Insert tab, then select the Row option, and then select Hide. Alternatively, you can select the row or columns, right-click, and select the Hide or Show option.

You can adjust the height of rows and width of columns. Select Row and then select the Height option on the Format tab. Similarly, select Column, then select the Width option on the Format tab. Alternatively, you can hold the mouse on the row and column divider, and drag the double arrow to the position. You can also use the AutoFit option on the Table tab to resize rows and columns.

Answers

Formatting rows and columns in a spreadsheet is similar to cell formatting. In OpenOffice Calc, users can insert or delete rows and columns, hide or show them, and adjust the height and width of the rows and columns.

What is spreadsheet?

A spreadsheet is an electronic document that stores data in a tabular format and is used to perform calculations and analysis. It is a type of software program designed to assist with data entry, calculations, and other analysis tasks. Spreadsheets often contain formulas and functions that allow users to quickly and accurately calculate values based on the data they enter. Spreadsheets also provide users with the ability to present data in an organized and visually appealing way. Spreadsheets are an essential tool for businesses, schools, and other organizations to help them make decisions, track progress, and manage resources.

Users can access these options from the Insert, Format, and Table tabs. Alternatively, they can select the row or column they want to format, right-click, and select the relevant option. Additionally, users can hold the mouse on the row or column divider and drag the double arrow to the desired position. The AutoFit option on the Table tab can also be used to resize rows and columns.

To learn more about spreadsheet
https://brainly.com/question/30039670
#SPJ1

Draw an activity diagram that models the following scenario for a point of sale system. [15] • the sales clerk enters item codes until all the customer’s purchases are recorded • the subtotal, taxes and total amount due are calculated • the customer can choose to pay with cash or a credit card • if the customer chooses to pay by credit card, a credit check is done • if the customer’s credit card is declined or the customer has insufficient cash, the sale is voided • if the customer can pay, the payment is recorded and a receipt is issued to the customer

Answers

The activity diagram is shown below:

The Activity Diagram

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

                     | Sales Clerk     |

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

                              |

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

                      |Enter Item Codes |

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

                              |

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

                      | Calculate Total |

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

                              |

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

               +------+ Choose Payment  +-------+

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

               |                                 |

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

      | Cash Payment  |                | Credit Card  |

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

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

                                      |  Check Credit  |

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

                                                |

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

                      | Credit Declined |

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

                                |               |

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

                      | Insufficient    |      |

                      | Funds           |      |

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

                                |               |

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

                      | Record Payment  |      |

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

                                |               |

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

                      |  Print Receipt  |      |

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

                                |               |

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

                      |     Finish      |      |

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

This diagram reveals the sequence taken by the system to finalize the sale. Notably absent from this process is any direct participation from the customer.

Read more about activity diagrams here:

https://brainly.com/question/30187182

#SPJ1

In this lab, you use what you have learned about parallel arrays to complete a partially completed C++ program. The program should:

Either print the name and price for a coffee add-in from the Jumpin’ Jive Coffee Shop
Or it should print the message Sorry, we do not carry that.
Read the problem description carefully before you begin. The file provided for this lab includes the necessary variable declarations and input statements. You need to write the part of the program that searches for the name of the coffee add-in(s) and either prints the name and price of the add-in or prints the error message if the add-in is not found. Comments in the code tell you where to write your statements.

Instructions
Study the prewritten code to make sure you understand it.
Write the code that searches the array for the name of the add-in ordered by the customer.
Write the code that prints the name and price of the add-in or the error message, and then write the code that prints the cost of the total order.
Execute the program by clicking the Run button at the bottom of the screen. Use the following data:

Cream

Caramel

Whiskey

chocolate

Chocolate

Cinnamon

Vanilla

In this lab, you use what you have learned about parallel arrays to complete a partially completed C++

Answers

A general outline of how you can approach solving this problem in C++.

Define an array of coffee add-ins with their corresponding prices. For example:

c++

const int NUM_ADD_INS = 7; // number of coffee add-ins

string addIns[NUM_ADD_INS] = {"Cream", "Caramel", "Whiskey", "chocolate", "Chocolate", "Cinnamon", "Vanilla"};

double prices[NUM_ADD_INS] = {1.50, 2.00, 2.50, 1.00, 1.00, 1.25, 1.00}

What is the program about?

Read input from the user for the name of the coffee add-in ordered by the customer.

c++

string customerAddIn;

cout << "Enter the name of the coffee add-in: ";

cin >> customerAddIn;

Search for the customerAddIn in the addIns array using a loop. If found, print the name and price of the add-in. If not found, print the error message.

c++

bool found = false;

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

   if (customerAddIn == addIns[i]) {

       cout << "Name: " << addIns[i] << endl;

       cout << "Price: $" << prices[i] << endl;

       found = true;

       break;

   }

}

if (!found) {

   cout << "Sorry, we do not carry that." << endl;

}

Calculate and print the total cost of the order by summing up the prices of all the add-ins ordered by the customer.

c++

double totalCost = 0.0;

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

   if (customerAddIn == addIns[i]) {

       totalCost += prices[i];

   }

}

cout << "Total cost: $" << totalCost << endl;

Read more about program here:

https://brainly.com/question/26134656

#SPJ1

children and texhnology

Answers

Answer: technology better

Explanation:

What is a common use for append queries?
combining two databases together
mailing payment information to employees
archiving data from live tables to archive tables
sending customers receipts that show their orders

Answers

Answer:

You use an append query when you need to add new records to an existing table by using data from other sources. If you need to change data in an existing set of records, such as updating the value of a field, you can use an update query.

Answer:

The answer is C)archiving data from live tables to archive tables

Explanation:

edg 2021

Why is photosynthesis important for all the ecosystems?

Answers

Answer:

Photosynthesis is important because the process produces oxygen and energy. The oxygen produced helps organisms like animals and humans to breathe and the energy produced helps provide energy to the consumers in the food chain.

Tunes up and maintains your PC, with anti-spyware, privacy protection, and system cleaning functions. A _ _ _ n _ _ _ S _ _ _e _ C _ _ _

Answers

Tunes up and maintains your PC, with anti-spyware, privacy protection, and system cleaning functions is all-in-one PC optimizer"

How do one  maintains their PC?

An all-in-one PC optimizer improves computer performance and security by optimizing settings and configuration. Tasks like defragmenting hard drive, optimizing startup, managing resources efficiently can be done.

Anti-spyware has tools to detect and remove malicious software. Protect your computer and privacy with this feature. System cleaning involves removing browser history, temporary files, cookies, and shredding sensitive data.

Learn more about  privacy protection from

https://brainly.com/question/31211416

#SPJ1

A sequence of integers such as 1, 3, 5, 7, … can be represented by a function that takes a non-negative integer as parameter and returns the corresponding term of the sequence. For example, the sequence of odd numbers just cited can be represented by the function

int odd(int k) {return 2 * k + 1;}
Write an abstract class AbstractSeq that has a pure virtual member function

virtual int fun(int k) = 0;
as a stand-in for an actual sequence, and two member functions

void printSeq(int k, int m);
int sumSeq(int k, int m)
that are passed two integer parameters k and m, where k < m. The function printSeq will print all the terms fun(k) through fun(m) of the sequence, and likewise, the function sumSeq will return the sum of those terms. Demonstrate your AbstractSeq class by creating subclasses that you use to sum the terms of at least two different sequences. Determine what kind of output best shows off the operation of these classes, and write a program that produces that kind of output.

Answers

Answer:

1,3,5,7 i thinks , wait for 5 minuts

Explanation:

vvv

from which family does Ms word 2010 belong to​

Answers

Answer:

Microsoft Word 2010 belongs to the Microsoft Office 2010 suite.

Explanation:

Microsoft Word 2010 was released as part of the Microsoft Office 2010 suite, which was launched in June 2010. The suite included various applications such as Word, Excel, PowerPoint, Outlook, and others. Microsoft Word 2010 specifically is a word processing software designed to create and edit text-based documents. It introduced several new features and improvements compared to its predecessor, Word 2007. These enhancements included an improved user interface, enhanced collaboration tools, new formatting options, an improved navigation pane, and improved graphics capabilities. Therefore, Microsoft Word 2010 is part of the Microsoft Office 2010 family of software applications.

For a given gate, tPHL = 0.05 ns and tPLH = 0.10 ns. Suppose that an inertial delay model is to be developed from this information for typical gate-delay behavior.
Assuming a positive output pulse (LHL), what would the propagation
delay and rejection time be?

Answers

The rejection time (time for the output to remain stable at low after input changes from high to low) is also 0.05 ns.

How to determine the delays

Propagation Delay:

The propagation delay (tPHL) is given as 0.05 ns (nanoseconds).

This represents the time it takes for the output to transition from a high to a low level after the input changes from a high to a low level.

Propagation Delay (tPHL) = 0.05 ns

Rejection Time:

The rejection time (tRHL) is the minimum time required for the output to remain stable at a low level after the input changes from a high to a low level before the output starts to transition.

Rejection Time (tRHL) = tPHL

Hence = 0.05 ns

Therefore, for the given gate and assuming a positive output pulse (LHL):

Read more on delay model  here https://brainly.com/question/30929004

#SPJ1

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

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

Answers

Explanation:

you can do that with calculator only

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

Help plz

Which of the following statements are true about cyberbullying:

1. Cyberbullying uses electronic communication to bully a person.

11. Cyberbullying is a crime in many states.

III. Instances of cyberbullying do not affect the digital footprint of the victim.

IV. Cyberbullying hurts real people even though we can't always see their reactions
online.

I and IV

O ll and III

O 1, 11, and IV

All of the above

Answers

1 and IV are the are the right answers because cyber bullying is online and it hurts real people but you can’t see there reaction.

The following statements are true about cyberbullying: Cyberbullying uses electronic communication to bully a person. Cyberbullying hurts real people even though we can't always see their reactions.

What is cyberbullying?

The use of mobile phones, instant messaging, e-mail or social networking sites to intimidate or harass someone is known as cyberbullying.

The correct answer is "I and IV." Statement I is true because cyberbullying is defined as using electronic communication to bully a person.

Statement IV is also true because even though we may not be able to see the victim's reactions online, cyberbullying can still have real-life consequences and can hurt the victim emotionally or mentally.

Statement II is false because cyberbullying is a crime in many states, and statement III is also false because instances of cyberbullying can affect the victim's digital footprint.

Hence, the correct statements are "I and IV".

To learn more about cyberbullying click here:

https://brainly.com/question/8142675

#SPJ2

explain the technology of: Emitter Coupled Logic​

Answers

Emitter-Coupled Logic (ECL) is a type of digital logic circuit that was developed in the 1950s as a high-speed alternative to other forms of logic, such as TTL (transistor-transistor logic) and CMOS (complementary metal-oxide-semiconductor).

What is the technology?

The input and output voltage swings in ECL are small (0.8 V), the input impedance is high, and the output impedance is low. The transistors are also never saturated. As a result, gate delays are short, transistor states change quickly, and fanout capability is high.

Therefore, ECL circuits use bipolar junction transistors (BJTs) as their primary active devices. These transistors operate in the "saturated" region, where they are biased to conduct heavily, which allows them to switch very quickly. The input signals to an ECL circuit are differential, meaning that they consist of two complementary signals that are opposite in polarity.

Read more about technology here:

https://brainly.com/question/7788080

#SPJ1

ProjectSTEM CS Python Fundamentals - Lesson 3.3 Question 2 - RGB Value:

Test 6: Using 256 for all inputs, this test case checks that your program has no output. / Examine the upper condition for each color.

Test 10: This test case sets the input for blue beyond the limit, while red and green are below. It checks if your program's output contains “Blue number is not correct”, but not “Red number is not correct”, or “Green number is not correct” / Check that you output the correct phrase when the number is outside the range. Make sure that only the incorrect color phrases are output.

ProjectSTEM CS Python Fundamentals - Lesson 3.3 Question 2 - RGB Value: Test 6: Using 256 for all inputs,

Answers

While CMYK is frequently used to print out colors, RGB is utilized when the colors need to be presented on a computer monitor (such as a website).Make the variable "alien color" and give it the values "green," "yellow," or "red." To determine whether the alien is green, create an if statement.

How does Python find the RGB color?Colors can only be stored in Python as 3-Tuples of (Red, Green, Blue). 255,0,0 for red, 0 for green, and 255,0 for blue (0,0,255) Numerous libraries use them. Of course, you may also create your own functions to use with them.The rgb to hex() function, which takes three RGB values, is defined in line 1.The ":X" formatter, which automatically converts decimal data to hex values, is used in line 2 to construct the hex values. The outcome is then returned.Line 4 is where we finally call the function and supply the RGB values.Verify the accuracy of the RGB color code provided. While CMYK is frequently used to print out colors, RGB is utilized when the colors need to be presented on a computer monitor (such as a website).

To learn more about Python refer to:

https://brainly.com/question/26497128

#SPJ1

A business wants to evaluate how much they're spending on their customers, versus how much their customers go on to spend. If they want to see how much a customer will spend during the time they're a customer, that measurement would be?

Answers

Since the business wants to evaluate how much they're spending on their customers, versus how much their customers go on to spend. The measurement that a business would use to evaluate how much a customer will spend during the time they are a customer is called Customer Lifetime Value (CLV).

What is Customer Lifetime Value (CLV)?

CLV is a prediction of the net profit attributed to the entire future relationship with a customer. It is calculated by multiplying the average value of a sale by the number of repeat transactions and the average retention time.

Therefore, based on the above, CLV can be used to identify which customers are the most valuable to a business and to allocate resources accordingly.

Learn more about business from

https://brainly.com/question/28464469

#SPJ1

6
6 points
is a vector based using rigs to move body parts instead of drawing over and over.
2D animation
motion graphics
computer animation (3D)
stop motion

Answers

The phrase "vector animation" describes animation in which the art or motion is controlled by vectors rather than by pixels.

Explain about the vector animation?

Scalable vector graphics are the best option for web pages since they provide at least 16.7 million colors, while GIF only supports 256 in terms of raster vs. vector animation (animated illustrations, logos, icons, etc.).

Editors' Choice: Adobe Animate is the best animation programme overall. Photoshop Animate Image courtesy of Adobe Adobe Animate is the greatest animation program to choose when looking for vector-based software that is easy for beginners to use while still being useful for cross-platform projects.

When animating its features and shorts, Pixar Animation Studios uses proprietary software called Presto, which was created and is utilized exclusively within the company. Only Pixar uses Presto, which isn't for sale.

To learn more about vector animation refer to:

https://brainly.com/question/28251771

#SPJ9

Which of these best describes the principle of least privilege? Users should have at least the privileges they need to do their jobs, and usually more. Users should have at least the privileges they need to do their jobs, and usually more. Only one system administrator should have the highest level of privileges. Only one system administrator should have the highest level of privileges. The fewer privileges users have, the better a network operates. The fewer privileges users have, the better a network operates. Users should have the minimum privileges needed to do their work. Users should have the minimum privileges needed to do their work.

Answers

The statement which best describes the principle of least privilege is: D. Users should have the minimum privileges needed to do their work.

What is principle of least privilege?

Principle of least privilege is also referred to as the principle of minimal privilege (least authority) and it can be defined as a security concept that involves giving an end user, software program, or process the least (minimum) levels of access and permissions necessary to perform  a work or an action in a database.

In this context, end users should have the least (minimum) privileges needed to do their work, in order to protect a database or network.

Read more on least privilege here: brainly.com/question/4365850

Answer:

Users should have the minimum privileges needed to do their work.

Explanation:

Ed22

Which logic correctly describes an algorithm to find the smallest of the three numbers a, b, and c and store the smallest number in small?

A.
If a is less than b, then set a to small, else set b to small, else set c to small.
B.
If a is less than b, then set small to a, else set small to b.
If c is less than small, then set small to c.
C.
If a is less than b, then set small to b, else set small to c.
If c is less than small, then set small to a.
D.
If a is less than small, then set small to a.
If b is less than small, then set small to b.
If c is less than small, then set small to c.

Answers

Answer:

D

Explanation:

Answer:

B. If a is less than b, then set small to a, else set small to b.

If c is less than small, then set small to

Explanation:

Plato correct!!

Other Questions
Why did the March on Washington increase publicsympathy for civil rights?Select all that apply.a. White racists abused the marchers violently.b. White marchers appeared alongside AfricanAmericans.c. Protestors were arrested for violating unjustlaws.d. The event was peaceful. A water balloon is thrown upward from a height of 5 feet with an initial velocity of 35 feet per second. The quadratic function h(t)=-16t^2+35t+5 represents the height of the balloon, h, in feet t seconds after it is thrown. Determine when the balloon is more than 10 feet above the ground. Round your answer to the nearest thousandth. What are tornadoes made out of and where do tornadoes usually target at? 1. What is the 90th percentile if the sample size is 11?2. What is the simple size if the degree of freedom is 30?A. 29B. 31C. 28D. 303. What is the t-value if the sample size is 16 and area is 0.10?4. In the t-distribution, what is the degree of freedom if n = 19?I NEED IT NOW PLSS I forgot to post the picBut please helpjust need answers Combustion engines that power vehicles indirectly give rise to which gas that is beneficial in the atmosphere, but also harmful in the troposphere? Select one: a. N2O, nitrous oxide b. CFC, chlorofluorocarbon c. O3, ozone d. CO, carbon dioxide Moraines left by glaciers are different from deposits left by rivers because the rocks left behind are _____. 1.How much of the radiation from the sun reaches Earths surface?50%25%70%100%2.Which method of heat transfer is responsible for a person burning their hand on a stove?convectionconductionradiationthermal energy3.Why is noon not the hottest part of the day if the sun is directly overhead?The ground absorbs the solar radiation and releases it throughout the later afternoon.The solar radiation is more direct at later times in the day.The cloud cover at noon prevents solar radiation from reaching Earths surface.The ground continues to absorb radiation until the sun goes down and releases it all at night.4.Which stage of the water cycle occurs when water vapor exits plants through their leaves?transpirationevaporationcondensationprecipitation5.Identify the method of heat transfer responsible for warm air masses rising, then cooling and condensing.convectionradiationthermal energyconduction6.Identify the type of cloud that is associated with thunderstorms, hail, heavy rains, lightning, and tornadoes.cirrostratuscumulonimbusaltostratusstratocumulus7.Earths albedo determines which of the following properties?reflectivity of Earths atmospherereflectivity of Earths surfaceamount of solar radiation that passes through the atmosphereamount of heat absorbed by clouds8.What is the relationship between temperature and air pressure?As temperature increases, air pressure increases.As temperature increases, air pressure decreases.There is no relationship between temperature and air pressure.As temperature decreases, air pressure decreases.9.Identify the layer of the atmosphere that protects Earth from meteors.tropospherestratospherethermospheremesosphere10.What factors affect global winds?jet streams, Hadley cells, and trade windsHadley cells, pressure belts, and the Coriolis effectconvection cells, pressure belts, and the Coriolis effectconvection cells, polar westerlies, and the greenhouse effect11.Which method of heat transfer do you experience when you put your hands near a fire and feel the warmth?thermal energyconvectionradiationconduction12.Which of the following choices is not a particulate that is found in the atmosphere?water vaporpollendirtash13.Which phenomenon is responsible for the blue color of the sky?scatteringalbedoabsorptionradiation14.Which layer of the atmosphere is the hottest layer?thermospheretropospherestratospheremesosphere15.Answer the question below.Compare and contrast the four main types of clouds and the weather they indicate. Use details to support your answer.16.Which phenomena causes Earths winds to deflect as they move around the globe?the Coriolis effectthe tradewindsthe greenhouse effectuneven solar heating17.Which factor does not affect the amount of solar radiation that an area receives?the locations latitudethe time of yearthe cloud cover in the areathe suns temperature18.Which type of cloud is associated with fair weather and appears long and wispy?cumulusstratusaltocirrus19.The rise of oxygen in the atmosphere allowed which of the following to form?iron ores in the crustcyanobacteriaUV radiationthe ozone layer20.Answer the question below.Explain how global winds are created. Use details to support your answer.21.Which gas makes up the largest percentage of the atmosphere?oxygenmethanewater vapornitrogen22.Identify the hypothesis that early life arose from organic compounds forming in the atmosphere because of the combination of gases present and lightning.the Miller-Urey hypothesisthe Oparin-Urey hypothesisthe meteorite hypothesisthe Oparin-Haldane hypothesis23.Which example below would not be found on primitive Earth?volcanoeslightning stormsammonia gasoxygen gas24.Which type of cloud indicates that rain, snow, or thunderstorms are on the way?cirrusstratusaltocumulus25.How is absolute humidity measured?It determines the mass of oxygen in a volume of air.It determines the mass of water in a volume of air.It determines the ratio of water in a volume of air to the total amount that the volume of air can hold.It determines the percent of water vapor in the air.I will mark brainliest. according to coakley, _____ is a conception of socialization as participatory learning through which people are involved in larger processes of cultural production, reproduction, and change. Recall what you know about protein synthesis to answer the following questions.RNA transfers the DNA code from the of the cell to the . Which describes the transformations from the graph of f(x) to the graph of f(x4) ? why was Robert e. Lee effective as a military general according to old testament the first of patriarchs after the flood and his the father of isaac he is the traditional founder of the ancient hebrew nation On a math test, 17 out of 25 problems were word problems. what percent of the problems were word problems? enter your answer as a number followed by the percent symbol, like this: 42% Hatch Company has two classes of capital stock outstanding: 8%, $20 par preferred and $5 par common. At December 31, 2014, the following accounts were included in stockholders equity.Preferred Stock, 150,000 shares$ 3,000,000Common Stock, 2,000,000 shares10,000,000Paid-in Capital in Excess of ParPreferred Stock200,000Paid-in Capital in Excess of ParCommon Stock27,000,000Retained Earnings4,500,000The following transactions affected stockholders equity during 2015.Jan. 130,000 shares of preferred stock issued at $22 per share.Feb. 150,000 shares of common stock issued at $20 per share.June 12-for-1 stock split (par value reduced to $2.50).July 130,000 shares of common treasury stock purchased at $10 per share. Hatch uses the cost method.Sept. 1510,000 shares of treasury stock reissued at $11 per share.Dec. 31The preferred dividend is declared, and a common dividend of 50 per share is declared.Dec. 31Net income is $2,100,000.Prepare the stockholders equity section for Hatch Company at December 31, 2015 the world population is over 7 billion. which declaration uses the fewest bits while guaranteeing that worldpopulation can be assigned the value 7 billion without error? A person invests 1000 dollars in a bank. The bank pays 4.5% interest compounded semi-annually. To the nearest tenth tenth of the year, how long must the person leave the money in the bank until it reaches 1500 dollars? The hardening of arterial walls is called? For example, you could give your opinion, Prop 22 passed, keeping drivers essentially as independent contractors - was that a good thing? Was anyone affected directly? Friends, family? Share if comfortable. the martian moon phobos has a period of 460 min and an orbital radius of 9400 km. a. convert the distance and orbital period into scientific notation with si units. b. what is the mass of mars? c. what is the centripetal acceleration of phobos as it spins around mars?.