helppp plzzz thanksss enjoy ur day ​

Helppp Plzzz Thanksss Enjoy Ur Day

Answers

Answer 1

Answer:

D

Explanation:

I believe...

Answer 2

Answer:

the answer is b

Explanation:

you should check for spelling errors and correct punctuation before you mail the letter and/or submit the document. now I am starting to sound like my language teacher

hope I helped :)


Related Questions

PLZ HELP What will be the output? class num: def init (self.a): self. number = a mul* __(self. b) return self. number + b. number numA = num(5) nunB = num 10 product = numA * numB printiproduct) an error statement 0 50 ( 15​

Answers

Answer:

15

Explanation:

got it right on edge

The output for the program will be 50 with error statement is 0.50.

What is program?

Program is defined as a collection of guidelines that a computer follows to carry out a certain task. Low-level access to system memory is made possible by the procedural and general-purpose nature of the C programming language. To create an executable that a computer can run, a C program needs to be run through a C compiler. A computer programmer can write lines of code that the computer can understand by utilizing a programming language to develop a program.

A & B and the variable a & b are distinct. Thus, the #main program is the only program that functions.

As a result, A = 5 and B = 10, and the answer is

A x B, which equals 5 x 10 = 50.

Thus, the output for the program will be 50 with error statement is 0.50.

To learn more about program, refer to the link below:
https://brainly.com/question/11023419

#SPJ2

Which of the following options allow you to access a computer remotely?

a. NTP
b. SSH
c. Server
d. VPN

Answers

Answer:

b. SSH

Explanation:

Secure Shell (SSH) is a protocol that allows you to access a computer remotely by providing safe network communications via an unsecured network.

Secure Shell (SSH) protocol can be used to perform essential functions such as protected file transfers, remote access to private network systems, devices, and applications.

Thus, option "B" is the right answer.

Write a program that keeps track of a simple inventory for a store. While there are still items left in the inventory, ask the user how many items they would like to buy. Then print out how many are left in inventory after the purchase. You should use a while loop for this problem. A sample run is below.

(CodeHS, PYTHON)

Answers

Answer:

STARTING_ITEMS_IN_INVENTORY = 20

num_items = STARTING_ITEMS_IN_INVENTORY

# Enter your code here

while num_items > 0:

print("We have " + str(num_items) + " items in inventory")

toBuy = int(input("How many would you like to buy?"))

if toBuy > num_items:

print("There is not enough in inventory")

print("Now we have " + str(num_items) + " left")

else: # ok to sell

num_items = num_items - toBuy # update

if num_items > 0: # only for printing

print("Now we have " + str(num_items) + " left")

print("All out!")

Explanation:

This allows Python to store the number of items in inventory after each purchase by subtracting how much is bought with the toBuy function by how much is left. This continues until num_items is no longer greater than zero. If what’s toBuy goes above the # of items left in inventory, then the “if toBuy > num_items” segment of the code comes into play by telling the user there’s not enough and re telling them how much is left and how much they’d like to buy. When the items in inventory is out, meaning the exact amount that’s left is purchased, then Python prints “All out!”

Following are the code to the given question:

Program Explanation:

Defining a variable "INVENTORY_ITEMS" that hold an integer value.Defining a variable "num" that holds "INVENTORY_ITEMS" value.In the next step, a while loop is declared that checks "num" value greater than 0.Inside the loop, "num and To_Buy" is declared and in the To_Buy it inputs value by user-end.In the next step, conditional statement is used that check "To_Buy" value and prints its value.At the last another conditional statement is used that checks num value, and print its value.

Program:

INVENTORY_ITEMS = 20#defining a variable INVENTORY_ITEMS that hold integer value

num= INVENTORY_ITEMS#defining a num variable that holds INVENTORY_ITEMS value  

while num > 0:#defining a while loop that check num value greater than 0

   print("We have " + str(num) + " items in inventory")#print num value with message

   To_Buy = int(input("How many would you like to buy?"))#defining To_Buy variable that inputs value

   if To_Buy > num:#defining if block that check To_Buy value greater than num value

       print("There is not enough in inventory")#print message

       print("Now we have " + str(num) + " left")#print num value with message

   else: # defining else block

       num= num - To_Buy#using num variable that decreases num by To_Buy

if num> 0: #use if to check num greater than 0

   print("Now we have " + str(num) + " left")#print num value with message

print("All out!")#print message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18634688

_______and ________ enables computers to communicate and it can pass information between two networks.

Answers

Answer:

Internet Protocol and Transmission Control Protocol        

Explanation:

Internet protocol, which is also known as IP and Transmission Control Protocol, which is also known as TCP are the two important protocols that enables the computers to communicate various information and data and allow it to pass between two networks. It allows computers to connect to each other.  They are developed by Bob Kahn and Vint Cerf.

The following statement calls a function named half, which returns a value that is half
that of the argument. (Assume the number variable references a float value.) Write
code for the function.
result = half(number)

Answers

Answer:

function half(number) {

     let result = number/2;

     return result;

}

Explanation:

If an exception is thrown, it is passed to a block of code that can ____, which means to receive it in a block that can handle the problem.

Answers

Answer:

Catch the exception.

Explanation:

In Computer programming, an exception can be defined as an unprecedented error or event that occurs unexpectedly while a computer software application or program is running. Thus, when this exception occurs while a software program is running, it would affect its flow.

However, if the software program is able to handle and process unprecedented error or event that occured unexpectedly, it would continue to run but if it cannot handle it, the software program will force quit.

In Java programming language, exception class such as IOException, UserException, TimeoutException, and exception subclass such as CharacterCodingException, FileNotFoundException etc may be thrown when a software program encounters an unexpected error or event.

A software program that is properly coded or well-written is able to check for exceptions and appropriately handle the exceptions (unexpected errors) so as to prevent the software program from crashing or forced to quit.

This ultimately implies that, when an exception is thrown using a try clause or throw statement as it occurs, it is caught by a block of code in the software program.

Hence, if an exception is thrown, it is passed to a block of code that can catch the exception, which means to receive it in a block that can handle the problem.

Which of the following falls under the role of a web designer?
I. Creating the look and feel of a website
II. Writing the HTML and CSS that bring a site to life
III. Figuring out the best way to display information
IV. Thinking about the user experience
V. Building a website based on a given design
or
all of the above

Answers

Answer:

all of the above is the answer

Taylor and Rory are hosting a party. They sent out invitations, and each one collected responses into dictionaries, with names of their friends and how many guests each friend is bringing. Each dictionary is a partial list, but Rory's list has more current information about the number of guests. Fill in the blanks to combine both dictionaries into one, with each friend listed only once, and the number of guests from Rory's dictionary taking precedence, if a name is included in both dictionaries. Then print the resulting dictionary.

Answers

Answer:

Following are the code to this question:

def combine_guest(guest1, guest2):#defining a method combine_guest that accepts two dictionary

   guest2.update (guest1)#use dictionary guest2 that use update method to update guest2 dictionary

   return guest2#return guest2 dictionary values

Rory_guest= { "Ada":2, "Ben":3, "Dav":1, "Jo":3, "Charry":2, "Terry":1, "bob":4}#defining a dictionary and add value

Taylor_guest = { "Dav":4, "Nan":1, "bobert":2, "Ada":1, "Samantha":3, "Chr":5}#defining a dictionary and add value

print(combine_guest(Rory_guest,Taylor_guest))#calling the combine_guest method

Output:

{'Nan': 1, 'Samantha': 3, 'Ada': 2, 'bob': 4, 'Terry': 1, 'Jo': 3, 'Ben': 3, 'Dav': 1, 'Charry': 2, 'bobert': 2, 'Chr': 5}

Explanation:

In the code a method, "combine_guest" is defined, that accepts two dictionaries "guest1, guest2" inside the method, in which the "guest2" dictionary uses the update method to combine the value of the guest1 dictionary and use a return keyword to return guest2 values.

In the next step, two dictionaries are declared, that holds some values and use a print method to call the "combine_guest" method and prints its return values.  

Consider the code block below. What is the value of amount when this method is called twice, the first time using cookieJar(7) and then using cookieJar(22)?

public static int cookieJar(int addCookies) {

int amount = 0;
amount += addCookies;
return amount;

}
A. 7
B. 15
C. 22
D. 29
E. An error occurs

Answers

Answer:

C. 22

Explanation:

Given that the argument is being passed by value, there is no memory to consider.  So cookieJar(7) returns 7 and cookieJar(22) returns 22.

If the argument parameter was passed by reference or pointer, then perhaps the value from cookieJar(7) would be considered with cookieJar(22).

Note, this code block really isn't doing anything other than returning the value passed into it.  The "amount" variable is immediately set to 0, and then the value passed in is added to amount (which is 0), and returns.  The following code could replace this function:

public static int cookieJar(int addCookies){

return addCookies;

}

The above code will return an equivalent output to the given code.

Notice, the function is not dependent on any previous call, so the value for each is unique to the call itself, i.e., cookieJar(22) returns 22 and cookieJar(7) returns 7.

So, C. 22 would be correct.

Your company is designing a multi-tenant application that will use elastic pools and Azure SQL databases. The application will be used by 30 customers.
You need to design a storage solution for the application. The solution must meet the following requirements:
✑ Operational costs must be minimized.
✑ All customers must have their own database.
✑ The customer databases will be in one of the following three Azure regions: East US, North Europe, or South Africa North.
What is the minimum number of elastic pools and Azure SQL Database servers required?

Answers

Answer:

The minimum number of elastic pools and Azure SQL Database servers required is:

three elastic pools and one Azure SQL Database server.

Explanation:

The above will ensure that the Azure regions of East US, North Europe, or South Africa North are grouped into their three elastic pools.  Since cost minimization must be achieved, at the same time, one Azure SQL Database server will be enough to manage the 30 databases required, with one for each customer.  Creating more than one Database server will increase the operational costs.

Order the steps to add a recommended chart in excel.

Answers

1.Select the data you want to use for your chart.

2.Click Insert > Recommended Charts.

3. On the Recommended Charts tab, scroll through the list of charts that Excel recommends for your data, and click any chart to see how your data will look.  

4. When you find the chart you like, click it > OK.

5. Use the Chart Elements, Chart Styles, and Chart Filters buttons next to the upper-right corner of the chart to add chart elements like axis titles or data labels, customize the look of your chart, or change the data that’s shown in the chart.

6. To access additional design and formatting features, click anywhere in the chart to add the Chart Tools to the ribbon, and then click the options you want on the Design and Format tabs.

Please mark brainliest.

Answer:

select the data set , click on insert tab, view recommended charts, view a live preview of the chart and select the chart and click ok

Explanation:

edge

Which of these is the fastest transmission medium?
a. coaxial cable
b. twisted-pair cable
c. fibre-optic cable
d. copper cable

Answers

Answer:

Hey mate here's your answer ⤵️

Please refer to the attachment for the answer ☝️

Hope it was helpfulll

coaxial cable is the fastest transmission medium

When writing code, how can printing be useful?

Answers

Answer:

See Explanation

Explanation:

Printing while writing code can be useful in several ways.

One of which is to determine the progress of your code. Many a times when you write a code and some parts of your codes are not working as expected, you can use the print statement to track where the program stopped working properly.

Take for instance, you write a program of 50 lines of code and you suspect that the program stops working at line 30, you can use the print statement to track this program.

Please note that: the statement to be printed is not specific but you should make use of something unique that you can easily spot.

E.g

print("It worked up till this point")

A certain instructor assigns a 50-point problem and calculates an integer score 0-50 and assigns a letter grade according to the scale 40 - 50 is an A, 30 - 39 is a B, 20 - 29 is a C, 10 - 19 is a D and 0 - 9 is an F. Write a Python function called letter_grade which takes one argument, an integer, and RETURNS the appropriate letter grade.

Answers

Answer:

Following are the code to this question:

def letter_grade(x): #defining a method letter_grade that accepts one parameter

   if x>=50 and x<=40:#defining if block that check value of x greater than 50 and less than 40

       print("A")#print value

   if x>=30 and x<=39:#defining if block that check value of x greater than 30 and less than 39

       print("B")#print value

   if x>=20 and x<=29:#defining if block that check value of x greater than 20 and less than 29

       print("C")#print value

   if x>=10 and x<=19:#defining if block that check value of x greater than 10 and less than 19

       print("D")#print value

   if x>=0 and x<=9:#defining if block that check value of x greater than 0 and less than 9

       print("F")#print value

letter_grade(30) #calling the method letter_grade

Output:

B

Explanation:

In the above Python code, a method "letter_grade" is declared, that accepts an integer variable in its parameter, and defined the multiple if block to check the given value, which can be defined as follows:

In the first, if block, it checks the value of x greater than 50 and less than 40 , if the condition is true it will print the value "A".In the second, if block, it checks the value of x greater than 30 and less than 39,  if the condition is true it will print the value "B".In the third, if block, it checks the value of x greater than 20 and less than 29,  if the condition is true it will print the value "C".  In the fourth, if block, it checks the value of x greater than 10 and less than 19,  if the condition is true it will print the value "D".In the fifth, if block, it checks the value of x greater than 0 and less than 9,  if the condition is true it will print the value "F".

And at the last it call the method.

Write a C Program to Print the initial letter of Name Ferdous

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The question is about writing a C program that prints the initial letter of Name Ferdous.

Therefore, below is the given complete code that prints the first letter of the name Ferdous.

#include <stdio.h> /*import strandard input/output library*/

#include<string.h> /*import string library to handle string type of data*/

int main(void) /*started the program execution- program entry point*/

{

char *str = "Firdous";   /*char to pointer str contains string "Firdous"*/

int len = strlen(str);   /*this line of code is not neccary, but if you print other character for example last character of the name then you can use it*/

printf("First Letter of the name is: %c", str[0]);  /*print first letter of the name*/

}  /**program terminated*/

Can race condition happen in monolithic memcached.

a. True
b. False

Answers

Answer:

True

Explanation:

It is TRUE that race condition happens in monolithic Memcached. This is evident in that in a python language, where Memcached "gets" and "set" function tends to turn to a race condition if for example the two functions are used together to accomplish similar things like locking given that it is not atomic.

Hence, in this case, the correct answer is TRUE

It should be noted that a race condition cannot occur in monolithic memcached. Therefore, it's false.

A race condition simply means when two threads are able to access a shared variable at a particular time.

In such a case, the first thread and the second thread will perform their operations on the value and they'll race in order to see the thread that can write the value last row of the variable that's shared. A race condition

cannot occur in monolithic memcached. Therefore, it's false.

Learn more about race condition on:

https://brainly.com/question/13445523

What are 5 good movies like The Breakfast Club or 8 Mile?

Answers

Answer:

The Notebook, Beauty and the Beast, Step Brother, The Breakfast Club and The Little Mermaid

Explanation:

Answer:

Avatarlife of piThe Dark knightpirates of Caribbeanbeauty and beast

If a variable uses more than one byte of memory, for pointer purposes its address is: Group of answer choices the address of the last byte of storage the average of the addresses used to store the variable the address of the first byte of storage general delivery None of these

Answers

Answer:

the address of the first byte of storage.

Explanation:

If a variable uses more than one byte of memory, for pointer purposes its address is the address of the first byte of storage.

A buffer in computer technology can be defined as a temporary area set aside for data storage. Buffers reside in the random access memory (RAM). In the event that, a system process or program places more data (much more than what was originally or initially intended to be allocated for data storage) in a buffer, the extra data overflows. Consequently, this would result in having some of the data to flow into other buffers and thus, causing the data to be overwritten or corruption of the data being held in that buffer.

For instance, we can liken a buffer-overflow to pouring water (data) into a container (program memory), once it is filled the water begins to overflow as the container has reached its maximum amount.

Which of the following is the primary difference between analog and digital communication?

Im marking Brainliest

electric cables vs. fiber cables

electric pulses vs. electronic devices

radio signal vs. microwave signal

radio signal vs. radio frequency

Answers

Answer:

Radio signal vs. microwave signal.

Explanation:

it's the suitable but again it's a weak answer to compare analog from digital signals

Answer:

Electric pulses vs. electronic devices

Explanation:

edg2021

direct quote from AV notes: "Analog technology transmits information using electric pulses. The human voice is the best example of analog communication. As the telephone was the major communication channel in the past, analog communication was common and the only type used.

Today, we depend on digital communication. Digital technology breaks down information into numerical bits and transmits the bits to digital receivers that decode the bits and recompose the original information. "

You are running your warehouse using Autonomous Data Warehouse (ADW) service and you noticed that a newly configured batch job is always running in serial even through nothing else is running in the database. All your jobs are configured to run with parallelism enabled.What could be the reason for this batch job to run in serial?A. The batch job depends on only one table and parallelism cannot be enabled on single-table queries.B. The parallelism of batch job depends on the number of ADW databases involved in the queryC. The new batch job is connected to LOW consumer group.D. The new batch job runs on database tables that are not enable for parallel execution.E. Parallelism on the database is controlled by the application, not the database.

Answers

Answer:

C. The new batch job is connected to the LOW consumer group.

Explanation:

Remember, one of the main characteristics of the LOW consumer group database service is that queries would run serially.

Since in this case, we are told that the newly configured batch job is always running in serial, it most likely would be because the new batch job is connected to the LOW consumer group; as queries are designed to always run serially.

+
Which of the following telecommunications careers requires the completion of a master's degree?

line installer

network risk analyst

computer administrator

network administrator

Answers

Answer:

Network administrator

Answer:

Network Risk Analyst

Explanation:

Edg2021

Its in the AV Tech Notes

What technique is used when setup times at a workstation are sequence dependent?

Answers

Answer:

johnsons rule minimizes total idle time for both machines or work centers. What technique is used when setup times at a workstation are sequence dependent? determine the total time of each job sequence permutation considering the setup time and choose the best (lowest) time.

Explanation:

please mark me as brainliest thank you

The following program is suppose to use the sin() function in the math library and write out an input's absolute value over an interval. So for example if sine(0.6) is 0.564 then its absolute value is the same (0.564). But if sine(2.4) is -0.675 then its absolute value is 0.675. #include #include /* has sin(), abs(), and fabs() */ int main(void) { double interval; int i; for(i = 0; i <30; i++) { interval = i/10.0; printf("sin( %lf ) = %lf \t", interval, abs(sin(interval))); } printf("\n+++++++\n"); return 0; }

Answers

Answer:

#include <stdio.h>

#include <math.h> /* has sin(), abs(), and fabs() */

int main(void) {

   double interval;

   int i;

   for(i = 0; i <30; i++) {

       interval = i/10.0;

       printf("sin( %.1lf ) = %.3lf \t", interval, abs(sin(interval)));

   }

   printf("\n+++++++\n");

   return 0;

}

Explanation:

The C source code defines a void main program that outputs the absolute value of the sine() function of numbers 0.1 to 3.0.

The program is an illustration of loops.

Loops are used to perform repetitive and iterative operations.

The program statements in C language that completes the program are as follows:

interval = i/10.0;

printf("sin( %.1lf ) = %.3lf \t", interval, abs(sin(interval)));

The flow of the above statements is as follows

The first line determines the intervalThe second line prints the required output

Read more about similar programs at:

https://brainly.com/question/14575844

ANSWER ASAP! Which statements are true? Select 4 options.


A function can have many parameters.


A function can have a numeric parameter.


A function can have only one parameter.


A function can have a string parameter.


A function can have no parameters.


Please answer asap. Thank you.

Answers

Answer:

A,B,D and E are true

Explanation:

In many if not all programming languages, a function can have zero or more parameters of arbitrary type.

i have no idea how to get this answer, but here.

edge 2021

What is the value stored at x, given the statements:

int x;
x=3/(int)(4.5+6.4)

a. 0.3
b. 0
c. .275229
d. 3.3
e. None of these

Answers

Answer:

0.

Explanation:

Given

int x;

x=3/(int)(4.5+6.4)

Required

What is x?

The first line of the code segment declares x as integer. This means that, it will only hold non decimal numbers.

With the above explanation, options (a), (c) and (d) can not be true.

Solving further:

x=3/(int)(4.5+6.4)

The computer evaluates the denominator as:

x=3/(int)(10.9)

The denominator is then converted to an integer. So, we have:

x = 3/10;

3/10 = 0.3 but

Recall that: x will only hold non decimal numbers.

So:

x = 0;

which driver must be running and configured to enable a PC to communicate with a CompactLogix PLC on an Ethernet network

Answers

Answer:

EtherNet/Ip

Explanation:

This IP called the EtherNet/IP is an industrial communication network protocol which adapts the CIP fully known as Common Industrial Protocol to standard Ethernet. This is one of the leading industrial protocols in some areas of the world like the US. It is used in industries such as factory, hybrid.

The mode used by this driver is the

Explicitt Messaging of the EtherNet/IP protocol.

Cell address $A$4 in a formula means it is a ___________. *



A. All of the above

B. Mixed cell reference

C. Relative cell reference

D.Absolute cell reference​

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

Cell address $A$4 in a formula means it is an Absolute Cell Reference.

Absolute cell reference does not change when you copy the formula to other cells. when the $ symbol added in the front of the column and row, makes it absolute. It stops the row and column numbers from changing when you copy to other cells. The given $A$4 cell address contains the value in column A and row 4. It does not change the value when you copy the formula that has mentioned ($A$4) into other cells. For example, if you have value 10 at row 4 and column A. Then you multiple column B with A4 cell value and you want that A4 value will not change while copying formula from C1 to C10. You can use in column C1 as =B1*$A$4. Then you copy the formula to cell 10. The value of $A$4 will not change.

while the other options are not correct because:

In the relative cell reference values get changed in the formula, while in the mixed cell reference you can either locked the row or column while the row or column changes when the formula is copied respectively.

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

You are suddenly given a very large (1000 ) number of old desktop computers with old CRT monitors. What could you do with them

Answers

Answer:

I would fix them if they were broken, make good use of them and give them out to other people as marketing or sell them.

Explanation:

Use the {blank} to view your presentation the way an audience will see it.
A. Slide Show Button
B. Play Button
C. Tools Menu
D. View Menu

Answers

I would believe it would be A. Slide Show Button

Answer:

A. Slide Show Button

Explanation:

Other Questions
A study guide can be createda. On a computerD. By handC. Both of thesed. None of these btw it's c Which one is correct? Please hurry, the audio is just reading the question! 66 cm cube of silver is drawn into a wire 1 mile in a diameter does length of wire will be Suppose Yummy Treats Bakery issues common stock in exchange for a building. Yummy Treats Bakery should record the building at A. its market value. B. its book value. C. a value assigned by the board of directors. D. the par value of the stock given. A cyclist travels 7 miles in 15 minutes.What is her average speed in mph? find k so that x-1 is a factor of x^3 -3x^2 + kx - 1 what is the solution to -3x=9? Change wise, courageous,famous,proud,intelligent to abstract noun diagram 7(i) shows a square with area of 64cm formed using a string.The string is cut to form another two congruent rectangles with length 5 cm, as shown in diagram 7(ii).Calculate the area , one of the rectangles.If u guys can help me solve this, u guys really save my life.I need to submit tomorrow morning. Is 34 closer to 40 or 30 What is the equation for the following table?* The total cost, y, for a taxi ride depends on the number of miles traveled, x. Distance (mi), x 1 5 10 Total Cost ($), y 2.50 5.00 15.00 27.50 Which of the following is the radical expression 2d 7/10 2. Explain how to determine the wavelength of a wave.Type your answer here.I Read this paragraph from the essay.I have now been in India for over two years and a half after my return from South Africa. Over one quarter of that time I have passed on the Indian trains travelling third class by choice. I have travelled up north as far as Lahore, down south up to Tranquebar, and from Karachi to Calcutta. Having resorted to third class travelling, among other reasons, for the purpose of studying the conditions under which this class of passengers travel, I have naturally made as critical observations as I could. I have fairly covered the majority of railway systems during this period. Now and then I have entered into correspondence with the management of the different railways about the defects that have come under my notice. But I think that the time has come when I should invite the press and the public to join in a crusade against a grievance which has too long remained unredressed, though much of it is capable of redress without great difficulty.How does the author's decision to use the word crusade to describe a protest movement affect the text?A.) It makes the protest sound especially strong and committed.B.) It adds an element of irony to the description of the protest.C.) It implies that the protesters will not back down, no matter what.D.) It suggests that there is a religious reason behind the protest. Please help its for geometry 3- 4 paragraph on Celebrities should have more privacy rights. please I promise to you I will not copy I just need an idea mine is not so great What did Mary Ann Shadd do to stop slavery ? What is 238% of 250???? Who has the highest net worth on the planet? Which combination of alleles are always involved in the inheritance of a se.x-linked trait?heterozygous alleleshom.ozygous allelesalleles that are carried on X and Y chromosomesalleles that are carried on all chromosomes except the X and Y chromosomes Steam Workshop Downloader