1. Explain the pass by value and pass by reference mechanisms. Give examples that show their difference.
2. Consider the function -
int f(int n, int a[]) {
Int cnt = 0;
for (int i=0; i if (a[i] == a[0]) cnt++;
}
return cnt;
}
Explain what it does in one sentence. What is the return value when n = 5 and a = {1, 2, 1, 2, 1}?
3. Implement the makeStrCopy function. Remember that, It takes a string in copies to an output string out. The signature should be void makeStrCopy(char in[], char out[]). For example - if in = "hello", after calling makeStrCopy, out should also be "hello"
4. Dynamically allocate an array of floats with 100 elements. How much memory does it take?
5. Suppose int a[] = {1, 2, 3, 4, 5, 6, 7, 8, 9}. Suppose the address of a[0] is at 6000. Find the value of the following -
a. a[8]
b. &a[5]
c. a
d. a+4
e. *(a+2)
f. &*(a+4)
6. Ash tries to implement bubble sort the following way. In particular, notice that the loop iterates on the array in reverse. Fill in the box to implement the function.
void sort(int n, int a[]) {
for (int steps=0; steps for (int i=n-1; i>0; i--) {
///Write code here
}
}
}
7. implement the is_reverese_sorted() function to check if an array reverse sorted. For example if a = {6, 4, 3, 1}. Then is_reverse_sorted should return True
8. Modify the Selection sort function so that it sorts the array in reverse sorted order, ie. from the largest to smallest. For example reverse sorting a = {3, 4, 2, 5, 1} should result in {5, 4, 3, 2, 1}. Use the is_reverse_sorted() function to break early from the function if the array is already sorted
9. We wrote a program to find all positions of a character in a string with the strchr function. Now do the same without using strchr
10. Is there any difference in output if you call strstr(text, "a") and strchr(text, ‘a’)? Explain with examples.

Answers

Answer 1

There may be a difference in output between strstr(text, "a") and strchr(text, 'a'). An explanation with examples is provided to clarify the difference in behavior.

Pass by value and pass by reference are mechanisms for passing arguments to functions. In pass by value, a copy of the value is passed, while in pass by reference, the memory address of the variable is passed.

Examples illustrating their difference are provided.

The function counts the number of occurrences of the first element in the array and returns the count. When n = 5 and a = {1, 2, 1, 2, 1}, the return value is 3.

The makeStrCopy function copies the contents of the input string to the output string. It has a void return type and takes two character arrays as parameters.

To dynamically allocate an array of floats with 100 elements, it would take 400 bytes of memory (assuming each float occupies 4 bytes).

The values of the expressions are as follows: a. 9, b. 6004, c. 6000, d. 6004, e. 3, f. 6004.

The missing code to implement the bubble sort function is required to complete the implementation.

The is_reverse_sorted function checks if an array is sorted in reverse order and returns True if so.

The selection sort function is modified to sort the array in reverse sorted order, and the is_reverse_sorted function is used to optimize the sorting process.

A method to find all positions of a character in a string without using strchr is requested.

Learn more about reference mechanisms: brainly.com/question/32717614

#SPJ11


Related Questions

I will Brainliest and 15pts plzzz helppppppp
Tracing Code - Trace the code segments showing the variables' values in the columns while circling the final values.
4. # assume the user inputs the values: 9, 8, 2, -1
sum = 0 sum num
num = 0 0 0
while (num >= 0):
num = int(input("Enter a positive integer: "))
if (num % 2 == 0):
sum += num

print(sum) # the output is:_______________

Answers

Answer:

5

Explanation:

my teacher said but i going with it

Lets do a who know me better! 5 questions! if you get 4\5 you get brainliest or a 3\5 but anything below u dont get it!


How old am I?

Do I like Summer or Winter?

Whats my name? (You guys should get this.)

What grade am I in? (Its between 4th and 8th).

How many siblings do I have? ( its between 2 and 5)

Good Luck!

Answers

