Assume your sketch has a variable named silo, which stores an object that is defined by a class you have created. The name of the class is Cylinder. The Cylinder class has a method named volume, which calculates the volume of a cylinder using its property values and returns the calculated value. Which line of code is the correct line to use the silo variable, calculate volume, and store that value in a new variable.

a. let v = [silo volume];
b. let v = volume(silo);
c. let v = silo.volume();
d. let v = silo[volume];
e. let v = cylinder.volume(radius, height);

Answers

Answer 1

Answer:

c. let v = silo.volume();

Explanation:

When you create and initialize a new object you pass through that object's class constructor. The constructor is in charge of initializing all the necessary variables for that class including radius and height. Once you save the object in a specific variable (silo) you need to call the class methods through that variable, using the '.' command. Therefore, in this scenario, in order to call the volume() method you would need to call it from the silo object and save it to the v variable, using the following statement.

let v = silo.volume();


Related Questions

Which of the following is a factor that could cause an individual to have excited delirium syndrome?
Choose only ONE best answer.
PMS
Ulcer
Nose bleed
D
Respiratory problems​

Answers

Excited delirium occurs most commonly in males with a history of serious mental illness or acute or chronic substance use disorder, particularly stimulant drugs such as cocaine and MDPV. Alcohol withdrawal or head trauma may also contribute to the condition

Respiratory problems​ is a factor could cause an individual to have excited

delirium syndrome.

People with excited delirium syndrome exhibit unique characteristics such as

Paranoia HallucinationViolenceDistress

This is usually as a result of  the use of some drugs such as cocaine and

methamphetamine which decreases the effect of dopamine modulating

respiratory functions thereby resulting to asphyxia and cardiac arrest.

Read more about Syndromes here https://brainly.com/question/24825576

Code to be written in Python
Correct answer will be awarded Brainliest

In this task, we will be finding a possible solution to number puzzles like 'SAVE' + 'MORE' = 'MONEY'. Each alphabet represents a digit. You are required to implement a function addition_puzzle that returns a dictionary containing alphabet-digit mappings that satisfy the equation. Note that if there are multiple solutions, you can return any valid solution. If there is no solution, then your function should return False.


>>> addition_puzzle('ANT', 'MAN', 'COOL')
{'A': 8, 'C': 1, 'L': 9, 'M': 6, 'N': 7, 'O': 5, 'T': 2}

>>> addition_puzzle('AB', 'CD', 'E')
False
Explanations:

ANT + MAN = COOL: 872 + 687 = 1559
AB + CD = E: The sum of two 2-digit numbers must be at least a two-digit number.

Your solution needs to satisfy 2 conditions:

The leftmost letter cannot be zero in any word.
There must be a one-to-one mapping between letters and digits. In other words, if you choose the digit 6 for the letter M, then all of the M's in the puzzle must be 6 and no other letter can be a 6.
addition_puzzle takes in at least 3 arguments. The last argument is the sum of all the previous arguments.

Note: The test cases are small enough, don't worry too much about whether or not your code will run within the time limit.

def addition_puzzle(*args):
pass # your code here

Answers

Answer:

Here is one possible solution to this problem in Python:

from itertools import permutations

def addition_puzzle(*args):

 # Get all permutations of the digits 0-9

 digits = list(range(10))

 all_permutations = list(permutations(digits))

 # Iterate through each permutation

 for perm in all_permutations:

   # Create a dictionary mapping each alphabet to a digit

   mapping = {alphabet: digit for alphabet, digit in zip(args[0], perm)}

   if all(mapping[alphabet] != 0 for alphabet in args[0]):

     # Check if the sum of the numbers is equal to the last argument

     num1 = int(''.join(str(mapping[alphabet]) for alphabet in args[1]))

     num2 = int(''.join(str(mapping[alphabet]) for alphabet in args[2]))

     if num1 + num2 == int(''.join(str(mapping[alphabet]) for alphabet in args[3])):

       return mapping

 # If no solution is found, return False

 return False

