1. Give a Java code example for a Flower class that has parameters of Name, species, type and color. Use the setter and getter methods to access each parameter individually. Show how a class Lily can

Answers

Answer 1

```java

public class Flower {

   private String name;

   private String species;

   private String type;

   private String color;

   // Constructor

   public Flower(String name, String species, String type, String color) {

       this.name = name;

       this.species = species;

       this.type = type;

       this.color = color;

   }

   // Getters and setters

   public String getName() {

       return name;

   }    

   public void setName(String name) {

       this.name = name;

   }

   public String getSpecies() {

       return species;

   } 

   public void setSpecies(String species) {

       this.species = species;

   }

   public String getType() {

       return type;

   }

   public void setType(String type) {

       this.type = type;

   }  

   public String getColor() {

       return color;

   }    

   public void setColor(String color) {

       this.color = color;

   }

}

public class Lily extends Flower {

   // Additional methods and properties specific to Lily can be added here

}

```

The provided Java code example includes two classes: `Flower` and `Lily`. The `Flower` class serves as a base class with parameters such as `name`, `species`, `type`, and `color`. These parameters are encapsulated using private access modifiers. The class also includes getter and setter methods for each parameter to access them individually.

In the `Lily` class, which extends the `Flower` class, you can add additional methods and properties specific to a lily flower. By extending the `Flower` class, the `Lily` class inherits all the attributes and methods defined in the `Flower` class, including the getter and setter methods. This allows you to access and modify the parameters of a lily flower using the inherited getter and setter methods.

Overall, this code example demonstrates how to create a basic `Flower` class with getter and setter methods for each parameter, and how to extend this class to create a more specialized `Lily` class with additional functionality.

Learn more about java

brainly.com/question/33208576

#SPJ11


Related Questions

You have just provided the identification number that associates your new software purchase with the mobile device on which you installed the software. What is the term for this process

Answers

Answer:  Application Purchase

The component that does all the major processing inside the computer.

Answers

Answer:

CPU

Explanation:

Choosing a theme in slides gives your presentation
a cartoon background
a theme song
the same background and text styles for a consistent look
a variety of styles in many slides

Answers

The same background and text styles for a consistent look is the theme in slides gives your presentation.

Thus, Techniques and Personal Presentation are the two main divisions of the formal presenting of information.

The planning, presentation, and practice of verbal and non-verbal communication are these two interrelated components.

This article outlines some of the major concepts related to presentations and explains what a presentation is.

Thus, The same background and text styles for a consistent look is the theme in slides gives your presentation.

Learn more about Presentation, refer to the link:

https://brainly.com/question/1493563

#SPJ1

window operating system popularly known as. 1) character user interface. 2) computer user interface. 3) graphic user interface. 4)none​

Answers

Answer:

The window operating system is popularly known as a graphical user interface(GUI)

Explanation:

older operating systems were command line based but window uses a gui

Answer:

The window operating system is popularly known as a graphical user interface(GUI)

Explanation:

plz help me I have to submit the work before the day ends
13. (a) State one area where computers are used.
(2 marks)
(b) Give any two advantages of using computers in this area
(4 marks)
(c) Explain three effects of computer technology in the following areas:
(i) Job opportunities
(3marks)

Answers

Answer:

13. (a) One area where computers are used is in the creation of a record of auxiliary workers, doctors, nurses, patients, vendors, and payments that can be easily retrieved at an hospital

(b) Two advantages of using computers in an hospital are;

1) The ability to easily access the health record of a patient by a member of staff involved in treating the patient from any location

2) The reduction in the number of physical files and document kept at the counter or record storage which takes up more space as new patients are registered, even when the number of active patients remains the same

(c) Three effects of computer technology in the following area are;

(i) Job opportunities

1) The introduction of the desktop computer, increased the number of job opportunities in desktop publishing, administrative assistance and secretarial role

2) Computer technology has made more people able to work from home

3) Computer applications use with computer technology and developed to work with production machines has created a large number of machine operator job opportunities

Explanation:

What word is used to describe "how intense or vivid a particular color appears?"

Answers

The word used to describe how intense or vivid a particular color appears is "saturation."

Color in computers is represented using a combination of red, green, and blue (RGB) values. Each color channel can range from 0 to 255, representing the intensity of the corresponding color. By combining different amounts of red, green, and blue, any color can be created. This system is known as additive color mixing.

Another color representation used in computers is CMYK, which stands for cyan, magenta, yellow, and black. This system is used for printing and is based on subtractive color mixing.