Answer:your 13

you enjoy winter but still like summer

Skylar

either 7 or 8th

3 siblings

Explanation:

Which of the following statements is
TRUE?
A. You must be connected to the Internet to compile
programs.
B. Not all compilers look the same.
C. All machines have a built in compiler.
D. All compilers contain a file browser.

Answers

Answer: B / Not all compilers look the same.

Explanation: Depending on the language you are programming in, would determine which compiler you use.

software that combines text static images ,video animation and sounds is known as?​

Answers

Answer: Interactive media

Explanation:

Interactive media, also called interactive multimedia, any computer-delivered electronic system that allows the user to control, combine, and manipulate different types of media, such as text, sound, video, computer graphics, and animation.

Hope This Helps!

Interactive media is the answer

Name two-fluid technologies that make use of water.

Answers

Answer:

Fire extenguisher and refrigerator

Refrigerator : There are 5 basic components in refrigeration I.e. fluid refrigerant, a compressor which controls the flow of refrigerant; the condensor coil( on the outside of the fridge), evaporation coils( on the inside of the fridge) and something calls an expansion device.

The compressor constricts the refrigerant vapour,raising its pressure and pushes it in the coils on the outside of the refrigerator.

When the hot gas in the coils meets the cooler air temperature of the kitchen it becomes a liquid.

Now in the liquid form at high pressure, the refrigerant cools down as it flows into the coils inside the freezer and the fridge.

The refrigerant absorbs the heat inside the fridge cooling down the air.

Last the refrigerant evaporates to a gas then flows back to the compressor where the cycle starts all over.

Fire Extinguishers: Water performs two functions; its conversion tosteam absorbs the heat, and the steam displaces the air from the vicinity of the flame. Many siimple fire extinguishers  are quipped with hand pumps or sources of compressed gas to propel water through the nozzle.

Explanation:

I hope this helps and pls mark me brainliest :)

Write a class RangeInput that allows users to enter a value within a range of values that

is provided in the constructor. An example would be a temperature control switch in

a car that allows inputs between 60 and 80 degrees Fahrenheit. The input control has

"up" and "down" buttons. Provide up and down methods to change the current value.

The initial value is the midpoint between the limits. As with the preceding exercises,

use Math. Min and Math. Max to limit the value. Write a sample program that simulates

clicks on controls for the passenger and driver seats

Answers

Answer:

UHHHM

Explanation:

A speed limit sign that says "NIGHT" indicates the _____ legal speed between sunset and sunrise.

Answers

Answer:

Maximum

Explanation:

Speed limits indicate the maximum speed you are legally allowed to drive.

Which of the following are allowed in the third section of the for loop statement?A) printf(ʺHello\nʺ);B) i++C) i+=2D) i--E) all of the above35).

Answers

The third section of a for-loop statement, also known as the update section, is responsible for updating the loop control variable. This is a crucial part of the for loop, as it helps control the number of iterations the loop goes through before it terminates.

In the given options, A) print ("Hello\n"); is a function used for displaying text on the screen and is not suitable for updating the loop control variable. Therefore, option A is not allowed in the third section of the for-loop statement.

Options B) i++, C) i+=2, and D) I-- are all valid ways of updating the loop control variable. i++ increments the variable by 1, i+=2 increments it by 2, and I-- decrements it by 1. These operations are allowed in the third section of the for-loop statement, as they effectively update the loop control variable.

In Summary, the allowed options in the third section of the for loop statement are B) i++, C) i+=2, and D) i--. Option E) "all of the above" is not correct, as option A is not allowed in this section. The main purpose of the third section is to update the loop control variable, and options B, C, and D serve this purpose effectively.

For more such questions on for-loop statement, click on:

https://brainly.com/question/19706610

#SPJ11

