write a summary 6-7 sentences on how cell phones work (include the EM spectrum and radio waves in your answer.

Answers

Answer 1

When a cell phone is used, it emits an electromagnetic radio wave known as a radio frequency, which is picked up by the antenna of the nearest cell tower.

What are radio waves?

Radio waves are the longest wavelengths in the electromagnetic spectrum and are a type of electromagnetic radiation.

Using the electrical signal, a microchip in the phone modulates (or varies) a radio wave.

Therefore, the radio wave travels through the air to a nearby cell tower, which sends your voice to the person you're calling, and the process is reversed so that the person on the other end can hear you.

To learn more about radio waves, visit here:

https://brainly.com/question/827165

#SPJ1


Related Questions

the statement in the body of a while loop acts as a decision maker. true or false

Answers

Answer:

FALSE FALSE FALSE

Explanation:

If your current path is /home/cindy/Pictures/Canada, and you want to change to the Alaska directory, which of the following commands can you use?
cd ~/Pictures/Alaska
cd ../Alaska
cd /Pictures/Alaska
cd /home/cindy/Pictures/Alaska

Answers

The command you can use to change to the Alaska directory is cd /home/cindy/Pictures/Alaska.

The cd command stands for "change directory", and is used to navigate through folders and directories. The ~ is shorthand for the home directory, in this case /home/cindy, and the .. is shorthand for the parent directory, which in this case would be the Pictures directory. Therefore, the only command that will take you directly to the Alaska directory is cd /home/cindy/Pictures/Alaska.

The syntax used is cd &#60;destination&#62;, where <destination> can be a relative or absolute path. For example, cd .. will move up one directory, and cd /home/user/Documents will move to the Documents directory.

Learn more about CD comand:

https://brainly.com/question/29023424

#SPJ4

Are there any incremented values from one loop to the next?

What variables may be used to track each loop in the program?

Answers

Answer:

You can place any expression you'd like in the final expression of the for loop, but it is typically used to update the counter variable.

counter variable is used throughout those parts. That variable keeps track of the current repetition, and is typically named i . The initialization part initializes the counter variable to a starting value.

Explanation:

Security managers are accountable for the day-to-day operation of the information security program. T/F?

Answers

The answer of this statement "Security managers are accountable for the day-to-day operation of the information security program" is True.

What is a Security Program?

An group's security policies, procedures, tools, and controls are all part of its security program. In essence, your security program is the comprehensive, multifaceted security strategy & governance that safeguards the sensitive information and capabilities of your firm.

Why are security programs important?

The cyber security policies, practices, standards, and recommendations of your company are provided in a structured security program. For data to be actively protected while remaining compliant with best practices, legal regulations, and consumer standards, security procedures are essential.

To know more about security program visit :

https://brainly.com/question/30168673

#SPJ4

You assign each anchor its own anchor name, using the ____attribute.
a. Name
b. anchor
c. link
d. identify

Answers

Answer: The correct answer is "a. Name". In HTML, you can use the "name" attribute to assign a unique name to an anchor element, which can then be used to create a hyperlink to that specific location on the page.

Explanation: For example:

<a name="top">Top of the Page</a>

This anchor element can then be linked to using the following syntax:

<a href="#top">Go to the top of the page</a>

The "name" attribute is used in combination with the "href" attribute to create a hyperlink. The "href" attribute specifies the target of the link, and the "name" attribute specifies the name of the anchor to which the link should point.

In Bash which of the following commands can you use to view the contents of a document?
open
cat
less
dog

Answers

You can view a document's contents in Bash by using the cat and less commands.

In Linux, how do I view a directory's contents?

To view the contents of a directory, use the ls command. The ls command prints the name of each provided File, the contents of each specified Directory, and any additional information you request with the flags to standard output.

How do you view the contents of a file using the Windows command prompt?

Scripts for showing file contents (pg, more, page, and cat commands) You can change the speed at which your files are shown and inspect the contents of a file with the pg, more, and page commands.

To know more about Bash visit :-

https://brainly.com/question/30027290

#SPJ4

You answer a call from a number of users who cannot access the mail server. Which utility would you use to quickly see if the sendmail service is running?

Answers

If you want to check whether the sendmail service is active rapidly, use the ps program.

Which command shows the most specific information about each active process?

Processes are active at all times that the system is active. The ps command allows you to see a list of currently active processes as well as their status and other details. You can define which processes to list using a number of flags in the ps command.

What does a process with no nice command execute as by default?

The default increment of the nice command is 10, so if you do not supply an increment value, that is what happens. If you want to run a command with a higher priority, you must be a root user. A process's pleasant value, or priority, is frequently referred to.

To know more about ps program visit :-

https://brainly.com/question/15057124

#SPJ4

Digital recorder, internet, discussion boards, journal, cell phone, and video recorder are all tools used by

crowdsourcer


backpack journalist


public relation


ombudsman

Answers

Digital recorders, the internet, discussion boards, journals, cell phones, and video recorders are all tools used by crowdsourcers. Thus, the correct option for this question is A.

What do you mean by Crowdsourcing?

Crowdsourcing may be characterized as a type of influencing people through involves seeking knowledge, goods, or services from a large body of people.

These people submit their ideas in response to online requests made either through social media, smartphone apps, or dedicated crowdsourcing platforms. The types of crowdsourcing may significantly include Wisdom of the crowd, crowd creation, crowdfunding, and voting.

Therefore, digital recorders, the internet, discussion boards, journals, cell phones, and video recorders are all tools used by crowdsourcers. Thus, the correct option for this question is A.

To learn more about Crowdsources, refer to the link:

https://brainly.com/question/11356413

#SPJ1

Which of the following correctly initializes an array arr to contain four elements each with value 0 ? int[] arr = (, 0, 0, 0); 11 int[] arr = new int[4]; III int[] arr = new int[4]: for (int i = 0; i < arr.length; i++) arr[i] = 0 (A) I only (B) III only (C) I and III only (D) II and Ill only (E) I, II, and III 2 Consider the following code segment. int total 3; inte) values - {8. 6. 4, -2); total + values[totall: total + values[total]; System.out.println(total); What is printed as a result of executing the code segment? (A) 0 (B) 1 (C) 3 (D) 7 (E) 16 3 Consider the following code segment. int[] arr=(-6,2,-5,3,8,10,-12,9); for (int k=0: k arr.length; k++) if (arr[k] > O&G arr[k]2= 0) System.out.print (arx[k] + " "); What will be printed as a result of executing the code segment? (A) 2389 (B) -6 2 8 10-12 (C) 28 10-12 (D) 2810 (E) 23 8 10 9

Answers

The following correctly initializes an array to contain four elements each each with value 0 is I, II and III. 2) Output is 7 and 3) code segment will be printed as a result will be 2, 8, 10, optionD is correct.