print(addition_puzzle('ANT', 'MAN', 'COOL'))

print(addition_puzzle('AB', 'CD', 'E'))

Explanation:

This solution first generates all possible permutations of the digits 0-9 using the permutations function from the itertools module. Then, it iterates through each permutation and creates a dictionary mapping each alphabet to a digit. It checks if the leftmost letter in any word is not zero and if the sum of the numbers is equal to the last argument. If both conditions are satisfied, it returns the mapping. If no solution is found after iterating through all permutations, it returns False.

What is Accenture's approach when it comes to helping our clients with security?​

Answers

Answer: Once actual project work starts, the CDP approach is implemented across all active contracts, helping Accenture client teams work with clients to drive a security governance and operational environment that addresses the unique security risks of each client engagement.

Explanation: Hopefully this helps you (Don't know if this is the right answer pls don't report if it is the wrong answer)

Which type of query should be used to select fields from one or more related tables in a database? Crosstab Find duplicates Simple Outer Join

Answers

Data files in specified directories can be opened by applications as if they were in the current directory. Append displays the appended directory list when it is invoked without any parameters.

What is the use of append query in database?

A query that appends copies selected records to an existing table by selecting them from one or more data sources.

Consider, for instance, that you already have a table in your existing database that maintains this type of data and that you acquire a database that contains a table of possible new clients.

Therefore, append query  should be used to select fields from one or more related tables in a database. Using records from one or more tables, an add query creates a new table.

Learn more about database here:

https://brainly.com/question/22536427

#SPJ1

Which benefits does the cloud provide to start-up companies without acccess to large funding

Answers

Answer:Among other things, the fact that anyone can connect to such a server from their home and work on something remotely

Explanation:

A yellow inspection tag on a scaffold means the scaffold has been inspected and

Answers

Answer:CAUTION

Explanation: on edg

Write a java program that asks the student for his name and the month in which he/she was born. Students are then divided into sections, according to the following: Section A: Name starts between A - E Born between months 1 - 6 Section B: Name starts between F - L Born between months 1 - 6 Section C: Name starts between M - Q Born between months 7 - 12 Section D: Name starts between R - Z Born between months 7 - 12

Answers

Answer:

import java.util.Scanner;

public class SectionAssignment {

 public static void main(String[] args) {

   // Create a scanner object to read input

   Scanner input = new Scanner(System.in);

   

   // Prompt the student for their name

   System.out.print("Enter your name: ");

   String name = input.nextLine();

   

   // Prompt the student for the month they were born

   System.out.print("Enter the month you were born (1-12): ");

   int month = input.nextInt();

   

   // Assign the student to a section based on their name and birth month

   String section = "";

   if (name.charAt(0) >= 'A' && name.charAt(0) <= 'E' && month >= 1 && month <= 6) {

     section = "A";

   } else if (name.charAt(0) >= 'F' && name.charAt(0) <= 'L' && month >= 1 && month <= 6) {

     section = "B";

   } else if (name.charAt(0) >= 'M' && name.charAt(0) <= 'Q' && month >= 7 && month <= 12) {

     section = "C";

   } else if (name.charAt(0) >= 'R' && name.charAt(0) <= 'Z' && month >= 7 && month <= 12) {

     section = "D";

   } else {

     section = "Invalid";

   }

   

   // Print the student's section assignment

   System.out.println("Your section is: " + section);

 }

}

Write a procedure ConvertToBinary that takes an input as a number from 0 to 16 (including 0 but not 16) and converts it to a binary number. The binary number should be returned as a list.

Answers

Sure, here's an example of a Python function that converts a decimal number to binary and returns the result as a list:

def ConvertToBinary(decimal):

binary = []

while decimal > 0:

remainder = decimal % 2

binary.append(remainder)

decimal = decimal // 2

return binary[::-1]