TRY IT Choose the Right Technology MP3 player Widescreen laptop computer Smartphone Tablet computer with wireless Internet Suppose your parents are planning to take you and your younger brother on a tour of several European countries. You are in charge of choosing a device for your family's vacation that will allow you to look up where to eat, what to see, and what to do. You will need something that you, your parents, and your younger brother can use. The device needs to accommodate your dad's large hands and your mother's request that it fit in her handbag, which is about half the size of a backpack O Digital camera Audio recorder DONE Which one of the following devices would you choose to meet those requirements?​

Answers

the answer is:

d. tablet computer with wireless internet.

UNIT 1 ACTIVITY

Troubleshooting

Part A

When your friend DaJuan turns on his computer, he hears four beeps. The computer

won't fully boot. DaJuan has a Dell computer with a quad core processor and has

recently upgraded his RAM.

Apply the troubleshooting methodology to help DaJuan understand and resolve his

problem. The steps of the methodology are listed for you. You can write directly on

the write suggestions for DaJuan at each step.

1. Identify the Problem (beeps are key here)

2. Internet Research

3. Establish a Theory of Probable Cause

4. Test the Theory

5. Establish a Plan of Action

6. Implement the Solution or Escalate

7. Verify Full System Functionality

8. Document Findings

Answers

Answer:

all of the above

Explanation:

SQL DML Query in MySQL SQL Query from A Single Table IS 4420, Database Fundamentals I. DDL We create the following tables in Lecture 7 1. Customer 2. Product 3. Orders 4. Orderline II. DML: Insert data into tables Use the code in Lecture8.rtf to insert data III. DML: query 1. List all data records for all four tables 2. List IDs of products in descending order 3. List the cities (distinctly) for the customers 4. List all orderlines have quantity more or equals to 5 5. List all columns of product with the name that contains the string 'laptop 6. List customers who lived in city 'Tucson 7. Count the number of customers in each city. Show the name of the city and corresponding count. 8. List all orders after and on 2008-11-01 9. List all orders between 2008-10-24 and 2008-11-01 inclusive (including both dates) 10. What is the average price for product that is more than $50? 11. List all customers who do not live Salt Lake City. 12. List all customers who are from SLC and whose name starts with the letter 13. List all product ids that show more than twice in orderline table IV. Deliverables 1. Submit the lab8.txt file that contains your SQL statements to canvas

Answers

The task requires writing SQL statements to perform various operations on a set of tables (Customer, Product, Orders, Orderline) in a MySQL database.

To complete the task, you need to write SQL statements that fulfill the given requirements. These statements involve inserting data into the tables using the code provided in Lecture8.rtf, querying data records from all four tables, listing product IDs in descending order, listing distinct cities for customers, listing orderlines with a quantity greater than or equal to 5.

listing product columns with names containing the string 'laptop', listing customers from the city 'Tucson', counting the number of customers in each city, listing orders after and on a specific date, listing orders between two specific dates, calculating the average price for products over $50, listing customers not from Salt Lake City, listing customers from SLC with names starting with a specific letter, and listing product IDs that appear more than twice in the orderline table.

The final deliverable is a lab8.txt file containing all the SQL statements required to perform the above operations.

Learn more about SQL statements here: brainly.com/question/29607101
#SPJ11

state whether true of false. i) a worm mails a copy of itself to other systems. ii) a worm executes a copy of itself on another system.

Answers

True, a worm can spread by mailing a copy of itself to other systems.

True, a worm can execute a copy of itself on another system by exploiting vulnerabilities or gaining unauthorized access.

True, a worm can spread by mailing a copy of itself to other systems. Once a worm infects a system, it can use the system's email program to send copies of itself to other systems, often without the user's knowledge or consent. True, a worm can execute a copy of itself on another system by exploiting vulnerabilities or gaining unauthorized access. Once a worm gains access to a new system, it can execute a copy of itself and continue to spread, often causing significant damage to affected systems and networks.

To protect against worms, it is important to use up-to-date antivirus software, keep software and operating systems patched with the latest security updates, and avoid opening suspicious email attachments or clicking on links from unknown sources. It is also important to use strong passwords and other security measures to prevent unauthorized access to systems and networks.