The array can be initialized as

1-  An array can also be initialized during declaration. ( as in I )

2- In Initializing an array without assigning values, the default value of each element is zero. ( as in II )

3- An array can be initialized by setting each value of an element to zero by looping the length of the array. ( as in III)

I. It creates an array of 4 elements. The default value of int in java is Zero.

II. It also creates an array of 4 elements and manually initialized all the values to 0.

III. It creates an array of 4 elements. and uses a loop to manually initialized all the values to 0.

2) Output is 7 i.e Option(D).

total =total+values[total]; => total = 3+values[3];

=> total=3+(-2) => total=3-2 =>total=1.

total =total+values[total] =>total =1+values[1]

=>total= 1+6 =>total =7.

3)Option(D) i.e 2 8 10.

In If condition it is checking whether the element in the array is Positive and also it is divided by 2 with 0 reminder.

So from array positive numbers are 2,3,8,10,9. from these positive numbers Number dived by 2 or Multiples of is 2,8,10.

So output is 2,8,10.

To learn more about code segment

https://brainly.com/question/20063766

#SPJ4

Add two more statements to main() to test inputs 3 and -1. Use print statements similar to the existing one (don't use assert). 1 import java.util.Scanner; 3 public class UnitTesting // Method returns origNum cubed public int cubeNum(int origNum) { return origNum origNum origNum; public static void main (String [] args) { Unit Testing cubeTester - new Unit Testing(); System.out.println("Testing started"); System.out.println("2, expecting
8, got: " + cubeTester.cubeNum(2)); /* Your solution goes here */ System.out.println("Testing completed"); 18 1911

Answers

User input is obtained using the Scanner class, which may be found in the java.util package. Create an object of the type and use any of them to access the Scanner class.

The function of the import utility Scanner

A class called Scanner is included in the Java. util package. For any primitive datatype, it is used to receive user input (int, float, string, and so on).

What purposes does Java Util Scanner serve?

A component of the java. util package is the Java Scanner class. It was first made available with Java 1.5. Primitive data types like int, double, or the default String are parsed from user input using the scanner.

To know more about Scanner class visit :-

https://brainly.com/question/29640971

#SPJ4

A DHCP enabled computer on the network has been unplugged from the network for a week. In the meantime, several other computers were added to the network. When plugging the computer back into the network, the computer is unable to reach network resources. Which of the following is the most likely cause?

Answers

A DHCP server receives a request for an IP address from a device when it wants to connect to a network that uses the protocol.

What is DHCP and how does it work?

Assigning IP addresses to stationary and mobile hosts that are wired or wirelessly linked is automated using DHCP, a covert process.

A DHCP server receives a request for an IP address from a device when it wants to connect to a network that uses the protocol.

When a device requests help, the server responds by sending an IP address to it. It then keeps track of how the address is being used and returns it after a set amount of time or when the device shuts down.

After that, the IP address is returned to the pool of addresses that the DHCP server manages so that it can be allocated to a different device when it requests network connectivity.

While assigning IP addresses is the protocol's primary role, DHCP also assigns a number of other networking-related settings, such as subnet mask, default gateway, and domain name server (DNS). BOOTP (bootstrap protocol), a predecessor to DHCP that can only be used on IPv4 networks, has been replaced by an IEEE standard called DHCP.

To Learn More About DHCP servers Refer To:

brainly.com/question/29763949

#SPJ4

Fred has saved a large number of Word documents on his computer running Windows 7 Home Edition. He installs Windows 10 on his computer, using the same partition on which Windows 7 was installed. He does not reformat this partition. What happens to these documents

Answers

These documents are placed in the Windows.old\Documents and Settings\Fred\My Documents folder.

Which Windows 10 installations demand that you submit a product key before they may be installed?

You will require a product key to do a clean install of Windows 10 on a computer when you are utilizing bootable installation media that has never been upgraded to the operating system and activated. Windows 10, as well as a compatible edition of Windows 7, Windows 8, or Windows 9, can be used to enter a product key. 1

Which approach from the list below is used to install Windows 10 completely from scratch on a new computer?

Migration via wiping and loading The user data and settings must be backed up to an external place before you may install Windows 10 on an already-existing PC using this approach. The user data and settings need to be restored after that.

To know more about Windows visit

brainly.com/question/13502522

#SPJ4

Which of the following conditions exists when data are isolated in separated information systems?
A) encapsulation
B) information overload
C) data segregation
D) information silo
E) data branching