The function takes in an input decimal which is a number between 0 and 16 (not including 16) and uses a while loop to repeatedly divide the decimal number by 2 and take the remainder. The remainders are then appended to a list binary. Since the remainders are appended to the list in reverse order, the result is reversed by slicing the list [-1::-1] to give the proper order.

You can also add a check to make sure that the input is within the required range:

def ConvertToBinary(decimal):

if decimal < 0 or decimal >= 16:

return None

binary = []

while decimal > 0:

remainder = decimal % 2

binary.append(remainder)

decimal = decimal // 2

return binary[::-1]

this way you can make sure that the input provided is within the allowed range.

You are given a design board with four input pins a 4-bit INDATA,
1-bit Load,Enable, and Clock; and one output, a 4-bit OUTDATA.
Build a sequential circuit that contains a register (Don’t forget to
trigger that register by the FALLING edge of the clock, Logisim’s default
is the opposite!).
The register is updated every clock cycle in which Enable is up. If
Load is down, the register is incremented, otherwise it is loaded with the
data asserted on the INDATA pin.
The register data output should be connected with the output pin
OUTDATA.

Answers

The steps to Build a sequential circuit that contains a register  is given below

The first step is to connect the 4-bit INDATA input to the data input of a 4-bit register.Next, we need to connect the Load and Enable inputs to a multiplexer. The multiplexer will be used to select between the INDATA input and the output of the register.The multiplexer output should be connected to the input of the register.We also need to create an AND gate that will be used to trigger the register on the falling edge of the clock. The AND gate should have the Clock input as well as the Enable input as its inputs.The output of the AND gate should be connected to the clock input of the register.The output of the register should be connected to the OUTDATA output.Create a NOT gate and connect the Load input to it, and connect the output of the NOT gate to one of the multiplexer input.Connect the output of the register to the second input of the multiplexer.

What is the design board about?

To build a sequential circuit that contains a register, we can use a combination of logic gates, flip-flops, and multiplexers.

In the above way, the register will be updated every clock cycle in which the Enable input is high. If the Load input is low, the multiplexer will select the output of the register and it will be incremented.

Otherwise, the multiplexer will select the INDATA input and the register will be loaded with the data asserted on the INDATA pin. The output of the register will be connected to the OUTDATA output, providing the register data.

Learn more about design board from

https://brainly.com/question/28721884

#SPJ1

Complete the sentence.

The internet is an example of a ___ .

Answers

I’m going to assume it’s wan

Answer:

wan

Explanation:

MS-DOS can be characterized by which statement?
known for being user friendly
designed for smartphones
a command-line interface
a graphical user interface

Answers

Answer:

MS-Dos was a computer invented a long time ago, and it was one of the first computers that had a command-line interface.

Your answer is C.

The ability of a language to let a programmer develop a program on a computer system that can be run on other systems is called ________. This usually requires the program to be recompiled on each type of system, but the program itself may need little or no change.

Answers

Answer:

Virtual Machine

Explanation:

Example: JVM

Q1: Fill in the blanks in each of the following statements: a. The international standard database language is ______________. b. A table in a database consists of ___________and ___________ c. Statement objects return SQL query results as ___________ d. The ___________uniquely identifies each row in a table. e. SQL keyword _________ is followed by the selection criteria that specify the rows to selectin a query. f. SQL keywords ___________specify the order in which rows are sorted in a query. g. Merging rows from multiple database tables is called __________ the tables. h. A(n) ________ is an organized collection of data. i. A(n) ________is a set of columns whose values match the primary-key values of anothertable. j. method _______is used to obtain a Connection to a database. k. Interface ___________helps manage the connection between a Java program and adatabase. l. A(n) ___________object is used to submit a query to a database

Answers

Answer:

a. SQL.

b. Rows and columns.

c. ResultSet objects.

d. Primary key.

e. WHERE.

f. ORDER BY.

g. Joining.

h. Database.

i. Foreign key.

j. DriverManager; getConnection ().

k. Connection.

l. Statement.

Explanation:

A database management system (DBMS) can be defined as a collection of software applications that typically enables computer users to create, store, modify, retrieve and manage data or informations in a database. Generally, it allows computer users to efficiently retrieve and manage their data with an appropriate level of security.

A structured query language (SQL) can be defined as a domain-specific language designed and developed for managing the various data saved in a relational or structured database.

In Computer programming, any word restricted for use, only in object names because they belong to the SQL programming language are called reserved word.

Some examples of reserved words in structured query language (SQL) are UPDATE, GROUP, CURRENT_USER, CURRENT_DATE, WHERE, CREATE, DELETE, ORDER BY, etc.

Filling in the missing words or texts in the question, we have;

a. The international standard database language is SQL.

b. A table in a database consists of rows and columns.

c. Statement objects return SQL query results as ResultSet objects.

d. The primary key uniquely identifies each row in a table.

e. SQL keyword WHERE is followed by the selection criteria that specify the rows to selectin a query.

f. SQL keywords ORDER BY the order in which rows are sorted in a query.

g. Merging rows from multiple database tables is called joining the tables.

h. A database is an organized collection of data.

i. A foreign key is a set of columns whose values match the primary-key values of another table.

j. DriverManager method, getConnection () is used to obtain a Connection to a database.

k. Interface connection helps manage the connection between a Java program and a database.

l. A statement object is used to submit a query to a database.

6. This interface uses only commands that you type:​

Answers

That doesn’t make sense just saying

Why does trust usually break down in a designer-client relationship?


A lack of service

B lack of privacy

C lack of communication

D lack of contract

Answers

Trust is usually broken down in a designer-client relationship due to a lack of service. Thus, the correct option for this question is A.

How do you end a client relationship?

You would end a client relationship by staying calm, rational, and polite. Apart from this, reasons for terminating the relationship, but keep emotion and name-calling out of the conversation.

Follow-up with a phone call. You can start the process with an email, but you should follow up with a phone call in order to talk your client through the process and answer any questions.

But on contrary, one can build trust with clients by giving respect to them, Admit Mistakes and Correct Ethically, listening to them, listening to their words first followed by a systematic response, etc.

Therefore, trust is usually broken down in a designer-client relationship due to a lack of service. Thus, the correct option for this question is A.

To learn more about Client relationships, refer to the link:

https://brainly.com/question/25656282

#SPJ1

• Describe the core components and terminology of Group Policy.

Answers

The core components and terminology of the group policy are directory services and file sharing.

What is the group policy component?

A GPO is a virtual object that stores policy-setting information and consists of two parts: GPO's and their attributes are saved in a directory service, such as Active Directory.

It essentially provides a centralized location for administrators to manage and configure the settings of operating systems, applications, and users.

File share: GPO's can also save policy settings to a local or remote file share, such as the Group Policy file share.

Therefore, the group policy's main components and terminology are directory services and file sharing.

To learn more about the group policy component, visit here:

https://brainly.com/question/14275197

#SPJ1

Identifying the Location of the Property Sheet
es
When active, where is the Property Sheet located?
o to the left of the tables and reports
O above the tables and reports
O to the right of the tables and reports
O below the tables and reports
We

Answers

Answer: C) To the right of the tables and reports

List 2 or 3 visual aids that you might use during a speech on "Technology in the Classroom" (or a topic of your choosing) to illustrate your main points, and explain exactly how you plan to use them. (Site 1)

Answers

Answer:

Graphs or charts: I would use graphs or charts to illustrate the trend of technology usage in the classroom over time. For example, I could show a line graph that compares the percentage of classrooms that had no technology, limited technology, or full technology access in the past decade. This would allow the audience to see the increasing trend of technology adoption in the classroom and better understand the impact that technology is having on education.

Photos or videos: I would use photos or videos to provide concrete examples of how technology is being used in the classroom to enhance teaching and learning. For example, I could show a video of a teacher using a virtual reality headset to take her students on a virtual field trip to a museum, or I could show a series of photos of students using tablets or laptops to complete assignments and collaborate with their peers. These visual aids would help the audience to better understand the specific ways in which technology is being used in the classroom and how it is benefiting students and teachers.