Learn more about itself to other systems here:

https://brainly.com/question/1884490

#SPJ4

which computer is used in hospital for ultrasound?​

Answers

Answer:

Pentium Powered Computer

Explanation:

Pentium powered computer

FILL IN THE BLANK. This type of software allows students to record, sort, mathematically analyze and represent numerical data in tabular and/or graphical forms. ___

Answers

Spreadsheets  software is a type of software allows students to record, sort, mathematically analyze and represent numerical data in tabular and/or graphical forms.

Why do people use spreadsheets?

One tool for storing, modifying, and analyzing data is a spreadsheet. A spreadsheet's data is arranged in a series of rows and columns, where it can be searched, sorted, calculated, and used in a number of charts and graphs.

Therefore, A program known as a spreadsheet, also referred to as a tabular form, is used to arrange data into rows and columns. This information can then be arranged, sorted, calculated (using formulas and functions), analyzed, or graphically represented to illustrate.

Learn more about Spreadsheets from

https://brainly.com/question/26919847
#SPJ1

how to put everything back if your pc crashed and deleted all your games and reseted your settings for mose

Answers

Answer:

It's best to try and take it to a professional to prevent damaging the system more. But if you plan on doing it yourself, It's best to use data recovery software or find a system backup, to help prevent it from happening in the future you should always regularly create backups of your system and store them on flash drives or other storage methods.

Explanation:

Read answer.

suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters and a block size of 512 bytes(i.e., 1 /2 kilobyte), what is the total raw capacity of the disk drive?

Answers

Suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters, and a block size of 512 bytes (i.e., 1 /2 kilobyte), then the total raw capacity of the disk drive is 13.4 GB.

A hard disk drive (HDD) is a data storage device that uses magnetic storage to store and retrieves digital data using one or more rigid rapidly rotating disks (platters) covered in magnetic material. A hard disk drive is a random-access memory device (RAM), meaning that data can be read or written in almost any order after the first write operation has been completed.

Suppose you have a hard disk with 2200 tracks per surface, each track divided into 110 sectors, six platters, and a block size of 512 bytes (i.e., 1 /2 kilobyte), then the total raw capacity of the disk drive is 13.4 GB. The formula to calculate the total raw capacity of the disk drive is given:

Total raw capacity = Number of surfaces × Number of tracks per surface × Number of sectors per track × Block size per sector × Number of platters

We are given: Number of surfaces = 2

Number of tracks per surface = 2200

Number of sectors per track = 110

Block size per sector = 512 bytes

Number of platters = 6

Now, let's substitute these values in the above formula:

Total raw capacity = 2 × 2200 × 110 × 512 × 6

= 13,428,480,000 bytes = 13.4 GB

Therefore, the total raw capacity of the disk drive is 13.4 GB.

You can learn more about disk drives at: brainly.com/question/2898683

#SPJ11

What is the purpose of protocols in data communications?.

Answers

Answer:

it peopl to communicate

Explanation:

Which option is used to apply formatting to multiple objects on a single slide while still maintaining the ability to manage these objects independently if desired?

it was B. Grouping feature edg21

Which option is used to apply formatting to multiple objects on a single slide while still maintaining
Which option is used to apply formatting to multiple objects on a single slide while still maintaining

Answers

Answer:

b. Grouping feature

Explanation:post protected

b) Explain how a lockbox system operates and why a firm might consider implementing such a system.

Answers

A lockbox system is a system in which a company's incoming payments are directed to a post office box, rather than to the company's offices. This allows the company to process payments more efficiently, since the payments are sent directly to a bank that is authorized to receive and deposit them.

The bank will then deposit the funds into the company's account, rather than sending them to the company's offices for processing. First, it can help reduce processing time for incoming payments. Second, a lockbox system can help reduce the risk of fraud.

