please help, CodeHS nitro u7 frq
in java script!
Consider this implementation of the class Card, that stores information related to a cards monetary value, name, condition, and number in a set of collectible cards:


public class Card

{

private double value;

private String name;

private int setNum;

private String condition;


public Card (String Name, String Condition, double Value, int numSet){

name = Name;

condition = Condition;

value = Value;

setNum = numSet;

}


public String getName(){

return name;

}


public String getCondition(){

return condition;

}


public double getValue(){

return value;

}


public int getSetNum(){

return setNum;

}

}


A subsequent class CardCollection has been created with the instance variable ArrayList collection that stores a collection of cards. When instantiated, the CardCollection class takes an ArrayList as a parameter, and copies that ArrayList to the Collection instance variable. In this question, you will write three methods in the CardCollection class.


1. Write a method totalValue() which returns the total value of all cards in a card collection.



2. Write a method checkPerfect() that prints the name of the Cards in a collection that are in "perfect" condition.



3.Write a method orderNumerically() that reorders the ArrayList collection in numerical order by set number. Assume that the set includes 151 cards.

Answers

Answer 1

Here's a possible implementation of the three methods in the CardCollection class:

import java.util.ArrayList;

import java.util.Collections;

public class CardCollection {

   

   private ArrayList<Card> collection;

   

   public CardCollection(ArrayList<Card> cards) {

       collection = new ArrayList<Card>(cards);

   }

   

   public double totalValue() {

       double sum = 0.0;

       for (Card card : collection) {

           sum += card.getValue();

       }

       return sum;

   }

   

   public void checkPerfect() {

       for (Card card : collection) {

           if (card.getCondition().equals("perfect")) {

               System.out.println(card.getName());

           }

       }

   }

   

   public void orderNumerically() {

       Collections.sort(collection, (card1, card2) -> card1.getSetNum() - card2.getSetNum());

   }

}

The totalValue() method calculates the sum of the values of all cards in the collection by iterating over the collection instance variable and adding up the value of each Card object.The checkPerfect() method prints the name of each Card in the collection that has a condition of "perfect". It does this by iterating over the collection and checking the condition of each Card object. If the condition is "perfect", it prints the name of the Card.

To know more about Java visit:

https://brainly.com/question/26754476

#SPJ1


Related Questions

How many heading tags are available for heading and subheading when using html?

Answers

Six heading tags are available for heading and subheading when using html.

There are six levels of heading tags in HTML that can be used to create headings and subheadings. They are known as "h1" tags because they are used for the page's primary heading, which is typically the boldest and most noticeable content. h2>: A subheading that is slightly smaller than the main heading is used. Used for subheadings of subheadings, etc., is h3>. h4>, h5>, and h6> are used for subheadings at higher levels, with h6> being the shortest and least noticeable. The page's main heading is designated with a h1 tag, its subheadings with a h2 tag, and its subheadings with a h3 tag.

Learn more about HTML here:

https://brainly.com/question/17959015

#SPJ4

What is the difference between session reliability and auto client reconnect in Citrix?

Answers

Session reliability keeps sessions active during network disruptions, while auto client reconnect helps users quickly reconnect to their sessions in the event of disconnection.

Session reliability and auto client reconnect are two different features in Citrix that are designed to provide a more seamless user experience in the event of network disruptions or other issues that can cause sessions to disconnect.

Session reliability is a Citrix feature that helps ensure uninterrupted application access in the event of network disruptions. When session reliability is enabled, if a user's network connection is interrupted, the session remains active on the server, allowing the user to reconnect and continue their work without having to log back in or restart their applications. Session reliability works by using a combination of buffering and timeouts to detect and recover from network disruptions.

Auto client reconnect, on the other hand, is a Citrix feature that helps ensure that users can quickly reconnect to their applications if their session is disconnected due to a network issue or other problem. Auto client reconnect works by automatically attempting to reconnect the user's session to the server in the background, without requiring any user intervention. This can help minimize disruption to the user's workflow and reduce the amount of time they need to spend troubleshooting connection issues.

Learn more about troubleshooting here:

https://brainly.com/question/30048504

#SPJ4

Select the correct answer.
Which key is used to indent the first line of a paragraph to the right?
A.
Ctrl
B.
Shift
C.
Tab
D.
Enter
E.
Alt