Answers

When data are isolated in various information systems, information silo circumstances exist.

Which of the following information silos issues are they?

Duplication of effort and redundant job positions are just two issues that might arise from an information silo. Silos can result in the creation of divergent systems, which can raise costs and reduce synergy.

Which of the following data issues is specifically brought on by siloed data?

Data silos, despite appearing innocent, restrict departments from cooperating and exchanging information. Due to differences in the data that may cross silos, data quality typically declines. When data is segmented, leaders find it difficult to have a thorough understanding of the information gathered by the firm.

To know more about data silos visit:-

https://brainly.com/question/24268846

#SPJ4

26. Universal Containers (UC) has a queue that is used for managing tasks that need to be worked by the UC customer support team. The same team will now be working some of UC's Cases. Which two options should the administrator use to help the support team

Answers

The two options should the administrator use to help the support team are (I) Configure a flow to assign the cases to the queue and (II) Use assignment rules to set the queue as the owner of the case.

A universal container is what?

International distributor of containers, Universal Containers is expanding quickly. The business manufactures all different types of containers, including small postal containers, special equipment packing, and huge cargo shipping containers.

What does Salesforce mean by a universal container?

As a rapidly expanding international supplier of container solutions, Universal Containers creates various scenarios by getting users to consider issues from a business viewpoint and by offering advice on the types of industries and scenarios we will encounter and how to handle them.