Computer screens and other displays use light to create colors, while printed materials use ink. The color accuracy of computer displays can vary depending on factors such as the quality of the display and the calibration of the color settings.

Learn more about color here:

https://brainly.com/question/3330922

#SPJ11

What does it mean when a computer is processing
A computer is doing a task
B user is thinking
C the computer is recharging
D software is engaging

Answers

When a computer is processing it means that (A) computer is doing a task.

State the functions of the CPU.

Any digital computer system's central processing unit (CPU), which consists of the system's main memory, control unit, and the arithmetic-logic unit, is its main part. It serves as the actual brain of the entire computer system, connecting numerous peripherals including input/output devices and auxiliary storage units. On an integrated circuit chip known as a microprocessor, the Control Processing Unit (CPU) of contemporary computers is housed.

The Central Processing Unit (CPU) is distinguished by the following functions:

As the brain of the computer, the CPU is regarded.All data processing processes are carried out by the CPU.Information including data, preliminary findings, and directions are saved (program).All computer parts follow its instructions when operating.

To learn more about the Central Processing Unit, use the link given
https://brainly.com/question/26411941
#SPJ9

I am timed and it needs to be in program C PLEASE help !!


Declare an array of doubles of size 170 called examBonus and initialize all the elements in the array to 5.5 (HINT: use a loop)

Answers

Answer:

Following are the declaration to this question:

double examBonus[] = new double[170]; // declaring the double array examBonus that holds 170 size value  

int x1;//defining an integer variable x1

for (x1=0;x1<170;x1++)//defining a for loop that initialize value in array

{

examBonus[x1] = 5.5;//assign value in array

}

Explanation:

In the above-given java program code, a double type array "examBonus" is declared, that holds a given size value, which is already defined in the question.

In the next step, an integer variable "x1" is defined which is used in the for loop that starts from 0 and ends when its value less than 170, and it assigns the value "5.5" in the above-given array.

The lifetime of a new 6S hard-drive follows a Uniform
distribution over the range of [1.5, 3.0 years]. A 6S hard-drive
has been used for 2 years and is still working. What is the
probability that it i

Answers

The given hard-drive has been used for 2 years and is still working. We are to find the probability that it is still working after 2 years. Let A denote the event that the hard-drive lasts beyond 2 years. Then we can write the probability of A as follows:P(A) = P(the lifetime of the hard-drive exceeds 2 years).By definition of Uniform distribution, the probability density function of the lifetime of the hard-drive is given by:

f(x) = 1/(b - a) if a ≤ x ≤ b; 0 otherwise.where a = 1.5 years and b = 3.0 years are the minimum and maximum possible lifetimes of the hard-drive, respectively. Since the probability density function is uniform, the probability of the hard-lifetime of a new 6S hard-drive follows a Uniform distribution over the range of [1.5, 3.0 years]. We are to find the probability that a 6S hard-drive, which has been used for 2 years and is still working, will continue to work beyond 2 years.Let X denote the lifetime of the hard-drive in years.

Then X follows the Uniform distribution with a = 1.5 and b = 3.0. Thus, the probability density function of X is given by:f(x) = 1/(b - a) if a ≤ x ≤ b; 0 otherwise.Substituting the given values, we get:f(x) = 1/(3.0 - 1.5) = 1/1.5 if 1.5 ≤ x ≤ 3.0; 0 the integral is taken over the interval [2, 3] (since we want to find the probability that the hard-drive lasts beyond 2 years). Hence,P(A) = ∫f(x) dx = ∫1/1.5 dx = x/1.5 between the limits x = 2 and x = 3= [3/1.5] - [2/1.5] = 2/3Thus, the probability that a 6S hard-drive, which has been used for 2 years and is still working, will continue to work beyond 2 years is 2/3.

To know more about Uniform distribution visit:

brainly.com/question/13941002

#SPJ11

a binary mixed-integer programming problem in which the binary variables represent whether an activity, such as a production run, is undertaken or not is known as the a. fixed-cost problem. b. covering problem. c. share of choice problem. d. capital budgeting problem.

Answers

A binary mixed-integer programming problem in which the binary variables represent whether an activity, such as a production run, is undertaken or not is known as the fixed-cost problem (option a). In a fixed-cost problem.