Infographic: I would use an infographic to present a summary of the main points of my speech in a visually appealing and easy-to-understand format. The infographic could include bullet points or graphics that highlight the key benefits of technology in the classroom, such as increased engagement, improved learning outcomes, and enhanced collaboration. By presenting the information in this way, I could help the audience to quickly grasp the main points of my speech and better retain the information.

what is primary key? List any two advantage of it.​

Answers

A primary key is a column or set of columns in a database table that is used to uniquely identify each row in the table. It is a fundamental element of database design, as it ensures that each row in a table can be uniquely identified and helps to enforce the integrity of the data.

There are several advantages to using a primary key in a database table:

Uniqueness: A primary key ensures that every row in a table has a unique identifier, which makes it easier to distinguish one row from another.
Data integrity: A primary key helps to ensure that the data in a table is accurate and consistent, as it can be used to enforce relationships between tables and prevent data inconsistencies.
Performance: A primary key can be used to optimize the performance of a database, as it can be used to quickly locate and retrieve specific rows of data.
Data security: A primary key can be used to secure sensitive data in a database, as it can be used to control access to specific rows of data.
A primary key is a column of set columns heft ref

Which of the following devices can store large amounts of electricity, even when unplugged?
LCD monitor
DVD optical drive
CRT monitor
Hard disk drive

Answers

Even when unplugged, a CRT (Cathode Ray Tube) monitor can store a lot of electricity. The capacitors within CRT monitors can store enough power to be fatal, thus you should never open one.

What does CRT stand for?

An electron beam striking a phosphorescent surface creates images in a cathode-ray tube (CRT), a specialized vacuum tube. CRTs are typically used for desktop computer displays. The "picture tube" in a television receiver is comparable to the CRT in a computer display.

What characteristics does CRT have?

Flat screen, touch screen, anti-reflective coating, non-interlaced, industrial metal cabinet, and digital video input signal are typical features of CRT monitors. As opposed to the typically curved screen found in most CRT displays, the monitor's screen can be (almost) flat.

To learn more about CRT monitors visit:

brainly.com/question/29525173

#SPJ1

Answer:

CRT monitor

Explanation:

A cathode ray tube (CRT) monitor can store large amounts of electricity, even when unplugged. You should never open a CRT monitor, as the capacitors within the CRT can store enough electricity to be lethal.

LCD monitors do not use large capacitors and are much safer to work on than CRT monitors (although the CCFL backlight has mercury vapor in it, which could be harmful if the tube is broken).

DVD optical drives and hard disk drives do not store electricity in sufficient quantity to be harmful.

To protect your online privacy, you should not?
A. be careful when talking to strangers online.
B. use an antivirus software.
C. download updates for mobile devices and computers.
D. use the same password for every account.

Answers

Answer:

Your answer to this will be D) Use the same password for every account.

Explanation:

This is the only option you should not do. If someone gets access or hacks into one of your accounts, and all accounts to anything are the same password they will have all of your accounts.

Directions :: Write a Ship class. Ship will have x, y, and speed properties. x, y, and speed are integer numbers. You must provide 3 constructors, an equals, and a toString for class Ship.



One constructor must be a default.

One constructor must be an x and y only constructor.

One constructor must be an x, y, and speed constructor.

Provide all accessor and mutator methods needed to complete the class.

Add a increaseSpeed method to make the Ship speed up according to a parameter passed in.

Provide an equals method to determine if 2 Ships are the same(i.e. in the same location).

You also must provide a toString() method.

The toString() should return the x, y, and speed of the Ship.



In order to test your newly created class, you must create another class called ShipRunner. There you will code in the main method and create at least 2 Ship objects (although you can create more if you like), using the constructors you created in the Ship class. Then you will print them out using the toString method and compare them with the equals method.



I'm trying to make an equals method I just don't know how to​

Answers