Since payments are sent directly to the bank, there is less chance that they will be lost, stolen, or misused. Third, a lockbox system can help improve cash flow. By reducing the time, it takes to process payments, the company can receive its funds more quickly and put them to use sooner. This can help improve the company's overall financial position.

To know more about lockbox system visit:

brainly.com/question/33099400

#SPJ11

When you touch a warm picnic table , your hand becomes warmer. Explain how energy conservation applies to this situation

Answers

When you contact a warm picnic table, this transfer occurs because your hand has a lower surface temperature than the table, which allows the heat to pass from the table to your hand. You can see how this procedure conserves energy.

Why should we conserve energy?

Energy conservation is essential for limiting climate change. It helps to replace non-renewable resources with renewable energy. When there are energy shortages, energy saving is frequently more cost-effective and environmentally friendly than increasing energy output.

What kind of energy is that?

There are numerous shapes that energy can take. Examples of these energies include gravitational energy, mechanical energy, electrical energy, sound energy, chemical energy, nuclear or atomic energy, light energy, heat energy, and so on.

To know more about conserves energy visit:-

https://brainly.com/question/13949051

#SPJ1

In the computing environment the numerical value represented by the pre-fixes kilo-, mega-, giga-, and so on can vary depending on whether they are describing bytes of main memory or bits of data transmission speed. research the actual value (the number of bytes) in a megabyte (mb) and then compare that value to the number of bits in a megabit (mb). are they the same or different? if there is a difference or uncertainty, explain why that is the case. cite your sources.

Answers

There are differences in the suffixes that we use in computing environments as explained in the briefing.

What is meant by computing environment?

In order to process and exchange the electronic information required by the software solution, the computing environment consists of a variety of computer hardware, data storage devices, workstations, software applications, and networks.

Briefing:

the Bit is 0 or 1, and 1 byte= 8 bits,

1 kilobyte=1000 bytes= 8×1000 =8000 bits where 1 kilo=10^3

1 megabyte = 1000000 bytes= 8000000 bits

where 1 mega= 10^6 bytes

thus, regardless of whether a measurement is a megabyte or a megabit, mega = 10^6, but where it differs is when converted into the last minimum measurement i.e., bits then we get the difference.

1 megabit = 1000000 bits =1000000 bits = 1000000 ÷ 8 = 125000 bytes

1 megabyte=1000000 bytes=8000000 bits

when a megabit is equal to 125 000 bytes, or 1000 000 bits.

To know more about data storage devices visit:

https://brainly.com/question/11599772

#SPJ4

Screen reading for extended periods can cause___________ _____________, so the position the monitor to minimize glare and give your eyes a short break every half hour.

Answers

Screen reading for extended periods can cause a syndrome known as the computer vision syndrome

Computer vision Syndrome

What is computer vision Syndrome?

the computer syndrome is characterised by eye discomfort and fatigue, dry eye, blurry vision, and headaches, glare, etc. Uncorrected vision problems are a major cause. it is recommended to stay off the computer for at least thirty minutes to minimise the effects

Learn more about Computer vision Syndrome here:

https://brainly.com/question/8114244

12. Explain the differences between party organization at the national level compared to the State and local level.

Answers

National party organizations have a broader scope, centralized structure, and focus on national elections and large-scale fundraising, while state and local party organizations have a narrower focus, decentralized structure, and concentrate on regional elections and grassroots fundraising.

What are the differences between party organization at the national level compared to the state and local level?

Here are the differences between party organization at the national level compared to the state and local level, along with valid explanations:

Scope and Influence:

  - National Level: Party organizations at the national level have a broader scope and influence. They focus on shaping the party's agenda, ideology, and platform at a national scale. National parties have a significant impact on policy formulation, national elections, and setting the overall direction of the party.

  - State and Local Level: Party organizations at the state and local level have a more limited scope and influence. They primarily concentrate on regional issues, local elections, and grassroots organizing. State and local parties play a crucial role in shaping local policy priorities, supporting candidates for state and local offices, and mobilizing voters within their specific jurisdictions.