To know more about universal container visit:

https://brainly.com/question/30143272

#SPJ4

Which of the following is a good practice when you are installing a new device?
A) reinitialize the kernel
B) check for a new driver
C) recompile the installed driver
D) always use the driver supplied by the OS

Answers

Check for a new driver Correct option no.(B), as the device Drivers enable a computer's connection to hardware components such as a keyboard, mouse, monitor, and others.

The proper device driver installation on your computer is crucial, so why is that?

The function of device drivers, To connect and communicate with particular devices, a computer needs device drivers. They specify the communication channels and processes the computer's operating system and applications can use to request services from the device.

What is the first thing you must verify before installing software?

Make that your computer complies with the application, game, or utility's system requirements before you attempt to install it. How to install a program is typically described in the manual or a README file.

To know more about hardware components visit :-

https://brainly.com/question/30214389

#SPJ4

origin encountered an issue loading this page. please try reloading it – if that doesn’t work, restart the client or try again later. I have reinstalled it multiple times, but still have same issue. Any solution?

Answers

Origin encountered an issue loading this page. please try reloading it – if that doesn’t work, restart the client or try again later. I have reinstalled it multiple times, but still have same issue. The solution is accessing the Origin data folder and deleting the cached files there is one of the most effective fixes for the "Origin Encountered an Issue Loading this Page" error.

Cache data is information that is kept on your computer or device after visiting a website. Developers use cached data to improve your online experience.

Most users anticipate that a page will load in two to three seconds. If consumers have to wait any longer, they might decide to click on a rival. They might never visit your website again.

To hasten site loading, cached data is used. To load all of the text, photos, and forms on the site, your device won't have to have a protracted discussion with a server. You'll save some of those bits and bytes on your device.

Learn more about cached here:

brainly.com/question/28589364

#SPJ4

Which of the following statements is true of content delivery networks (CDNs)?
A) They reduce access costs by delivering data faster.
B) They distribute data on different servers without any data replication.
C) They use geographic proximity as the factor to decide which server should deliver a requested content.
D) They use predetermined servers to deliver content to each location irrespective of traffic changes.

Answers

Answer:

A

Explanation:

CDNs (content delivery network) are known for their reliable delivery speed. CDNs can still replicate data and not take proximity nor specific server states into account. Therefore, it is option A.

Which of the following is the same as t2 when examining the difference between two groups? a. F b. T c. Cohen's d d. F2. a. F.

Answers

a. F  is the same as t2 when examining the difference between two groups.

What similarities and differences do ANOVA share with a test?

ANOVA is used to compare the means among three or more groups, while the Student's t test is used to compare the means between two groups. First receives a shared P value in an ANOVA. The ANOVA test results with a significant P value for at least one pair where the mean difference was statistically significant.

The F-test is the ratio of the mean squared error between these two groups, and ANOVA separates the within-group variance from the between-group variance.

To know more about ANOVA share, refer;

https://brainly.com/question/14099492

#SPJ4

the module definition comprises the module header and the module ________.

Answers

The module definition comprises the module header and the module body.

What constitutes a module definition?

A self-contained item or unit that can be connected to other items of its kind to create a larger system. Examples include an assembly of electrical parts and related wiring or a section of computer software.

Can there be more than one variable with the same name in a module?