Answer: Assuming this is in the java language.. the equals() would be

Explanation:

public boolean equals(Object o){

   if(o == this){

        return true;

   }

   if (!(o instanceof Ship)) {

     return false;

   }

   Ship s = (Ship) o;

   return s.x == this.x && s.y == this.y && s.speed == this.speed;

 }

state five fonction of THE operating system​

Answers

Answer:

An operating system has three main functions: (1) manage the computer's resources, such as the central processing unit, memory, disk drives, and printers, (2) establish a user interface, and (3) execute and provide services for applications software.

Memory Management.

Processor Management.

Device Management.

File Management.

Security.

Control over system performance.

Job accounting.

Error detecting aids.

differentiate between RAM and ROM​

Answers

Explanation:

RAM is a volatile memory that temporarily stores the files you are working on.

ROM is a non-volatile memory that permanently stores instructions for your computer.

RAM stands for random access memory, that is volatile memory that TEMPORARILY stores the files you are working on. On the other hand ROM stands for read-only memory, it is non-volatile memory that PERMANENTLY stores instructions for your computer.

Write a program that prompts the user to enter the hourly rate, the total consulting time, and whether the person has low income. The program should output the billing amount. Your program must contain a function that takes as input the hourly rate, the total consulting time, and a value indicating whether the person has low income. The function should return the billing amount. Your program may prompt the user to enter the consulting time in minutes.

Answers

Answer:

Explanation:

The following program was written in Java. It creates the function as requested and asks the user for all the values as inputs. No proper reason was given for asking for low income so I just added it as a yes or no print statement. The picture below shows the inputs and outputs of the program.

import java.util.ArrayList;

import java.util.Scanner;

class Brainly {

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       System.out.println("Hourly rate: ");

       double rate = in.nextDouble();

       System.out.println("Consulting Time in minutes: ");

       int consultingTime = in.nextInt();

       System.out.println("Low Income? y/n");

       String lowIncome = in.next().toLowerCase();

       String lowIncomeAnswer;

       if (lowIncome.charAt(0) == 'y') {

           lowIncomeAnswer = "Yes";

       } else {

           lowIncomeAnswer = "No";

       }

       System.out.println("Billing Amount: " + billing(rate, consultingTime, lowIncome));

       System.out.println("Low Income: " + lowIncomeAnswer);

   }

   public static double billing(double rate, int consultingTime, String lowIncome) {

       double timeHours = consultingTime / 60;

       double billing = rate * timeHours;

       return billing;

   }

}

The most reliable way to store important files without having to worry about backups or media failure is ____________.

A) cloud storage
B) on a USB flash drive
C) on a hard disk drive
D) on an optical disc

Answers

The answer to this question is letter B
A. Cloud storage


The ideal approach to save data for a longer time is cloud storage. Data security and storage reliability are two advantages of cloud storage that can't be matched. In addition, end-to-end encryption ensures the safety of all transmitted data.

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

Answers

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

What is Customer Lifetime Value (CLV)?

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

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

Learn more about business from

https://brainly.com/question/28464469

#SPJ1

how computer user interact with an application programs​

Answers

Answer:

From the help of graphic user interface

Explanation:

A graphical user interface, or GUI, is used in almost all software programmes. This indicates that the software contains graphical functions that the user can manipulate using a any input device like mouse or keyboard. A software configuration program's graphical user interface (GUI) contains a menu bar, toolbar, tabs, controls, as well as other functions.

These tools protect networks from external threats.

A) firewalls
B) routers
C) antivirus software
D) VPN

Answers

Answer:

for safety everyone is needed, read the explanation

Explanation:

These tools protect networks from external threats.

A) firewalls

B) routers

C) antivirus software

D) VPN

the firewall, which can be installed in the pc but some routers also have it.

An antivirus is certainly needed, an antimalware is missing from the list, which is essential, for the VPN it is also useful to make believe you are connected in one place and instead you are in another, so I would say that all are needed for PC security

why does a computer system need memory​