the decision variables are binary, indicating whether to perform an activity or not. These decisions often involve incurring a fixed cost if the activity is chosen to be undertaken. Examples of fixed costs include the setup cost for a production line, the cost of opening a facility, or the mixed integer cost of initiating a project. The objective of the fixed-cost problem is to minimize the total cost, which includes both fixed and variable costs, while meeting specific requirements or constraints. Fixed-cost problems are widely used in operations research, supply chain management, and other areas of optimization, and are an important category of binary mixed-integer programming problems.

The formal name of this problem is the (linear) integer-programming problem. When some decision variables—but not all—must be made up of integers, the programme is said to fall under the category of a mixed integer programme. A programme is referred to as a pure integer programme when every variable utilised to make decisions must be an integer. A crucial special circumstance is when a decision variable, X1, at the instant of resolution can only be either 0 or 1. These variables, also known as 0-1 or binary integer variables, can be used to mimic yes-or-no decisions, like building a plant or buying a piece of machinery.

Learn more about mixed-integer  here

https://brainly.com/question/31759821

#SPJ11

PLEASE HELPPPPP ASAP, 50 POINT'S + BRAINLIEST

1.) Online crimes causing loss of money: give 5 names and examples to each

2.) Online misconduct or crimes targeting medical offices and services: give 5 names and examples to each

3.) Online misconduct or crimes that you have experienced: give 5 names and examples to each

Answers

Answer:

1. Cybercrimes are online crimes that cause loss of money some examples are: Identity fraud, Cyber bribery, Debit/credit card fr/ud, and Email fr/ud.  

2. In medical offices devices linked to CT scans are able to be h/cked, there is r/nsomw/re that uses their devices. Since medic/l computers are always linked to the internet. it makes it easier for them to be h/cked. They make an employee click on an e-mail carrying m/lw/re, then the cybercrimin/ls encrypt p/tient data then dem/nd p/yment for its decryption.

3. This is a personal question but if you have ever been sc/mmed or witnessed someone being sc/mmed or almost got  sc/mmed it might apply to this question

the program must display the final enemy x,y position after moving. the x,y coords should be displayed with one precision point. terminate each set of coordinates with a new line (\n) character.

Answers

To display the final enemy x,y position after moving with one precision point and terminating each set of coordinates with a new line character, you can use the following code snippet:

# Assume that the enemy has moved to the coordinates (3.1416, 2.7183)

enemy_x = 3.1416

enemy_y = 2.7183

# Display the coordinates with one precision point and terminate with a new line character

print("{:.1f},{:.1f}\n".format(enemy_x, enemy_y))

This will output the updated x,y coordinates in the desired format.

For displaying the final enemy x, y position after moving with one precision point, and terminating each set of coordinates with a new line character, follow these steps:

1. Define the initial enemy coordinates (x, y).
2. Apply the movement logic to update the enemy's x, y coordinates.
3. Format the new coordinates with one decimal point precision.
4. Display the updated x, y coordinates and terminate each set with a new line character (\n).

Your program should follow these steps to achieve the desired output.

Learn more about coordinates :

https://brainly.com/question/31053078

#SPJ11

Why does brainly always say, "We're sorry, but we are not able to complete your registration at this time"?! Now I cant view any answers to any questions!

Answers

Answer and Explanation:

It's very likely a network issue. You could do a hard refresh on your browser or brainly app. Simply clear your application's cache or your browser data or cache and then try again. You could also try re-installing your app. If this doesn't work, please reach out to the Brainly customer support team for help.

Explain why regular system cleanup is vital to ensuring the operating system runs efficiently. ?

Answers

Answer:

System cleanup removes any junk that could make the system run badly.

NEED THIS ASAP!!) What makes open source software different from closed source software? A It is made specifically for the Linux operating system. B It allows users to view the underlying code. C It is always developed by teams of professional programmers. D It is programmed directly in 1s and 0s instead of using a programming language.

Answers

Answer: B

Explanation: Open Source software is "open" by nature, meaning collaborative. Developers share code, knowledge, and related insight in order to for others to use it and innovate together over time. It is differentiated from commercial software, which is not "open" or generally free to use.

PLEASE I WILL GIVE 100 POINTS


Which of the following can be used in a Java program as identifiers? Check all of the identifiers that are legal.

Group of answer choices

average

sum_of_data

for

sum_of_data

42isTheSolution

first-name

AnnualSalary

Answers

Note that the options that can be used in a Java program as identifiers are:

averagesum_of_datasum_of_data42isTheSolutionAnnualSalary.

What are Identifiers?

In Java, identifiers are names that differentiate between various Java entities such as classes, methods, variables, and packages. Names of classes, methods, variables, packages, constants, and so on are examples of identifiers.