Due to the fact that they are in the same scope, a module may include two variables with the same name. There must be compatibility between the data types of the arguments used in a module call and the parameters stated in the module header.

                       The program as a whole and each statement inside are both within the scope of the parameter variables.

Learn more about module

brainly.com/question/14527306

#SPJ4

What would a developer do to update a picklist field on related Opportunity records when a modification to the associated Account record is detected

Answers

Answer:

Create a process with Process Builder.

Explanation:

What process helps a developer to prevent future issues and helps to give the client solutions?

Answers

The process which helps a web developer to prevent mistakes while helping provide solutions to a customer is proper communication to the customer.

Who is a web developer?

Websites are created and maintained by web developers. They are also in charge of the site's technical components, such as performance and capacity, which are measures of a website's speed and capacity to handle the traffic.

Web developers may also contribute material for the site. You will face several problems as a web developer. Some will be simple to repair, while others will be quite difficult."

Therefore, proper communication with the customer is the procedure that enables a web developer to avoid mistakes while assisting in the provision of solutions to customers.

To learn more about web development, refer to the link:

brainly.com/question/9297287

#SPJ1

The beam ab is pin supported at a and supported by cable bc. Determine the resultant internal loads

Answers

A beam or frame is subjected to transverse loadings, and the three possible internal forces that are developed are the normal or axial force, the shearing force, and the bending moment.

How to determine the resultant internal loads?

The resultant internal loads b = Nb =-2.16 kip, V b=0 M b=2.16 kip .ft

The resultant internal loads c=Nc = -4.32 kip, V c=0.54 kip M c=2.16 kip. ft

Solution: The beam ab is pin supported at A and supported by cable BC

The Weight of the beam AB is 120 I b/ft. The weight of the cable BC is 180 I b /ft.

find the loading at the center of beam AB (P ab)

P ab= Weight of  beam AB * Length of beam AB

substitute 120 I b /f t for the weight of beam AB and 12 ft for the length of beam AB

P ab=120*12 =1,440 I b convert the unit from I b to kip P ab=1,440 I b*1 kip/1,000 I b 1,44 kip

To learn more about internal loads refer to;

brainly.com/question/16618064

#SPJ4

Let AequalsPDP Superscript negative 1 and P and D as shown below. Compute Upper A Superscript 4. Pequalsleft bracket Start 2 By 2 Matrix 1st Row 1st Column 1 2nd Column 3 2nd Row 1st Column 2 2nd Column 5 EndMatrix right bracket ?, Dequalsleft bracket Start 2 By 2 Matrix 1st Row 1st Column 1 2nd Column 0 2nd Row 1st Column 0 2nd Column 2 EndMatrix right bracket

Answers

SOLUTION BELOW THE PICTURE.

To know more about AequalsPDP visit:

https://brainly.com/question/15656045

#SPJ4

You are asked to recommend an email retrieval protocol for a company's sales team. The sales team needs to access email from various locations and possibly different computers. The sales team does not want to worry about transferring email messages or files back and forth between these computers. Which email protocol is designed for this purpose

Answers

With IMAP4, a mail server can store messages that users can access from different locations and client devices. A POP3 server necessitates the user downloading their email.

Which of the following protocols allows for safe email retrieval?

Email on a remote web server can be accessed from a local client using the Internet Message Access Protocol (IMAP), a mail protocol. The two most often used Internet mail protocols for obtaining emails are IMAP and POP3.

What one of the following protocols do email servers communicate with one another using?

Over the Internet, emails are delivered using the Simple Mail Transfer Protocol (SMTP). Most email clients send messages to the server using this protocol.

To know more about IMAP4 visit :-

https://brainly.com/question/14289109

#SPJ4

Which of the following Windows PowerShell commands performs a DNS name query for www.contoso.com?
a. ping www.contoso.com
b. dnsquery www.contoso.com
c. resolve-DNSName -Name www.contoso.com
d. resolve-DNSquery

Answers

The DNS name query for www.contoso.com is carried out by the Windows PowerShell command resolve-DNSName -Name www.contoso.com.

When syncing a Windows 10 machine with a wifi access point?