Organizational Structure:

  - National Level: Party organizations at the national level have a centralized and hierarchical structure. They often have a national committee or executive board responsible for decision-making, resource allocation, and strategic planning. This structure allows for coordination and consistency in party activities across the entire country.

  - State and Local Level: Party organizations at the state and local level have a more decentralized and grassroots-oriented structure. They consist of local party units, such as county or city committees, which have their own leadership and decision-making processes. This structure enables adaptability to local contexts and allows for greater community engagement.

Electoral Focus:

  - National Level: National party organizations focus on high-profile elections, particularly presidential and congressional races. They allocate significant resources, mobilize volunteers, and coordinate national campaign strategies to secure victories at the national level. Their efforts often include messaging that appeals to a broad range of voters across different states and regions.

 - State and Local Level: Party organizations at the state and local level primarily concentrate on local and state elections. They aim to support candidates for governor, state legislatures, mayoral positions, county boards, and other regional offices. These organizations tailor their strategies and messaging to address specific local issues, concerns, and demographics to mobilize support within their communities.

Fundraising:

  - National Level: National party organizations engage in large-scale fundraising efforts. They have broader access to national donor networks, major fundraising events, and sophisticated fundraising strategies. National parties often rely on a combination of individual donations, corporate contributions, and fundraising from high-profile supporters to generate significant financial resources.

- State and Local Level: Party organizations at the state and local level rely on a mix of grassroots fundraising and localized donor networks. They often conduct community-based fundraising initiatives, such as small-scale events and door-to-door canvassing, to raise funds. While their financial resources may be comparatively limited, they emphasize connecting with local donors who are invested in their specific communities.

In conclusion, party organizations at the national level have a broader scope and influence, a centralized structure, focus on national elections, and engage in large-scale fundraising. In contrast, party organizations at the state and local level have a narrower scope, a more decentralized structure, focus on regional elections, and rely on grassroots fundraising.

Learn more about party organizations

brainly.com/question/24870099

#SPJ11

Tom is planning to move to a new city for his job. He has never been to that city before and he needs to find a suitable apartment to rent. Which application can Tom use to search for available apartments in the new city?​

Answers

Realtor.com Tom can use the real estate app to look for available apartments in the new city.

NoBroker is it free?

To access the free contacts, you must sign in to the NoBroker application. When they register as renters, tenants receive 9 free homeowner contacts, whilst homeowners receive 25 free tenant contacts. Verify that your free trial has not already been used if you are unable to access free contacts.

How does NoBroker work?

You can use NoBroker rent payment to pay your rent with a credit card in about five minutes. Visit NoBroker Rent Pay and fill out the form with your information. You must provide your rent payment information after creating your account.

To know more about app visit:-

https://brainly.com/question/11070666

#SPJ1

PLS HELP ILL GIVE BRAINLY) enter the answer) desktop publishing software enables users to create products for print or __________ distribution

Answers

Answer:

Electronic

Explanation:

AP Computer Science
Which of the following refers to the way that a program is designed and organized, including its structure and layout?

Group of answer choices

Program design

Program architecture

User experience

User interface​

Answers

Answer:

Program architecture

Explanation:

According to the cloud computing trends for 2020 video case, what term is used to describe a distributed computing model where information is processed closer to its source?.

Answers

Answer:      Public cloud providers have begun to distribute their services to different geographical locations, becoming known as the distributed cloud. In this way, the cloud is broken up into multiple smaller datacenters in different locations rather than just one large datacenter.

Explanation:

HURRY PLEASE ITS A TEST
A military cargo plane is loaded with the maximum weight allowable for the flight. The cargo is heavier than what the pilot usually carries, so the pilot adjusts as follows: Group of answer choices
a. The pilot flies slower to create less thrust and less lift
b. The pilot flies slower to create more thrust and more lift
c. The pilot flies faster to create less thrust and less lift
d. The pilot flies faster to create more thrust and more lift

Answers