Answers

Answer:

Which key is used to indent the first line of a paragraph to the right?

C. Tab

Explanation:

You're welcome.

Answer: I think E. Alt….

Explanation: why not pick E…..

I hope this helps^^

What is the goal of destroying CUI?A. Make it unreadableB. Make it indecipherableC. Make it unrecoverableD. All of the above - Correct AnswerE. None of the above

Answers

The goal of destroying CUI is typically to make it unrecoverable, meaning that the information is permanently deleted or destroyed in a way that it cannot be reconstructed or retrieved.

What is CUI?

CUI stands for Controlled Unclassified Information, which refers to unclassified information that is sensitive and requires protection.

The goal of destroying CUI is typically to make it unrecoverable, meaning that the information is permanently deleted, destroyed in a way that it cannot be reconstructed or retrieved once deleted or destroyed.

This is usually done to prevent unauthorized access or disclosure of sensitive information. Therefore, the correct answer is C) Make it unrecoverable.

Controlled Unclassified Information (CUI) is unclassified information that requires safeguarding or dissemination controls and is governed by specific laws, regulations, and policies to protect it from unauthorized access or disclosure.

To know more about CUI, visit: https://brainly.com/question/29626718

#SPJ4

Fill the Blank ?______is the portion of the application that allows you to control and to interact with the program.

Answers

The user interface is the portion of the application that allows you to control and interact with the program.

The user interface (UI) is the part of an application or software program that enables users to interact with the program. It includes graphical elements, such as buttons, menus, and icons, as well as text input fields and other controls. The UI is designed to be intuitive and easy to use, allowing users to navigate the program and access its features and functions.

A well-designed UI can enhance the user experience and make the program more efficient and productive. There are different types of UIs, including graphical user interfaces (GUIs), command-line interfaces (CLIs), and touch-based interfaces, depending on the type of device and the user's needs.

You can learn more about user interface at

https://brainly.com/question/17372400

#SPJ4

smartphones are designed to include hardware for _______. select all that apply.

Answers

Smartphones are designed to include hardware for:

a. GPS navigationc. WiFi connectivity.

What is a Smartphone?

A smartphone is a type of portable computer that combines computational power with mobile phone functionality.

GPS navigation: The GPS (Global Positioning System) hardware found in the majority of smartphones enables the device to pinpoint its exact location by utilizing signals from satellites. This makes a range of location-based services and applications possible, including photo geotagging, navigation, and mapping.

Read more about smartphones here:

https://brainly.com/question/25207559

#SPJ1

Smartphones are designed to include hardware for ______. Select all that apply. a. GPS navigation, b. image sensing, c. WiFi connectivity.

What the difference of OLAP vs OLTP?

Answers

Although the phrases OLTP and OLAP appear to be identical, they relate to different kinds of systems. Online transaction processing (OLTP) is the real-time capture, archiving, and processing of data from transactions.

What distinguishes OLTP from OLAP?

Online analytical processing (OLAP) is the opposite of online transaction processing (OLTP). Systems used for online processing include OLTP and OLAP. The primary distinction between OLTP and OLAP is that the former focuses more on transaction processing while the latter is more concerned with analytical processing.

What are some instances of OLTP and OLAP?

It is used to analyse data from numerous databases at once, such as for market research, budgeting, and other purposes including sales analysis and forecasting.

To know more about processing visit:-

https://brainly.com/question/29487063

#SPJ4

How to fix Microsoft Outlook is requesting data from the server?

Answers

Check internet, restart Outlook, update Outlook, disable add-ins, recreate email account, repair data file, or seek further assistance from Microsoft support or your email provider.

If you are experiencing the "Microsoft Outlook is requesting data from the server" error message, there are several potential solutions you can try:

Check your internet connection: Ensure that you have a stable internet connection and that there are no disruptions or outages in your network.Restart Outlook: Close and reopen Outlook to see if the error message goes away.Update Outlook: Make sure that your Outlook is up-to-date with the latest version and all the available updates.Disable add-ins: If you have any Outlook add-ins installed, try disabling them to see if they are causing the issue. To do this, click on File > Options > Add-ins, and then select "COM Add-ins" or "Add-in Options" and uncheck any add-ins you have installed.Delete and recreate your email account: Remove the problematic email account from Outlook and add it back again. To do this, go to File > Account Settings > Account Settings > Email and then remove the account. After that, add it back by clicking on the "New" button.Repair your Outlook data file: Sometimes, issues with Outlook data files can cause the "Microsoft Outlook is requesting data from the server" error. You can try repairing your data file by going to File > Account Settings > Account Settings > Data Files > Add or Remove, and then selecting "Outlook Data File" and clicking on the "Repair" button.