A package, class, interface, method, or variable is given a name in Java. It enables the programmer to refer to the object from elsewhere in the program. To get the most out of your identifiers, make them relevant and adhere to conventional Java naming rules.

Learn more about Identifiers:
https://brainly.com/question/15087963
#SPJ1

a network command-line utility in ms windows that tracks and displays the route taken by ipv4 packets on their way to another host is called:

Answers

This tool is useful for diagnosing network issues and determining the path data takes between two devices.

Explain  diagnosing network?

Your question is: a network command-line utility in MS Windows that tracks and displays the route taken by IPv4 packets on their way to another host is called what?

Your answer: The network command-line utility in MS Windows that tracks and displays the route taken by IPv4 packets on their way to another host is called "tracert" or "trace route." This tool is useful for diagnosing network issues and determining the path data takes between two devices.

Learn more about diagnosing network

brainly.com/question/29353061

#SPJ11

Explain the difference between file and folder (in your own words)

Answers

Answer:

the difference is one is online and one is not

Explanation:

A file is usually what you find online. And a folder is what you put papers into.

Which of the following statements is true about a class' member function definition?
a) A function definition provides a class name, return type, arguments, and the function statements.
b) A function definition provides the function name, return type,and arguments.
c) A programmer first defines a function and then declares the member functions.
d) A modulus operator is used preceding the functions name in a function definition.

Answers

b) A function definition provides the function name, return type,and arguments.

A function definition in a class typically includes the function name, return type, and arguments.  However, it does not necessarily provide the class name or the function statements. Therefore, statement (b) is the correct option. In a class, the programmer usually first declares the member functions and then defines them separately. The function definition contains the implementation of the function, including the statements that define its behavior. It does not involve a modulus operator preceding the function name.

Learn more about function definition here:

https://brainly.com/question/30610454

#SPJ11

Suppose the two syringes and the tube is filled with water If the plunger on the left is pushed in 1 cm will the object on the right move out by 1 cm or not

Answers

It should be noted that the two syringes and the tube is filled with water If the plunger on the left is pushed in 1 cm will not have the object on the right move out by 1 cm or not. Therefore, it's false.

How to explain the information

As the syringes tube have different diameter as right one is thicker as compared to left one.

So due to volume consistency in 1 case ,(as water is incompressible) the left plunger will move less than 1 cm ,suppose zcm ( Area1 x 1cm= Area2 x zcm) as area 2 is more than area 1 so Z will be less than 1 cm.

Learn more about syringe on:

https://brainly.com/question/28221550

#SPJ1

you have recently been given an older laptop to use for performing basic tasks such as sending emails and editing documents. however, when the display changes from one color to another, you notice that there is some distortion in the image. which of the following lcd technology types is most likely being used for the lcd display?

Answers

Twisted Nematic LCD technology types is most likely being used for the LCD display.

What is LCD display?

LCD display is defined as a flat-panel display or other electronically modified optical device that makes advantage of polarizers and the liquid crystals' capacity to manipulate light. Consumer electronics items like DVD players, gaming consoles, and clocks all employ LCD screens.

Nematic liquid crystal is used in this technology, which is sandwiched between two glass plates. The liquid crystals rotate 90° when electricity is introduced to the electrodes. The most popular kind of LCD screen is called a TN (Twisted Nematic) LCD.

Thus, Twisted Nematic LCD technology types is most likely being used for the LCD display.

To learn more about LCD display, refer to the link below:

https://brainly.com/question/28305491

#SPJ1

hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.

What should Chris do?

Answers

He should un caps lock it

HTTP https CSS JavaScript and HTML are types of coding and formatting behind web pages true or false?

Answers

Answer:

True

Explanation:

In order to be able to run a webpage successfully, there are various coding and formatting that are required and can considered necessary.

They are:

a) Hypertext Transfer Protocol(HTTP): This is a protocol that is made use of on webpages. It is used to determine the information or data that is collected and transmitted through webpages. The commands that are programmed on webpages are modified by this protocol. The data or information that can be transmitted using HTTP includes: Pictures, Video or Audio recordings e.t.c.

b) Hypertext Transfer Protocol Secure(HTTPS) : This is an advanced or modified form of HTTP. The difference between them is HTTPS is more secure than HTTP. HTTPS is defined as a more secured protocol thorough which data or information can be transmitted from one webpage to another. HTTPS make used of an encrypted type of security during data transmission.

c) Cascading Style (CSS): It is a computer language technology that helps to define and modify the way a webpage looks like. Cascading Style can be defined as a formatting style that deal with the fonts, colour , layout of a webpage.