Answers

Explanation:

Computer memory is a temporary storage area. It holds the data and instructions that the Central Processing Unit (CPU) needs.

Other Questions
A) Why is the Cuban Missile Crisis considered such a "hot"moment in the Cold War?B) If there was a nuclear war, what would have happened toEarth?Can someone please help me with these 2 questions:/ Can someone help me? Darwin observed how farmers and breeders produced many kinds of farm animals and plants. These plants and animals had traits that were desired by the farmers and breeders. He also noticed how the study of similar body structures and vestigial organs could add to the evidence of evolution. After performing several breeding experiments, he came to certain conclusions and formulated some theories. His theory of evolution and natural selection is the most accepted one.What is the reason behind the acceptance of Darwin's theory?ResponsesA It is based on the practical example of Lamarcks theoryIt is based on the practical example of Lamarcks theoryB It is supported by its harmonizing with other views.It is supported by its harmonizing with other views.C It is based on the ideas of earlier hypothesis and laws.It is based on the ideas of earlier hypothesis and laws.D It is supported by practical evidence and examples.It is supported by practical evidence and examples. During the Cold War, the United States and the Soviet Union -A. Broke all diplomatic tiesB. Clashed over control of the Mediterranean SeaC. Refused to trade with each otherD. Formed competing military alliances can somebody help me with this one question im stuck on?? ;^( A boat heading out to sea starts out at Point AA, at a horizontal distance of 862 feet from a lighthouse/the shore. From that point, the boats crew measures the angle of elevation to the lighthouses beacon-light from that point to be 15^{\circ} . At some later time, the crew measures the angle of elevation from point BB to be 8^{\circ} . Find the distance from point AA to point BB. Round your answer to the nearest tenth of a foot if necessary What is the volume of the following figure?A. 40B. 50 C. 30D. 20 Having a bit of trouble. Would anyone mind helping me. HELLPPPP ASAP PLEASE I NEED HELP WHOEVER GETS FIRST GETS BRAINLIEST AND 100 coinss If there exists a d such that ad = 0, d > 0, and cd > 0, then is the optimal objective value unbounded? How is the logarithmic function y log x defined? who was sons of liberty What piece of information from Passage 1 conflicts with the information from Passage 2? A. The benefits of raising a pet around children is greater than the possibility of catching a disease from a pet. B. Parents who bring a pet into their home should recognize potential risks it can pose to their children. C. Children who grow up raising a pet turn into responsible adults quicker than those who do not help raise a pet. Correct - D. There are better and safer ways that parents can teach children responsibility than through raising a pet. Scientists once thought that life spontaneously arose from nonliving things. It took extensive experimentation and the invention of new technology to confirm the tenets that now make up the cell theory. Now, we don't even question that cells are the basic units of life and only come from preexisting cells. What technology had the biggest impact on the development of the cell theory? (LS.2c)Question 3 options:centrifugeelectrophoresismicroscopetelescope In what way does the final vignette "Mango Says Goodbye Sometimes" suggest thatEsperanza will "come back" for the ones she "left behind"?OEsperanza will leave Mango Street to get her education but will come back tothe barrio to work and live and help others.OOEsperanza will "come back" by writing about her experiences on Mango Street tohelp people stop the cycles of violence, sexism, and poverty.Esperanza will move away but will come back to rescue people by encouragingthem to move away from Mango Street, too.Esperanza will keep in touch with her closest friends, like Sally, Lucy, Rachel, andAlicia. Which was a Southern argument for slavery? Oh god help!!!!! :'D))a. Greek and Roman societies included slavery.b. The Souths industrial economy needed slave labor.c. Modern European empires were built by slaves.d. Slavery taught blacks the values of chivalry. CREATE an epithet for Odysseus based on what you learned about him today. Could somebody please help its due in a couple of minutes, and please no links Evaluate x25 when x=35. One fifth of the animals at the shelter are stray cats. If there are 13 stray cats at the shelter, how many animals are there in total?