consider the following function.int my func(int a){ return(a 3); }if the function is called using my func(5), what will the function return?

Answers

Answer 1

8 will be returned by the function.

Describe function.

A functional key is a type of soft key that may be designed to instruct an operating system order interpreter or application software to carry out certain actions when pressed on a desktop or terminals keyboard.
On certain keyboards and computers, the function keys may have pre-programmed default operations.
A feature that so many software applications employ to give users information about the product is called as "about" function. The version, copyright details, contact details, and other details might all be included. Selecting the "Info" option from the menu bar or assistance menu generally provides you with access to it.

To know more about function
https://brainly.com/question/29760009
#SPJ4


Related Questions

What type of cable might use an LC connector? a.UTP b.STP c. Coaxial d. Fiber optic​

Answers

What type of cable might use an LC connector?

•Filter optic

flow chart to read 50 numbers and print summation of even numbers only

Answers

The sum of terms in an arithmetic progression formula is used to get the sum of even numbers formula. Sum of Even Numbers Formula is written as n(n+1), where n is the total number of entries in the series.

What is print summation of even numbers only?

Python comes with a built-in method called sum() that adds up the values in the list. Syntax: sum (iterable, start) (iterable, start) Iterable:

Most importantly, iterable should be numbers. Start: This start is added to the total of the iterable's numbers.

Therefore, By definition, when a number is divided by two, there is never a remainder. There will therefore be no residue when it is added to another even integer.

Learn more about summation here:

https://brainly.com/question/29334900

#SPJ1