If none of these solutions work, you may want to contact Microsoft support or your email provider for further assistance.

Learn more about Outlook here:

https://brainly.com/question/29550355

#SPJ4

what is the assignment grade calculator?

Answers

Based on the technological functions, and the context of the question, the assignment grade calculator is an online tool that assists teachers in quickly grading student homework and projects

What is the Assignment Grade Calculator

The Assignment Grade Calculator is generally known as an online software application that is designed to enable teachers rapidly grade student assignments and projects.

Essentially, the assignment grade calculator allows teachers to input the maximum points possible for each assignment, the student's score, and the grading scale they are using.

Ultimately, the calculator then computes the grade based on the entered information.

The assignment grade calculator can also calculate a weighted average grade. It accepts both numerical as well as letter grades.

Hence, in this case, it is concluded that the Assignment Grade Calculator is very useful for teachers and examiners.

Learn more about the Grade Calculator here: https://brainly.com/question/29586317

#SPJ1

where we can find vex code vr

Answers

Go to vr.vex.com to start VEXcode VR.

Describe VEX VR code.

With the help of the user-friendly platform VEXcode VR, you can programme a virtual robot using either a text-based Python interface or a block-based coding environment powered by Scratch Blocks. The same programming environment used to create the VEX 123, GO, IQ, and V5 robots serves as the foundation for VR.

How do I get VEXcode on my robot?

Using a micro USB cable, connect the V5 Robot Brain to the computer and turn it on. To download the project to the V5 Robot Brain, click the Download icon next to the Device Details icon. NOTE: The Build icon changes to when the V5 Robot Brain is linked to the computer.

To know more about start visit:-

https://brainly.com/question/26181500

#SPJ4

______provides the instructions that tell a computer what to do. A) SoftwareB) HardwareC) SpamD) Data mining

Answers

Note that Software provides the instructions that tell a computer what to do. (Option A)

What is Software and why is it important?

Software refers to the set of instructions, data, and programs that run on a computer or other electronic devices.

It enables the hardware to perform specific tasks, such as running applications, managing memory, and processing data. Without software, a computer would not be able to perform any useful functions. In short, software is the "brain" of a computer that makes it useful and allows it to perform various tasks.

Software is important because it allows people to interact with computers, automate repetitive processes, and solve complex problems, making it an essential component of modern life and technology.

Learn more about Software:

https://brainly.com/question/1022352

#SPJ1

What is the difference between named tuple and tuple in Python?

Answers

A tuple is an immutable data structure in Python that contains a fixed number of elements. Tuples can contain any type of data, including strings, numbers, and other objects.

What is strings ?

Strings are sequences of characters, such as letters, numbers, and symbols, that are usually stored in text files and manipulated using programming languages. Strings are an essential data type to store and manipulate in programming, and can be used to represent data such as text, numbers, dates, and even binary data such as images and sounds. Strings are often used to store user input such as forms, search queries, and log files. Strings can be concatenated, or joined together, to create larger strings or to form new strings with specific values.

A named tuple is an extension of the tuple object that allows you to assign custom labels to each element in the tuple. This is useful when you want to access elements in the tuple by name instead of by their index.

To learn more about strings
https://brainly.com/question/13088993
#SPJ1

which sql statement is used to update data in a database?

Answers

In SQL, the UPDATE statement is used to change or update data in a database. Here is an illustration of how it might be applied: UPDATE table name SET column1 = value1, column2 = value2,... WHERE some column = some value

What does the SQL command update mean?

The data of one or more rows in a table are updated by a SQL UPDATE statement. A subset of the rows may be chosen using a criteria, or all the rows may be updated.

Which SQL statement is used to add or modify data in a database?

Columns in an existing table can be added, deleted, or modified using the ALTER TABLE statement. A table's existing constraints can also be added to or removed using the ALTER TABLE statement.