A.)

It's either A or D both of them stand out and make sense to me so I think that it'll be right if you choose A or D.

-Ɽ3₮Ɽ0 Ⱬ3Ɽ0

Name three types of response messages that are used in the workplace.

Answers

Answer:

Verbalbody languagephone callswritten communication

Explanation:

âAn organized, generalized knowledge structure in long-term memory is a(n) ____.a. engramb. tracec. icond. schema

Answers

The answer is D. schema. A schema is an organized, generalized knowledge structure in long-term memory that helps individuals make sense of new information and experiences by relating them to existing knowledge and experiences.

The term "knowledge management infrastructure" refers to the tools and environments that support learning and promote the creation and sharing of information inside an organisation. The knowledge structure includes people, information technology, organisational culture, and organisational structure.

The following three core KM infrastructure components, which include social and technical viewpoints, should be considered by every organisation performing KM research: Information technology, organisational culture, and knowledge processes The knowledge management field is divided into three main subfields: accumulating knowledge. sharing and keeping knowledge.

The organisational structure, which determines how and to what extent roles, power, and obligations are divided, controlled, and coordinated, governs information flow throughout levels of management.

Learn more about  knowledge structure here

https://brainly.com/question/29022277

#SPJ11

Other Questions
Please help with this problem G is the centroid of triangle ABC.What is the value of x? 22What is the length of segment DG? unitsWhat is the length of segment AG? unitsWhat is the length of segment AD? unit HELP!!The penicillin concentration, in micrograms per milliliter, in thepatient's bloodstream t minutes after the penicillin injection istmodeled by the function P defined by P(t) = 20065 . If Papproximates the values in the table to within 10 micrograms permilliliter, what is the value of b, rounded to the nearest tenth? suppose that when the price of gasoline is $3 per gallon, the total amount of gasoline supplied in the united states is 12 million barrels per day. also suppose that when the price of gas decreases to $2.25 per gallon, the total amount of gasoline supplied is 8 million barrels per day. based on these numbers and using the midpoint formula, the price elasticity of supply of gasoline is: In a school election, only 3/4 of the students vote. If there were 1,464 votes cast, how many students are there in the school? If a perfectly competitive firm is producing a level of output where its marginal cost is greater than market price, it should raise its price.a. Trueb. False a hot air balloon decrease its altitude by 3 ft each second for 2 seconds what was the total change in altitude and According to Nora at the end of the play, who has done her wrong? PERSONALLY I thought it would be 98 Bc like yk..BUT I FEEL LIKE IM WRONGsend help beggin cryin throwin up I hate geometry so much Mia had 5 dogs than her mother bought her 2 more but 3 of her pets were loss what fraction of clockwise revolution does the hour hand of clock turn through when it goes from 3 to 9 I AM GIVING AWAY BRAINLIEST AND POINTS TO WHOEVER ANSWERED! PLEASE HELP!The lengths of the diagonals of a rhombus are 2in. and 5in. Find the measures of the angles of the rhombus to the nearest degree. hoose the best alternative among the three alternatives given in the table below. Use of present worth analysis is required. A B Initial cost $9,000 $12,000 $15,000 Annual benefit $2,000 $1,800 $8,000 Salvage value $9,000 0 $5,000 Life in years 3 years Infinity 2 years MARR 10% Which of the statements is/are true about anaerobic metabolism? select all that apply Choose the correct translation of the following words.a clockun relojO una relojO el relojO la reloj What is another word for food in French? what is the name of software that enables hardware on a mainframe? 2. The weight of a boat without load is 12 000 N and the volume of the immersed portion of the boat is 5.0 m. [ Density of sea water is 1020 kg m-] as shown in DIAGRAM 2 DIAGRAM 2 Calculate o The buoyant force exerted to the boat. The maximum mass of load that can be supported by the boat so that it will not sink completely. -1/4-a-4=7/4a-3solving equations with one unlike equations Which Filibuster was known for stealing horses?