"what is the error in the following method?
1. public static string getlastchar(string str) {
2. if (str.length() > 0) {
3. return str.substring(str.length() - 1); 4. } else if (str.length() == 0) {
5. return """";
6. }
7. }
group of answer choices
returning an empty string
missing an return statement
calling the substring method while returning a value in line 3
the method name"

Answers

The method name is also missing from the given code snippet, but this is not necessarily an error. The missing return statement, however, is a major issue that needs to be addressed.In Java, a return statement is used to return a value from a method.

Without a return statement, the method will not be able to return anything. This can cause problems if other parts of the program are expecting a return value from the method.In the given code snippet, the return statement is missing, so the method will not be able to return anything. This could cause issues if other parts of the program are expecting a return value from the method. To fix this error, a return statement should be added to the method so that it can return a value when called.As for the missing method name, it is not necessarily an error. A method can still work without a name as long as it is being called correctly. However, it is generally a good practice to give a method a descriptive name to make it easier to understand and use in the program.

for more such question on expecting

https://brainly.com/question/27731817

#SPJ11

3. which of the following tasks can data analysts do using both spreedsheets and SQL? Select all that apply -process huge amounts of data efficiently, use formulas, join data, perform arithmetic

Answers

The tasks that can data analysts do using both spreadsheets and SQL Are options B, C and D:

Use formulasJoin dataPerform arithmetic

Do data scientists employ algebra?

In data analytics, algebra from a college level is widely used. Since most algorithms employ it, linear algebra is very important for any professional who wants to work with machine learning and/or AI.

Data analysts are in charge of acquiring data from primary and secondary sources, installing and maintaining databases, and discovering, evaluating, and interpreting trends from the data. They also analyze data using statistical techniques.

Therefore, While data analysts must be adept with numbers and can benefit from having a basic understanding of math and statistics, much of data analysis simply involves following a series of logical procedures. People don't need to have a lot of mathematical expertise to excel in this field.

Learn more about data analysts from

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

What are some skills that many graphic designers possess

Answers

Answer:

Graphic designers possess a diverse set of skills that enable them to create visual communication materials for a variety of mediums. Here are some of the most common skills that graphic designers possess:

Creativity: Graphic designers are often required to develop unique and innovative ideas for their designs. They must be able to think outside of the box and come up with original concepts.

Typography: The ability to select and manipulate fonts is a crucial skill for graphic designers. Typography is a key component of design, and designers must be able to choose the right fonts that will enhance the message of their design.

Color theory: Graphic designers must have an understanding of color theory, which involves the principles of color mixing and the effects of color on human emotions and behavior. They must be able to use color effectively to convey the intended message of their designs.

Software proficiency: Graphic designers typically use design software such as Adobe Creative Suite or Sketch to create their designs. They must be proficient in using these tools to create high-quality designs efficiently.

Communication: Graphic designers must be able to communicate effectively with clients and team members to understand project requirements and to present their designs.

Attention to detail: The ability to pay close attention to detail is crucial for graphic designers. They must ensure that their designs are free of errors and are visually appealing.

Time management: Graphic designers often work on multiple projects simultaneously, so time management skills are essential to ensure that projects are completed on time and to a high standard.

These are just a few of the skills that graphic designers possess, and the exact skills required may vary depending on the specific design field and job requirements.

Explanation:

Answer:

- creativity

- consistency

- problem solving

- patience

- be able to learn new things

Im having trouble with this assignment and am running out of time due to work. Im stuck on a few areas and need help drastically
For this assignment, write a program that will allow a user to book a stay at one of four (4) offered dwellings, and calculate the base price for the entire stay. The program logic will need to define a "Dwelling" data type that will hold the following information about a dwelling:

Id - Unique identifier for the dwelling (whole number)
City - The name of the city where the dwelling is located
State - Abbreviation of US state where dwelling is located
Bedrooms - Number of bedrooms available in the dwelling (whole number)
Bathrooms - Number of bathrooms available in the dwelling (whole number)
NightlyRate - The price per night to stay at the dwelling (whole number)
A pseudo-constructor should be defined for the "Dwelling" data type. The pseudo-constructor definition should include a parameter for each "Dwelling" member variable in the order they are numbered above.

The program logic will also need to instantiate four (4) "Dwelling" objects in the main function with the following information using the pseudo-constructor:

Dwelling Id City State Abbreviation Number of Bedrooms Number of Bathrooms Nightly Rate
1 Los Angeles CA 4 2 $300
2 New York NY 3 1 $245
3 Chicago IL 4 1 200
4 Seattle WA 5 3 375
Note: The information initialized for each dwelling object listed above should be hard-codedLinks to an external site.. The user will not input this information.

After each "Dwelling" object is instantiated, all of the dwelling options should be displayed to the user. The user will then select one of the dwellings by Id and then enter the number of nights to stay. The program will then display the user's selection back to them, the number of nights entered, and the calculated base price of the stay.

Example Output 1 (input in bold and underlined for clarity):
Welcome to Book-A-Dwelling!

Here are your dwelling options:

Dwelling 1
Location: Los Angeles, CA
4 Bedrooms, 2 Baths
Nightly Rate: $300

Dwelling 2
Location: New York, NY
3 Bedrooms, 1 Baths
Nightly Rate: $245

Dwelling 3
Location: Chicago, IL
4 Bedrooms, 1 Baths
Nightly Rate: $200

Dwelling 4
Location: Seattle, WA
5 Bedrooms, 3 Baths
Nightly Rate: $375

Please select a dwelling number from the list above
3

Excellent choice! How many nights will you stay?
2

Booking Summary:
Dwelling 3
Location: Chicago, IL
4 Bedrooms, 1 Baths
Nightly Rate: $200

Staying for 2 nights

Base price of your stay: $400

Answers

Here's an example code in Python that meets your assignment's requirements!

class Dwelling:

def __init__(self, dwelling_id, city, state, bedrooms, bathrooms, nightly_rate):

self.id = dwelling_id

self.city = city

self.state = state

self.bedrooms = bedrooms

self.bathrooms = bathrooms

self.nightly_rate = nightly_rate

dwelling1 = Dwelling(1, "Los Angeles", "CA", 4, 2, 300)

dwelling2 = Dwelling(2, "New York", "NY", 3, 1, 245)

dwelling3 = Dwelling(3, "Chicago", "IL", 4, 1, 200)

dwelling4 = Dwelling(4, "Seattle", "WA", 5, 3, 375)

print("Welcome to Book-A-Dwelling!\n")

print("Here are your dwelling options:\n")

print(f"Dwelling {dwelling1.id}")

print(f"Location: {dwelling1.city}, {dwelling1.state}")

print(f"{dwelling1.bedrooms} Bedrooms, {dwelling1.bathrooms} Baths")

print(f"Nightly Rate: ${dwelling1.nightly_rate}\n")

print(f"Dwelling {dwelling2.id}")

print(f"Location: {dwelling2.city}, {dwelling2.state}")

print(f"{dwelling2.bedrooms} Bedrooms, {dwelling2.bathrooms} Baths")

print(f"Nightly Rate: ${dwelling2.nightly_rate}\n")

print(f"Dwelling {dwelling3.id}")

print(f"Location: {dwelling3.city}, {dwelling3.state}")

print(f"{dwelling3.bedrooms} Bedrooms, {dwelling3.bathrooms} Baths")

print(f"Nightly Rate: ${dwelling3.nightly_rate}\n")

print(f"Dwelling {dwelling4.id}")

print(f"Location: {dwelling4.city}, {dwelling4.state}")

print(f"{dwelling4.bedrooms} Bedrooms, {dwelling4.bathrooms} Baths")

print(f"Nightly Rate: ${dwelling4.nightly_rate}\n")

dwelling_choice = int(input("Please select a dwelling number from the list above: "))

num_nights = int(input("\nExcellent choice! How many nights will you stay? "))

if dwelling_choice == 1:

chosen_dwelling = dwelling1

elif dwelling_choice == 2:

chosen_dwelling = dwelling2

elif dwelling_choice == 3:

chosen_dwelling = dwelling3

else:

chosen_dwelling = dwelling4

total_price = chosen_dwelling.nightly_rate * num_nights

print("\nBooking Summary:")

print(f"Dwelling {chosen_dwelling.id}")

print(f"Location: {chosen_dwelling.city}, {chosen_dwelling.state}")

print(f"{chosen_dwelling.bedrooms} Bedrooms, {chosen_dwelling.bathrooms} Baths")

print(f"Nightly Rate: ${chosen_dwelling.nightly_rate}\n")

print(f"Staying for {num_nights} nights\n")

print(f"Base price of your stay: ${total_price}")

(This program defines a Dwelling class with the given member variables, and creates four objects with the given information using the pseudo-constructor. The program then displays the list of dwelling options to the user and prompts them to select a dwelling and enter the number of nights they will stay. The program calculates the base price of the stay and displays a summary of the user's selection and the calculated base price.)

Briefly describe the fundamental differences between project-based and product-based Software Engineering.

Answers

Answer:

Product-based companies make a specific product and try to market it as a solution. But project-based companies create a solution based on many products and sell it as a packaged solution to a particular need or problem.

Explanation:

hope this helps

Product firms make and try to market a certain product as a solution. But projects are creating a solution based on many product lines as well as selling them for specific needs or issues as such is.

Project-Based Software Engineering:

Software developers based on projects follow a service-oriented strategy. At one time, not only software but multiple projects are being developed, operated, and delivered. It accomplishes a software development process from requirement collection to testing and maintenance. It is carried out in compliance with implementation methods or specified period for achieving the software package meant for use.

Product-Based Software Engineering:

A product-based business is a venture that produces a product that may or might not have software connections. Even before resulted in a demand, it will create or design its goods or applications ahead of time. Once the product is produced or applied, it is opened up for market use and only works if a client meets specific requirements and needs. It is used to start creating some goods including Oracle, Adobe, Samsung, etc.

Learn more:

brainly.com/question/14725376


Computer industries and organizations also face issues related to health, safety, and environmental issues. In this task, you will examine these
sues related to an industry organization that deals with technology, specifically computers. Write a short essay on these issues.

Answers

Over the past twenty years a great many questions have arisen concerning the links that may exist between the use of computers and the health and safety of those who use them. Some health effects -- such as joint pain and eye strain following an extended period huddled typing at a screen and keyboard -- are recognised as an actuality by many. However, proving with any degree of certainly the longer-term health impacts of computer use remains problematic. Not least this is because widespread computer use is still a relatively modern phenomenon, with the boundaries between computers and other electronic devices also continuing to blur.

How many types of video
compressions__
a. 4
b. 2.
• c. 3
d. 6​

Answers

A. I think correct me if I’m wrong

Infringement Less than 13km/h over the speed limit At least 13km/h but not more than 20km/h over the speed limit More than 20km/h but not more than 30km/h over the speed limit More than 30km/h but not more than 40km/h over the speed limit More than 40km/h over the speed limit Penalty amount $177 $266 $444 $622 $1.245 Demerit points 1 3 4 6 8 Note: the way the government website has written this (and we've copied it) is NOT efficient in terms of decision structures. This written for each condition to stand alone (if, if, if) but we can tell its mutually exclusive and so know a better tool for the job don Avoid a 6-month suspension by writing a program to ask for the user's: • speed and the • speed limit
program in python?​

Answers

The example of the program in Python to help one to calculate the penalty amount as well as the demerit points based on the speed and speed limit provided by the user is given in the code below

What is the program?

python

def calculate_penalty(speed, speed_limit):

   penalty_amount = 0

   demerit_points = 0

   if speed <= speed_limit:

       return penalty_amount, demerit_points

   overspeed = speed - speed_limit

   if overspeed <= 13:

       penalty_amount = 177

       demerit_points = 1

   elif overspeed <= 20:

       penalty_amount = 266

       demerit_points = 3

   elif overspeed <= 30:

       penalty_amount = 444

      demerit_points = 4

   elif overspeed <= 40:

       penalty_amount = 622

       demerit_points = 6

   else:

       penalty_amount = 1245

       demerit_points = 8

   return penalty_amount, demerit_points

# Get user input

speed = int(input("Enter the recorded speed (in km/h): "))

speed_limit = int(input("Enter the speed limit (in km/h): "))

# Calculate penalty and demerit points

penalty, points = calculate_penalty(speed, speed_limit)

# Display the results

print("Penalty amount: $", penalty)

print("Demerit points: ", points)

Read more about python here:

https://brainly.com/question/30113981

#SPJ1

ONLY PEOPLE WHO KNOW JUSTFOXII*
What is that one song on her playlist which goes like: "whoaaaa save meeee, ooooooh"?

All I know is that it is a woman singing in a high voice, with slow background music.

Please help me, I am trying to find this song!

also if u can, plz list some other songs in her playlist, shes the best, and her playlist is fire

Answers

Answer:

yeah i knwo but only some

Explanation:

Answer      The Box- By Drake

Explanation:

thank me later

The plot of a video game is developed by which of the following occupations?
O video game artist
O graphic artist
O video game designer
O computer game programmer

HELP PLSSS!!!

Answers

Answer:

c video game designer

Explanation:

Answer:

CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC

Explanation:

In order to enhance the training experience and emphasize the core security goals and mission, it is recommended that the executives _______________________.

Answers

Answer:

vg

Explanation:

kiopoggttyyjjfdvhi

What is the TSA motto

Answers

Answer:

the answer is "Learning to lead in a technical word".

Explanation:

With which feature or menu option of a word processing program can you make an image like this?

Answers

Answer:

The physical benefits include the following except

QUESTION 10
If there is an Apple logo somewhere on your computer, more than likely your computer runs what type of operating system?
O Linux
Windows
macos
Unix

Answers

The answer is MacOS

A number is a palindrome if its reversal is the same as itself. Write a program ReverseNumber.java to do the following:
1. Define a method call reverse, which takes a 4-digit integer and returns an integer in reverse. For example, reverse(1234) should return 4321. (Hint: use / and % operator to separate the digits, not String functions)
2. In the main, take user input of a series of numbers, call reverse method each time and then determine if the number is a palindrome number, for example, 1221 is a palindrome number, but 1234 is not.
3. Enhance reverse method to work with any number, not just 4-digit number.

Answers

The reverse method takes an integer as input and reverses it by extracting the last digit using the modulus operator % and adding it to the reversed number after multiplying it by 10.

The Program

import java.util.Scanner;

public class ReverseNumber {

   public static int reverse(int number) {

       int reversedNumber = 0;

       while (number != 0) {

           int digit = number % 10;

           reversedNumber = reversedNumber * 10 + digit;

           number /= 10;

       }

      return reversedNumber;

   }

   public static boolean isPalindrome(int number) {

       return number == reverse(number);

   }

   public static void main(String[] args) {

       Scanner scanner = new Scanner(System.in);

       System.out.print("Enter a number: ");

       int number = scanner.nextInt();

       

       if (isPalindrome(number)) {

          System.out.println(number + " is a palindrome number.");

       } else {

           System.out.println(number + " is not a palindrome number.");

       }

   }

}

Read more about Java program here:

https://brainly.com/question/26789430

#SPJ1

Digital cameras have electronic sensors that record information to create pictures. What acronym refers to the sensitivity
of the electronic sensor?
DPI
ISO
LED
DMD

Answers

Answer:

ISO

Explanation:

Which of these is a characteristic of first generation computer? (a) They use electronic transistor and diode (c) (b) It uses value (c) They used simple integrated circuit (d) They used complex integrated circuit​

Answers

The characteristic of first generation computers is They use electronic transistor and diode. Option A

The characteristics of first generation computers

First generation computers were developed in the late 1940s to the mid-1950s, and they used electronic transistors and diodes as their primary components.

These computers were large, expensive, and consumed a lot of power. They were also known for being unreliable and difficult to maintain.

The first generation computers were mainly used for scientific calculations, military applications, and data processing.

The use of simple and complex integrated circuits was a characteristic of the second and third generation computers, respectively.

Read more about first-generation computers at: https://brainly.in/question/26969099

#SPJ1

Effective collaboration requires a proactive and holistic strategy that integrates business goals and technology potential.
a) true
b) false

Answers

Answer:

a) true

Explanation:

Effective collaboration is a form of business organization strategy that is utilized by various firms, which is based on carrying out better collaborative or synergy software and proposes a visionary and holistic technique that incorporates company objectives and technology capability.

Hence, in this case, it is TRUE that effective collaboration requires a proactive and holistic strategy that integrates business goals and technology potential.

Write pseudocode for a program that allows a user to enter 20 numbers, then displays all of the numbers, the largest number, the smallest, the total and the average.

Answers

Answer:

set array of size 20

set larger_no to 0

set smallest_no to 0

for loop 20 times:

  asks for input for each input from user

  insert each value in array

run for loop 20 times again:

   display each number in array

   Inside for loop check IF number > larger_no then

    set larger_no=number

  Inside for loop check ELSE IF number <smallest_no THEN

     smallest_no=number

Write  smallest_no

Write larger_no

Part 1:

In a group, with a friend, or with family members, identify a problem in your community. Describe the problem and work through the steps of problem solving to come to one potential solution. If you can, implement the solution and evaluate the results. If you cannot, propose what may happen if you implemented the solution. Make sure to include all of the steps.

Part 2:

Ask five people for an example of a conflict they have experienced. Look over the approaches to conflict resolution that are listed in the lesson. For each situation, select the approach that you feel would work best. Describe why you selected the approach.

Describe your results for both parts of the project in an essay of at least 300 words.

Long Text (essay)
Submit your 300- word essay that: 1) identifies a problem in your community and works through problem solving steps to provide a solution, and 2) analyzes five conflicts through the conflict resolution approaches and explains an appropriate resolution for each conflict.

Answers

The  problem in my community is lack of pipe borne water.

What are the issues of water supply?

Africa is known to be a content that has some poverish nation. My community is known to lack good water and that is a key issue i would love to address.

What i can do is to write to the government and other private organizations for help or i will take the project upon myself to construct bore holes for the community. A lot of people do not have access to water during the dry season and this will solve the problem.

What are the steps to write an essay?

An essay can be written by following the steps below:

First know the type of Essay you want to write.You introduce the Topic of the essay.State the problem or reasons for writing. Write the body of the writeup.End with a Conclusion.

Note that a good essay is one that that communicate the right message to anyone reading it.

Learn more about water from

https://brainly.com/question/5060579

What are the connections between the following concepts: letter frequency, avalanche effect, correlation between plaintext and ciphertext , and diffusion?

Answers

The Avalanche Effect describes how modifications to the plaintext have an impact on the ciphertext for a good cypher. When the input is only slightly altered, the algorithm generates an entirely different outcome.

Avalanche breakdown definition How does the avalanche breakdown mechanism look like in a diagram?

Avalanche Breakdown:  When a significant reverse voltage is put across the diode, the avalanche breakdown happens. The electric field across the junction grows when the applied reverse voltage is increased. The electrons at the junction are forced by the electric field, breaking their covalent bonds.

Which four fundamental security tenets apply to messages?

Confidentiality, Integrity, Non-repudiation, and Authentication are the four primary security principles that apply to messages.

To know more about Avalanche Effect visit:-

brainly.com/question/29095928

#SPJ1

different uses of quick access toolbar

Answers

“The Quick Access Toolbar provides access to frequently used commands, and the option to customize the toolbar with the commands that you use most often. By default, the New, Open, Save, Quick Print, Run, Cut, Copy, Paste, Undo, and Redo buttons appear on the Quick Access Toolbar” -Information Builders

write javascript program to find enter number is odd or even

Answers

Answer:

import java.lang.*;

import java.util.*;

public class Program

{

public static void main(String[] args) {

Scanner s=new Scanner(System.in);

int numb;

System.out.print("Enter a number:");

numb=s.nextInt();

System.out.println(numb);

int temp=numb;

if(temp==(numb/2)*2)

System.out.println(temp+" is an EVEN number");

else

System.out.println(temp+" is an ODD number");

}

}

How many adders are needed to construct 7-bit parallel adder?
How many bits have typical full-adders ICs got?

Answers

Answer:

(a) 7 full adders

(b)4 bits

Explanation:

(a)A n bit parallel adder requires n full adders to perform operation.

Here we want to get 7 bit parallel adder so 7 full adders are required to perform operation

(b)These full adders perform addition of two 4bit binary numbers.

What command would you enter while in vi command mode to find the term Sam?

Answers

The command "/Sam"  would enter while in vi command mode to find the term Sam.

What is vi command?

Vi is the name of the standard editor included with the UNIX operating system.

A full-screen editor with two modes of operation, the UNIX vi editor:

Commands in the command mode that affect the file's behavior and, Text entered during the insert mode is added to the file.

Every character entered the command mode is a command that alters the text file being edited; a character may even trigger the vi editor to switch to insert mode. Every character entered during insert mode is added to the text in the file; insert mode is disabled by pressing the Esc (Escape) key.

Even though there are many vi commands, learning only a few of them is generally enough for beginners. This website includes a list of common vi commands to help such users. In the tables below, the most fundamental and practical commands are denoted by an asterisk (* or star). These instructions ought to become automatic with experience.

To get more information about  vi command :

https://brainly.com/question/9671960

#SPJ1

Read the following Python code:

pets = 2
binaryPets = bin(pets)
print(binaryPets)

Which of the following is the correct output? (5 points)

0b10
0d10
0p10
0x10

Answers

The correct output for the given Python code would be option A: 0b10.

What is the Python code?

The value 2 is assigned to the variable named "pets" in the provided Python code. Afterwards, the decimal value of pets (2) is transformed into binary format through the utilization of the bin() function. The function bin() produces a binary value in string form, and adds the prefix "0b" to indicate this.

Thus, the result displayed for binaryPets upon printing will be 0b10. Indicating that a value is in binary format is done by adding the prefix '0b'. In binary, the decimal value 2 is represented by 10.

Learn more about Python code from

https://brainly.com/question/26497128

#SPJ1

create a powerpoint presentation on various e commerce websites. compare them and write which one is your favourite and why

Answers

The e-commerce websites created for online shopping are shown on this slide, along with how customers may utilize them to compare prices and make purchases and PPT.

Thus, By providing information via various website services, you can raise audience engagement and knowledge. Internet stores Ppt Images and Graphics.

You can deliver information in stages using this template. Using this PPT design, you may also show information on products, exclusive discounts, and strong online websites. This style is entirely changeable, so personalize it right away to satisfy the demands of your audience.

A lousy PowerPoint presentation can detract from the excellent content you're providing with team stakeholders because of poor color choices or unclear slides.

Thus, The e-commerce websites created for online shopping are shown on this slide, along with how customers may utilize them to compare prices and make purchases and PPT.

Learn more about PPT, refer to the link:

https://brainly.com/question/31676039

#SPJ1

Based on the details in The Riddle of the Rosetta Stone, how did the career of Jean-Baptiste Fourier differ from that of Jacques-Joseph Champollion?

Unlike Champollion, Fourier studied in Paris with Sylvestre de Sacy.
Unlike Champollion, Fourier cared more about non-Egyptian articles.
Unlike Champollion, Fourier studied and learned many languages.
Unlike Champollion, Fourier accompanied Napoleon to Egypt.

Answers

Answer:

D

Explanation:

Answer:

d

Explanation:

Other Questions
What is 418.000,00 in Spanish vocabulary ? How do the deaths of William and Justine seal the fate of Viktor in his mind and Why does viktor feelthat he can never be redeemed Prove sum of interior angle triangle is 180 Newtons 1st law What is the resistance to this unbalanced force in football? in the 2017 Current Population Survey, the union wage premium was about percent and the residual wage premium (from standardizing the comparison) was roughly percent 18:14 12:20 40:20 18:5 The monopoly union equilibrium is the equilibrium in a competitive labormarket more cticient than less efficient than equally efficient as What kind of conflict was the Gulf war? I WILL MARK YOU BRAINLIEST!!!! PLZ HELP Consider Portfolio A: long 1 American put on a stock with strike price K and expiration at T; short 1 American call on the same stock with the same strike and expiration date; and long 1 share of stock. (a) If you are long portfolio A and the call is exercised, show that you will have at least K dollars plus the value of the put at time T, no matter when the call is exercised. (b) If you are long portfolio A, show that you are guaranteed a payoff of at least K at time T. Conclude that PC+S 0Ke rT. Hint: Draw a timeline from 0 to T. Plot the different cash flows under different scenarios. When adding up, don't forget TVM. Complete the square for the following expressionand write the resulting expression as a binomial squared.x + 8x +_____=(_____)^2 Please list any certifications related to this project, about craigslist? The pure food and drug act and the meat inspection act were passed in order to protect food manufacturers. protect businesses. protect consumers. 3. SHOES The scatter plot shows the number of pairs of shoes a store has left instock from a shipment given the number of days since the shipment arrived.a. Use the points (1, 95) and (6, 45) to write an equation of the line of fit inKslope-intercept form. Let x be the number of days since the shipmentarrived.Y-45=mb. If the trend continues, how many pairs of shoes will be left in stock 10 daysafter the shipment arrived?Pairs in Stock Charlene wants to go to medical school. She knows it will cost a lot of money and requires very good grades. She also wants to finish school debt-free. Which best describes some of the milestones she might set?a meeting with a teacher to ask how to improve her grades, and a plan to search for tutoring jobsa government loan for a certain amount of money, and a number of classes to take at a local collegea loan from a bank, and an application for a scholarshipan amount of money she will add to savings each month, and an amount of time she will spend studying each week strong downslope winds are associated with shooting flow. shooting flow develops because a large volume of air must pass between a mountaintop and ______. look at the granite and the sandstone in the image below. which of the following statements is correct? True or False: In most cases, the only way publishers of media websites generate revenue is by charging advertisers to display ads on their sites. The credit terms offered to a customer by a business firm were 2/10, n/30, which means. Whats the answer? Introductory statements for this paragraph What happens to water, carbon dioxide and light energy absorbed by producers if my friends bank is -27.11 dollars in debt and mine is -26.85 dollars in debt who has the higher bank account balance?