To know more about database visit:-

https://brainly.com/question/3804672

#SPJ4

A SaaS provider such as Oracle or SAP manages service levels and availability. This is advantageous because _____.
a.it allows SaaS customers to increase the number of users without expanding their communications capacity
b.it increases the security of financial transactions handled through SaaS applications
c.it typically makes SaaS customers with many users eligible for volume discounts
d.it allows SaaS customers to control if and when upgrades and new releases are installed

Answers

A SaaS provider such as Oracle or SAP manages service levels and availability. This is advantageous because  a.it allows SaaS customers to increase the number of users without expanding their communications capacity.

An individual or business that purchases goods or services from another company is known as a customer. Customers are crucial to businesses because they generate income; without them, they would cease to exist. All organizations compete with one another to draw clients, whether through aggressive product promotion, price reductions to increase clientele, or the creation of distinctive goods and experiences that clients adore.

Here you can learn more about customer in the link brainly.com/question/13472502

#SPJ4

how many labors did hercules complete in the greek mythology?

Answers

Hercules completed twelve labors in Greek mythology. These included slaying the function nine-headed Hydra, capturing the man-eating Erymanthian Boar, stealing the belt of Hippolyta, and capturing Cerberus.

In Greek mythology, Hercules is known for completing twelve labors. The twelve labors were given to him as punishment for killing his family in a fit of rage. The labors included slaying the nine-headed Hydra, capturing the man-eating Erymanthian Boar, stealing the belt of Hippolyta, and capturing Cerberus. He also had to clean the Augean stables, capture the Cretan Bull, and rescue Hesione from a sea monster. Other tasks included stealing the golden apples from the Garden of the Hesperides, capturing the Ceryneian Hind, and bringing the three-headed dog, Geryon, to Eurystheus. He also had to bring the oxen of Geryon, steal the cattle of the giant Diomedes, and bring the four horses of Diomedes to Eurystheus. Hercules completed all of these labors with great strength and skill, proving himself as one of the greatest heroes of Greek mythology.

Learn more about functions here-

brainly.com/question/28939774

#SPJ4

Write a program that converts a string into 'Pig Latin". To convert a word to pig latin, you remove the first letter of that word then append it to the end of the word. Then you add 'ay' to it. An example is down below:
English: I SLEPT MOST OF THE NIGHT
Pig Latin: IAY LEPTSAY OSTMAY FOAY HETAY IGHTNAY

Answers

Answer:

def pig_latin(text):

words = text.split()

pig_latin_words = []

for word in words:

first_letter = word[0]

rest_of_word = word[1:]

pig_latin_word = rest_of_word + first_letter + 'ay'

pig_latin_words.append(pig_latin_word)

return ' '.join(pig_latin_words)

pig_latin('I SLEPT MOST OF THE NIGHT') # 'Iay Leptsay Ostmay ofay hetay ightnay'

Select all that apply
Which of these are tips for making sure your emails are answered in a timely manner?
a. Be sure to add an attachment.
b. Use clear, concise language.
c. Be short and to the point.
d. Have numbered questions.

Answers

Have Numbered questions is the Correct answer. Numbering questions clearly organizes them and keeps them from being missed, misunderstood, or combined with each other.

Email, or electronic mail, is a communication technique that sends messages via electronic devices across computer networks. The term "email" can apply to both the method of delivery and the specific messages that are sent and received.

Since Ray Tomlinson, a programmer, invented a mechanism to send messages between computers on the Advanced Research Projects Agency Network in the 1970s, email has existed in some form (ARPANET). With the introduction of email client software and web browsers, which allow users to send and receive messages via web-based email clients, modern versions of email have been widely accessible to the general public .

Here you can learn more about email in the link brainly.com/question/14666241

#SPJ4

what is the difference between univariate data and bivariateâ data?

Answers

Univariate facts summarize solely one variable at a time. Bivariate records examine two variables. Multivariate information evaluate greater than two variables.

What is the distinction between univariate and bivariate examples?

When you behavior a learn about that appears at a single variable, that learn about involves univariate data. For example, you would possibly find out about a team of university students to find out their average SAT rankings or you may learn about a crew of diabetic patients to locate their weights. Bivariate facts is when you are analyzing two variables.

What is the difference between univariate statistics and bivariate data?