The most recent security protocol with the highest standards is WPA3 (Wi-Fi Protected Access version 3). Simultaneous Authentication of Equals is a handshake used by WPA3 to protect against dictionary attacks and shield its network from potential assaults that WPA2 could allow.

To verify network connectivity between two hosts, which of the following commands is used?

Traceroute - To find the route between two connections, use the traceroute command. Frequently, a link to another device must pass via several routers. The traceroute command will return all of the router names or IP addresses between two devices.

To know more about DNS name query visit :-

https://brainly.com/question/28235999

#SPJ4

Define a class TestIsEvenMethod, which is derived from unittest. TestCase class. Hint : Import unittest module and use TestCase utility of it. Define a test test_isEven1, inside TestIsEvenMethod, that checks if isEven(5) returns False or not.


Hint : Use assertEqual method to verify the function output with expected output. Add the statement unittest. Main(), outside the class definition

Answers

A unit test should be imported from the standard library. Make a class called TestSum that is an inheritor of TestCase. Add self as the first argument to the test functions to make them into methods.

When utilizing the unit test module, which class do we inherit to create a straightforward testing class?

The function you want to test, formatted name(), and a unit test must first be imported. Following that, you develop a class, such as NamesTestCase, which will house tests for your formatted name() function. This class is descended from the unit test class. TestCase.

Why is pytest inferior to unit test?

Unittest mandates that programmers construct classes inherited from the TestCase module, where the test cases are then specified as methods. For Pytest, however, all you need to do is declare a function with "test_" before it and utilize the assert conditions inside of it.

to know more about TestCase class here:

brainly.com/question/30115788

#SPJ1

which device is connected to a port on a switch in order to receive network traffic?
a. Inline IDS
b. Anomaly monitor
c. Passive IDS
d. Behavioral monitor

Answers

To accept network traffic, an inline IDS device must be linked to a switch port.

What is IDS inline?

IDS and IPS on the network. Network sensors may be installed either inline or passively. When in "inline" mode, the sensor is positioned right in the path of network transmission. The sensor acts as a firewall, filtering out traffic.

In terms of network security, what is an inline attack?

Network equipment that is seen as essential to the operation of an enterprise network, such as routers, switches, and firewalls, is referred to as inline. It is normal for dropped packets or mistakes in the computing programs and processes to follow any malfunction or performance degradation of these devices.

To know more about inline IDS device visit :-

https://brainly.com/question/13148816

#SPJ4

Which groups on her desktop system could you make her user account a member of to enable this configuration

Answers

Remote Desktop Users groups on her desktop system could you make her user account a member of to enable this configuration.

What exactly is the Remote Desktop Users Group?

The administrators' group's members are the only ones who can access remote desktops on Liquid Web's Windows servers by default. The Remote Desktop Users group, on the other hand, allows its members to safely connect to the server via RDP (Remote Desktop Protocol).

Is RDP preferable to VPN?

The primary distinction between VPNs and RDP is that an RDP gives your device more capabilities, whilst a VPN doesn't. Even though you're still using the same old device, it now has a new IP address and is far more safe when accessing the Internet.

To know more about Remote Dekstop User visit

brainly.com/question/26605428

#SPJ4

Write a program that lets the user enter the initial height from which the ball is dropped, the bounciness index, and the number of times the ball is allowed to continue bouncing. Output should be the total distance traveled by the ball.

Answers

The following is the program for total distance traveled by the ball;

What do programming skills entail?

Programming, or "coding," skills are the ability to write commands in a variety of programming languages to tell a computer, application, or software program what to do and how to do it.

Write program for the distance travelled by ball.

height = float(input('Enter the height from which the ball is dropped: '))

bounci_index = float(input('Enter the bounciness index of the ball: '))