d) JavaScript :This is a programming language that is used on webpages. It is a set of coding that has commands embedded insided that is written to make webpages more interactive and fun for the users of the Internet.

e)Hypertext Markup Language (HTML): This is what is used to create webpages on the internet. Hypertext Markup Language defines what a webpage actually looks like which involves, the written document on the webpage

Answer:

true 100 percent true

Explanation:

its the truuth its the truuuth its the truuuuuuuth
yea aa

Expressions that are tested by the if statement are called boolean expressions.a. trueb. false

Answers

The given statement "Expressions that are tested by the if statement are called Boolean expressions" is True because Boolean expression can be formed by combining one or more relational operators

Boolean expressions are expressions that are tested by the if statement and evaluate to either true or false. A Boolean expression can be formed by combining one or more relational operators such as >, <, ==, !=, >=, <= with one or more values.

An illustrate  of a Boolean expression is x > 0, which evaluates to true if the value of x is greater than 0. They are commonly used in programming and logic to make decisions based on certain conditions.

For example, the following if statement checks whether the variable x is greater than 5.

For such more question on Boolean:

https://brainly.com/question/30779924

#SPJ11

Suppose we have a String object and treat the characters from beginning to end in the following way: we push the character on a stack, and we also add the character to a queue. After processing the entire object, we then pop from the stack and remove from the queue pairs of characters, and compare then to each other. What does it mean if all the character pairs match?

Answers

If all the character pairs match, it means that the characters in the String object are symmetric. This implies that the characters from the beginning to the middle of the String are the same as the characters from the middle to the end of the String, when read in reverse order. In other words, the String is a palindrome.

To understand why this is the case, let's go through an example. Consider the String "racecar". When we process this String by pushing each character onto a stack and adding it to a queue, we end up with the stack containing "r, a, c, e, c, a, r" (read in reverse order) and the queue containing "r, a, c, e, c, a, r" (read in normal order).

Now, when we pop from the stack and remove from the queue, we compare each pair of characters. In this case, every pair matches: 'r' matches with 'r', 'a' matches with 'a', 'c' matches with 'c', and so on. Therefore, we can conclude that all the character pairs match and the String "racecar" is a palindrome.

To know more about String visit:

https://brainly.com/question/946868

#SPJ11

Multiple Choice
Which of the following statements best describes how digital photographs can be used?
They can be used in any kind of distribution, but must first be converted to film.
They can be used in traditional media or through digital distribution.
They can only be used in traditional media.
They can only be used through digital distribution.

Answers

b. They can be used in traditional media or through digital distribution, is the stament describes best about how digital photographs can be used.

What is digital photograph?

A digital photograph is a picture that is created and stored in digital format using a device such as a digital camera, smartphone, or computer. It consists of a matrix of pixels, each of which is assigned a specific color and intensity value.

The image can be easily edited, manipulated, and stored on digital devices, making it easy to share and distribute. Digital photography has revolutionized the field of photography, making it easier and more accessible for individuals and professionals alike.

The quality and resolution of digital photographs can vary greatly, depending on the device and settings used to capture the image.

To know more about digital photographs, visit: https://brainly.com/question/23941185

#SPJ1

what are the functions of online gaming communities?

Answers

Answer:

As a high-quality communication system, online games provide a virtual world where gamers communicate with each other by using rich interactive multimedia. This would facilitate communication among online gamers and enhance the development and maintenance of interpersonal relationships.

3 things in terms of photography to learn about.

Answers

The three important principle in photography are;

Light Subject and Composition.

What is the explanation for these terms?

Photography is about light. Without it, you couldn't even take images, let alone excellent ones.

The quality of light varies from one to photograph, yet it is always what gives your photographs their underlying structure. It doesn't get any more basic than that.

Most of us snap photos because something catches our attention.

Unsurprisingly, that "something" is your subject.

If you're explaining a photograph to someone else, the topic is most likely the first thing you'll mention.

Finally, the composition is the third and most important aspect of every shot.

Simply said, composition is the arrangement of the things in your shot. It includes your camera position, the connections between photo elements, and the things you accentuate, deemphasize, or altogether eliminate. Composition is the method through which you communicate your tale.

Learn more about photography:
https://brainly.com/question/30685203
#SPJ1

what is a scratch application pls help me build a game through scratch step by step​

Answers

Answer:

Scratch is the a coding community and a coding language with simple visual interface that allows people to create digital stories, games and animeations ect.