Univariate data measure the fee of a single variable for every man or woman in the study. Bivariate facts measure values of two variables for every individual.

Learn  more about bivariateâ data here;

https://brainly.com/question/23254769

#SPJ4

what is apex packs calculator

Answers

An Apex Packs Calculator estimates the number of Apex Packs needed to open to reach a specific number of desired items in Apex Legends, taking into account the game's loot box system.

An Apex Packs Calculator is a tool that estimates the number of Apex Packs you need to open to reach a certain number of desired items, such as legendary items, in the popular video game, Apex Legends. It takes into account the probability of receiving different rarity items from the packs, based on the game's loot box system. By using the calculator, players can plan their in-game purchases more effectively and avoid spending unnecessary money or resources.

A free-to-play battle royale game called Apex Legends was created by Respawn Entertainment and released by Electronic Arts. In the game, players can earn Apex Packs through gameplay or purchase them with real money. Each pack contains a random assortment of cosmetic items, such as character skins, banners, and weapon skins, with a chance to receive rarer items of higher value. The Apex Packs Calculator helps players estimate the number of packs they need to open to increase their chances of getting the desired items, and it also provides insights into the game's loot box mechanics.

Learn more about Apex Legends here:

https://brainly.com/question/14809419

#SPJ4

where is champions real estate school?

Answers

Champions School of Real Estate is a top real estate education provider in Texas, offering courses for professionals with flexible schedules and accreditation from multiple organizations.

Champions School of Real Estate is a real estate school that offers classes in various cities across Texas, United States. They have several campuses located in major cities such as Houston, Austin, Dallas, San Antonio, Fort Worth, and Online. For more information on specific locations, schedules, and courses offered, you can visit their official website at www.championsschool.com.

Champions School of Real Estate is a leading real estate education provider in Texas that offers a wide range of courses for real estate agents, brokers, appraisers, inspectors, and other real estate professionals. They offer both classroom-based and online courses, and their curriculum covers topics such as real estate principles, finance, contracts, appraisal, inspection, and more.

Champions School of Real Estate has been in operation since 1983 and has trained over 350,000 real estate professionals. They are accredited by various organizations, including the Texas Real Estate Commission (TREC), the Texas Appraiser Licensing and Certification Board (TALCB), and the Texas Association of Realtors (TAR).

Champions School of Real Estate has a strong reputation for high-quality instruction, experienced instructors, and excellent student support services. They offer flexible schedules, competitive pricing, and a variety of payment options to make it easier for students to achieve their real estate education goals.

Learn more about Real Estate here:

https://brainly.com/question/17150470

#SPJ4

python formats all floating-point numbers to two decimal places when outputting with the print statement.

Answers

In Python, if the print command is false and output is desired, all floating-point integers are formatted to two decimal places.

What is Python's primary purpose?

Python is frequently employed to create websites and applications, automate time-consuming tasks, and analyze and show data. Since Python is fairly easy to learn, many non-programmers, such as accountants and researchers, have utilized it for a range of mundane tasks, including managing funds.

Who in the actual world utilizes Python?

IoT, application development, game development, web design, data analytics, and machine learning and artificial intelligence are some of the key sectors. Python is widely utilized in a variety of sectors, including finance, healthcare, finance, and aerospace.

To know more about Python visit:

https://brainly.com/question/30427047

#SPJ4

which sql statement is used to delete data from a database?

Answers

In SQL, deleting data from a database requires the use of the DELETE statement. Here is an illustration of how it can be applied: WHERE some column = some value, DELETE FROM table name;

How may data be REMOVED from a database?

removing information or log files from a database Expand Databases, select the database from which to remove the file from the menu that appears, and then select Properties. Choosing the Files page. Select the file you want to remove from the database files grid, and then click Remove. Select OK.

How does SQL delete a function?

You can delete a function by selecting Delete with the right mouse click. Select OK in the Delete Object dialogue box.

To know more about database visit:-

https://brainly.com/question/3804672

#SPJ4

Which type of switch connects all devices in a rack to the rest of the network?
choose the answer: a. ToR switch b. Spine switch c. EoR switch d. Core switch

Answers

Top of rack architecture usually locations a network fiber switch in each and every rack to connect without problems with every different device in the rack. The in-rack community switch, in turn, is connected to aggregation switches, most often by means of fiber optic cable.