bounces = int(input('Enter the number of times the ball is allowed to

continue bouncing: '))

distance = height

for i in range(bounces-1):

height *= bounci_index

distance += 2*height

distance += height*bounci_index

print('\nTotal distance traveled is: ' + str(distance) + ' units.')

To know more about program visit

brainly.com/question/14368396

#SPJ4

dbmss available for use on personal computers include ____ and corel paradox.

Answers

Microsoft Access and Corel Paradox are two DBMSs that can be used with personal PCs.

Which database type is the most widely used?

Today's most popular database type is the relational database. Data is arranged in relational databases into two-dimensional tables (referred to as relations) with columns and rows. Data about an entity and its characteristics are contained in each table.

What does DBMS's database mean?

Explanation: The DBMS (or Database Management System) is a category of system software used for a number of tasks, including building databases and tables and storing data. It also enables changing the information kept in the database.

To know more about DBMSs visit :-

https://brainly.com/question/28342112

#SPJ4

Other Questions
Determine whether the geometric series is convergent or divergent. 10 8 + 6.4 5.12 +... A. convergent B. divergent If it is convergent, find its sum. (If the quantity diverges, leave this blank.) _____ What is the measure of m?nm287m = [? ] VGive your answer in simplest form. Suppose you were going to create a map of the sea floor where the Christmas earthquake of 2004 occured for the US Government. How would you proceed? What methods would you use and why? When drafting your answer, consider the depth and contours of the sea-floor. One of the roots of the equation x^2-5x+q=0 is 2. Find the other root and the value of the coefficient q. To be eligible for the swim team, the mean pace a student needs to achieve on 5 laps of the pool is 60 seconds (s). The student swims a lap in 63 s, 62 s, 65 s, and 58 s on her first four laps.What is the maximum time (in seconds) that she can take on her last lap and still make the team? What are the factors needed to consider in buying and selling products and services? F(x) = 3x -4 find each value of F(0) Simplify the following polynomial, then evaluate for x = -22x2 - 4x + 3x2 + x - 7 What is the area of the circle if BC = 6cm? how would you characterize the difference between the way Othello and Iago talk, both in their subject matter and their style What is a fixed and variable expense and provide an example of each? In testing inventory at an audit client in the retail industry, you note that some of the inventory is contracted to be held on consignment. As a result, which financial statement assertion is now relevant ?a. Rights and obligations.b. Completeness.c. Existence or occurrence.d. Valuation or allocation. What do snails and clams have in common? Part I-Selected Response1. CJ wrote several pairs of values that hethought were equivalent. Which of hisequations are correct? Circle all that apply.A. 1.25-125%. B. 0.03-30%C. 0.001 - 1% D. E. -50% 2. What is 30% of 60?A. 18B. 20C. 24D. 30B. 0.03-30%D. -60%F.D. 200 3. Six is 3% of what number?A. 0.18B. 2C. 18 4. What percent of 40 is 60?A. 20%B. 50%C. 67%D. 150%5. What is the percent decrease from 20 to16?A. 4%B. 20%C. 25%D. 125% 6. Last year, 15 dogs entered the local dogshow. This year, 20 entered. What is thepercent increase?A. 20%B. 25%C. 33%D. 75% 7. Roe bought a video game in Miami. Thegame was $30. Miami has a 7% sales tax.How much money did Roe pay for the videogame including sales tax?A. $32.10B. $33.50C. $37.00D. $51.00 8.Lia bought a new jacket. The original priceof the jacket was $48 but it was on sale for15% off. For numbers 8a-8d, determinewhether each statement about Lia'spurchase is true or false. 8a. Lia paid more than $48for the jacket. 8b. The discount was $7.20. 8c. Lia paid $40.80 for thejacket. 8d. Lia paid $55.20 for thejacket.8a. TRUE FALSE8b. TRUE FALSE8c. TRUE FALSE8d. TRUE FALSE How do I inform customers about late delivery? 30PTS 30PTS dont explain just answer (its not 90) What did William Blackstone believe the purpose of law was? How do you graph 3 4 on a number line? Which object has the largest resultant force?10N-10N-30 N-AC30 N5N-5N10N-5N-5N-5N-BD10N10 N Using the graph complete the table for points A, B, and C. complete the row of point D