Explanation: Migth be able to help depending on waht you are making

plz help
In response to a line of code reading name = input(“What is your name?”), the user enters the word Joshi. What will be the variable name assigned to the data Joshi?
a.
input

b.
name

c.
one

d.
What is your name?

Answers

Answer:

name

Explanation:

name =

is an assignment to the variable called 'name'.

Answer:

b. name

Explanation:

Not sure what language this is, but it looks like input( ) is a function that displays whatever you pass in, and then gets the responding user input.

Therefore, when you assign the function to a variable named "name", whatever the user input is will be assigned to it.

var name;

name = input("What is your name?");

print(name); //This would print the user's input.

Other Questions
PLEASE HELP!What is the difference between religion and government? The diameter of a cylinder was measured 2 times and the following data values were obtained 10.14 mm 10.16 mm .The diameter with its uncertainty is : Based on interviews with 93 SARS patients, researchers found that the mean incubation period was 51 days, with a standard deviation of 14.3 days. Based on this information, construct a 95% confidence interval for the mean incubation period of the SARS virus. Interpret the interval. The lower bound is days. (Round to two decimal places as needed.) The upper bound is days. (Round to two decimal places as needed.) Interpret the interval. Choose the correct answer below. O A. There is 95% confidence that the mean incubation period lies between the lower and upper bounds of the interval B. There is 95% confidence that the mean incubation period is greater than the upper bound of the interval. C. There is 95% confidence that the mean incubation period is less than the lower bound of the interval D. There is a 95% probability that the mean incubation penod lies between the lower and upper bounds of the Read this excerpt from an APA-formatted paper.Imagine a classroom of 20 children, ready for learning. In this class, 12 of them-over half-are considered low-income or poor. According tothe National Center for Children in Poverty, of the 72 million children in the United States, more than 45 million of them are growing up in low-income or poor families. That is 64 percent of children in the richest country in the world living just above or under the poverty line (Jiang et al.,2017, p.1).Identify the answer that is an attributive phrase from this excerpt.O According to the National Center for Children in PovertyO of the 72 million children in the United States, more than 45 million of them are growing up in low-income or poor familiesO (Jiang et al., 2017, p.1)Imagine a classroom of 20 children, ready for learning. c) Two cars start driving from the same point. One drives west at 80 km/h and the other drives southwest at 100 km/h. How fast is the distance between the cars changing after 15 minutes? Give your ans PLEASE HELP AAAAAA01.04 MC)What is the sign of the product (-7)(-2)(-5)(1)? (5 points)Negative, because the products (-7) (-2) and (-5) (1) are negative and the product of two negative numbers is negativePositive, because the products (-7)(-2) and (-5)(1) are positive, and the product of two positive numbers is positivePositive, because the products (-7)(-2) and (-5)(1) are negative, and the product of two negative numbers is positiveNegative, because the product (-7)(-2) is positive, and the product (-5)(1) is negative and the product of a positive and a negative number is negative What do you think is a better economic system A) Command Economy B) Free Market Economy Please give 2 examples / situations to demonstrate why / when you feel the system you chose is better. determining y intercept and zeroes. PLEASE HELP!!! with either one is okay !!! thank you! human abo groups are best described as an example of __________. 1. The anti-slave laws passed by Congress helpeda. people who were already Americanslaves.b. current American slaves' children.c. to end slavery worldwide.d. to stop more people from becomingAmerican slaves. How has government de-regulation of the airline industry affected the supply of airline flights?(Choose the best answer)the supply curve shifts leftthe supply curve shifts rightquantity supplied increasesquantity supplied decreases What is the sequence of a peptide based on the following mRNA sequence? 5' . . . UUUUCUUAUUGUCUU 3'A) leu-cys-tyr-ser-pheB) cyc-phe-tyr-cys-leuC) phe-leu-ile-met-val D) leu-pro-asp-lys-gly E) phe-ser-tyr-cys-leu is "the steak was cooking nicely" a perfect tense? write the slope intercept form of the equation of the line that passes through thegivn piont and has the indicated slope (-8,-2) and m=(3)/(4) If a car can go from 20m/s to 40m/s in 4.0 secs, what would be its acceleration? PLS HELPPPPPPPPPPPPPPPPP based on your answer,what idea comes in to your mind? In five to elght sentences, explain the three responses to music and give an example of eachWRITER Please help me may mark brainly due today and if this is correct do you think you could help me with more? ( and don't do this for the points or I will report you ) What is the surface area of the cube shown?square centimeters