Which kind of swap connects all devices?

A PoE swap distributes power over the community to different devices. This skill any system on the network, from PCs to IP cameras and smart lighting systems, can characteristic without the want to be close to an AC get right of entry to point or router, because the PoE swap sends each facts and power to the connected devices.

What are the four types of switches?

There are four major sorts of

single pole single throw, single pole double throw, double pole single throw, or double pole double throw.

Characteristics of a Switch

Pole and throw are the two most essential characteristics of a switch. ...

Single and Double are some preferred numbers of throws and poles.

Learn more about switch connects all here;

https://brainly.com/question/14683597

#SPJ4

Is the moto g pure going to become a outdated phone in 2023? or will it get more support until a later date? i have one and its really trashy and slow..?

Answers

Answer: it's not like this phone is built to last. The Moto G Pure ships with Android 11 and is only guaranteed one Android update. So Yes its outdated

Explanation:

a software developer wants to create an application that will work on windows and apple ios operating systems. what can the developer do to make this task easier?

Answers

Utilize the operating system-specific APIs. Python is a popular general-purpose programming language used to develop mobile and web applications.

What does Python, a popular general-purpose programming language, do?

Python is a popular computer programming language used to create software and websites, automate processes, and analyze data. Python is a general-purpose language, which means it may be used to make many various types of applications and isn't tailored for any particular issues.

What is the term used to describe an identifier that can have various values throughout a program?

A variable is a piece of data whose value may change while the program is running. So, just as its name suggests, the value might change.

To know more about operating systems visit:

https://brainly.com/question/14413422

#SPJ4

in routine problem solving, the number of external information sources used is typically which of these?

Answers

The number of external information sources used is typically which of these is: none.

Consumer engagement in the external information search process is influenced by things like price and the significance of the product. The desire for cognition is a personality trait that connects the urge to promptly act with the need to examine alternatives. In order to understand consumer behavior, it is critical to comprehend motivation, perception, attitudes, and beliefs in addition to lifestyle.

Learn more about external information: https://brainly.com/question/14546386

#SPJ4

What is the difference between managed and unmanaged switch?

Answers

Unmanaged switches are cheaper in terms of cost than matched switches but lack some of the advanced features that managed ones have.

A managed switch provides better control of networks and also on the data frames that are moving through them. The Unmanaged switches let you connect devices to communicate with one another as if other devices were in their most basic form.

In comparison to managed ones, Unmanaged switches have very basic security. They are secured by ensuring you have no vulnerabilities from system to system, which add to the accessories.

Learn more about switches at:

brainly.com/question/30461843

#SPJ4

how to make a word document horizontal

Answers

Microsoft Word (MS Word), to make a word document horizontal we can do it using the Orientation option.

Follow the following instruction in MS

You need to open Microsoft Word (MS Word) on your device.

Once, the document is ready to use, proceed to the "Layout" tab present on the top-most menu.

Now, Click PAGE LAYOUT i.e., a tab, and then go to the Page Setup dialog box launcher.

In the Page Setup box, under Orientation, click Portrait or Landscape.

A user can even customize the formatting in Microsoft Word so that a page can have portrait and landscape pages in the same document.

Learn more about Microsoft Word at:

https://brainly.com/question/13834158

#SPJ4

What is the definition of poignant

Answers

Poignant is the word that is often used to make sure that the person is feeling sad or regarding something.

What is a  poignant?

Starting to move a poignant sight, scene, recollection, etc. includes getting a powerful emotional impact, often in a manner that helps make you feel melancholy. Her face served as a moving reminder of how quickly time had passed.

=

Pungent and poignant share a common Latin root, pungent, which means "to pri- ck." Although poignant alludes to an item that pri- cks your heart, particularly in a gloomy way, pungent pertains to an item that makes the person aware of one's sensation of smell.

Learn more about poignant, here:

https://brainly.com/question/2171443

#SPJ1

a device that sends out sound waves to detect objects is called___

Answers

Sound waves are used by sonar to "see" in the water. Sonar is largely used by NOAA scientists to create nautical charts and find navigational hazards beneath the surface.

What can recognize sound waves?

Ears. Our ears allow us to hear sounds. An ear's eardrum is attached to three tiny bones inside the ear. The eardrum vibrates as a result of air vibrations, and these vibrations are transmitted to the spiral-shaped cochlea through three little bones known as ossicles.

What equipment utilizes sound waves

The acronym for sonar is SOund NAvigation Ranging. Sonar is used for navigation, weather prediction, and the tracking of missiles, ships, aircraft, and other moving objects. In order to pinpoint an object's location, sonar systems bounce sound waves off the target. A receiver and an ultrasonic transmitter make up a sonar unit.

To know more about Sound waves visit:-

https://brainly.com/question/29071528

#SPJ4

Other Questions
Which of the following acronyms is used by the Food and Drug Administration (FDA) to mean that, given the currently available information, people who are informed and qualified would agree that an ingredient should be considered harmless?A) ANDA ("abbreviated new drug application")B) GRAHL ("generally recognized as honestly labeled")C) BLA ("therapeutic biologics applications")D) GRAS ("generally recognized as safe") Discuss the costs and benefits of overdraft protection and lines of credit.When you sign up for overdraft protection, checks, and other bank features, debit transactions clear even if there is not enough money in the account. The bank may charge large fees for overdraft protection. Instead of paying a fee, some people choose to have a line of credit tied to their checking account.Kevin is opening a new checking account and is trying to decide if he should sign up for overdraft protection, a line of credit, or neither. Research both options and then discuss the advantages and disadvantages of each option. Jason spent $15.75 on art supplies.This is $3.90 more than Andreas spent on art supplies.Which equations represent this situation, including the amount that Andreas spent on art supplies?1. a +3.90 15.75 a=19.652. 3.90 + a 15.75 a = 11.853. 3.90 + a = 15.75 a = 11.854. a 3.90 15.75 a = 19.65 prepare a job cost sheet for job 9, which includes costs for direct materials, direct labor, overhead, and total cost Write a quadratic equation with a vertical shrink of 1/3, shifts left 2 and down 5. How long does an initial fraud alert stay on a consumer report add the quotient of 0.4 and 0.7 to the quotient of 1.4 and 0.4 Streamline Luggage Company markets it roll-aboard suitcases to international executives and business people that travel regularly. This is an example of segmenting based on _____. Firm Market Share (%)A 32B25C21D15E 4F3Refer to the data. Suppose that firms in this industry split up such that there were 25 firms, each with a 4 percent market share. The four-firm concentration ratio and the Herfindahl index respectively would beMultiple Choicea. 16 percent and 400.b. 100 percent and 10,000.c. 16 percent and 16.d. 400 percent and 64. + Language and communication both Liberate and Constrain- What figure of speech is contained in this expression? What is the golden ratio of Fibonacci? which material, when dry, tends to form the greatest angle of repose?A. Dry sandB. rough, angular stones C. smooth, well-rounded stones D. saturated sand 1 kg block and a 2 kg block are placed next to each other on a frictionless horizontal table. A horizontal force of 6 N is applied orthogonally to the side 1 kg block. Find the magnitude of the force acting on the 2 kg block?Group of answer choices4 N1 N3 N2 N while appearing on saturday night live, which singer tore up a photo of the pope? the velocity of a vehicle is given in fig. \( 1.8 \). a. determine the equation of \( v(t) \) for i. \( 0 \leq t \leq 3 \) s ii. \( 3 What is the difference between exocrine vs endocrine glands? Which choice shows 25.367 written in expanded form?(2 1) + (5 1) + (3 0.1) + (6 0.001) + (7 0.001)(2 10) + (5 1) + (3 0.1) + (6 0.001) + (7 0.001)(2 10) + (5 1) + (3 0.1) + (6 0.01) + (7 0.001)(2 10) + (5 1) + (6 0.01) + (3 0.001) + (7 0.001) What is the name of the white key directly to the left of the set of three black keys? uiz 1 Active 2 3 5 O He extended the deadline for them to leave. O He ordered the Army to remove them by force. O He ordered negotiation of a new treaty. O He canceled the plans for relocation. Mark this and return In 1838, there were Cherokee who defended and refused to leave their land. What was President Van Buren's response to this? 10 O Search LD Save and Exit TIME REMAINING 46:56 Next Submit If Earth were 9.5 times farther away from the Sun than it is now, how many times weaker would the gravitational force between the Sun and Earth be?