Select the correct answer.
Which type of computer application is Apple Keynote?
O A. word processor
OB. spreadsheet
presentation
database
OD.
O E.
multimedia​

Answers

Answer 1

Answer:

Presentation

Explanation:

Answer 2

The type of computer application is Apple keynote is presentation database. The correct option C.

What is an Apple keynote?

Keynote is a feature of apple is a tool for iOS. Slideshows can be created including pictures, charts, texts, styles, fonts, etc.

It is used for creating presentation for schools, colleges, and offices.

Thus, the correct option is C, presentation database.

Learn more about presentation database

https://brainly.com/question/27679160

#SPJ2


Related Questions

What is the radius of a circle

Answers

Answer:

Radius of a circle is just half of the diameter.

Answer: the radius of a circle ⭕️ is the center of the circle or half the diameter of a circle.

HELP ASAP
In which step of web design is storyboarding helpful? Coding Editing Planning Publishing

Answers

Storyboarding is helpful during the planning stage of web design.

Explanation:

Organizing your thoughts can be a struggle. In other words, keeping characters, footages, and concepts coherent and apprehensive is a hassle. Visual representation of these concepts can help you stay structured and storyboarding is the best way visual organizer.

Story boards serve as the suitable blend of visuals and text. As far as script writing, novels, and creating other comprehensive plots, storyboards are perfect for sorting information.

Katie wants to use VLOOKUP for a column in a table. Which value of the mode parameter should she use to look for an exact match of the searched data?

Answers

The exact match mode is the mode parameter that Katie should use to look for an exact match of the searched data

Further Explanation:

The VLOOKUP function in Excel helps us search for and retrieve information from a particular column in a table and lookups a value in the left-most column of the table. It has two modes of matching.

Exact matching – When you perform a range_lookup, an argument FALSE is defined to mean that there is an exact match of the return value.

To achieve this, select a cell in your Excel worksheetType =VLOOKUP in the type bar of the Excel sheetSelect the value to look up and then select the data rangeType the column number that you want to search and then type FALSEPress enter

Learn about VLOOKUP in Excel by clicking the links below

https://brainly.com/question/9579933

https://brainly.com/question/10686097

#LearnWithBrainly

Answer:

FALSE

Explanation:

I got it correct on the test. They are looking for the "Value" which is "FALSE".

example...=VLOOKUP(H4,B5:E9,2,FALSE) // FALSE = exact match

Give one example of a civil engineering structure.

Answers

Answer:

Airports, roads, bridges, dams, sewerage, railways, and many more.

Explanation:

Civil engineering concerns constructing, designing, and maintaining a physical environment. Examples of civil engineering are airports, roads, bridges, dams, sewerage, railways, etc.

Give the out put of the program snippet
Int a = 10, b = 12;
If(a>=10)
a++;
Else
++b;
System.out.println (" a = " + a + " and b= " + b);

Answers

Answer:

Output will be as follows

a= 11

b= 12

Explanation:

In this program, two values 10, and 12 assigned to two variables a and b respectively. In next step the values of a has been checked that whether it is equal to 10 or greater than 10. so according to the assigned values, a is equal to 10 so a is incremented by 1 and becomes 11. while there is no change in the value of b.

So the output of a = 11 and b= 12.

Write a MARIE program to calculate some basic statistics on a list of positive numbers. The program will ask users to input the numbers one by one. Assume that all numbers will be in the range 1 to 1000. To terminate the data entry, user will input any negative number. Once the data entry is complete, the program will show four statistics about the list of numbers: (1) Count (2) Minimum value (3) Sum of numbers (4) "Mean/Average" calculation.

As an example, if the user enters the following decimal numbers as input (one after the other)

23, 6, 78, 36, 3, 250, 127, 210, –5

the program would output the following values as the count, minimum, sum and mean respectively:

8
3
733
91

The average is calculated by dividing sum by count. Note that MARIE does not support floating point numbers, hence the result of division will only have the integer part (as shown in above example, average is 91 instead of 91.625)

A simple algorithm for implementing division in MARIE is shown below.

Let x = dividend, y = divisor, z = quotient (result) of division.

set initial z to 0
while x > y, do
set x to (x – y)
increase z by 1
endwhile

Assume that the user will always provide valid numbers as input, that is, do not worry about dealing with invalid input data.

Write comments within your program so that a reader can understand it easily.

Answers

Answer:

a=[23,6,78,36,3,250,127,210,-5]

i = len(a) # calculate length

j = min(a) # calculate minimun

k = sum(a) # calculate sum

l= sum(a)/len(a)  # calculate mean

print(i)

print(j)

print(k)

print(l)

z = 0.0

i=0

x=[23,6,78,36,3,250,127,210,-5]

y = int(l)

while x[i] < y:  

   z= int(x[i]/y)

   print(z)

   x[i] = x[i] - y

   z=z+1

   i=i+1

Explanation:

So above we have calculated Count, minimum, sum and mean/average. Also we did a simple division and printed quotient.

How do you view a presentation as your audience would see it?

by selecting Run from the File menu
by clicking the Slide Show button
by clicking the Play button
by selecting Play from the Tools menu

Answers

Answer:

Option B is the correct answer.

=> By clicking slideshow button.

Explanation:

A view in which audience should see the presentation is the SLIDE SHOW VIEW.

Slide show can be started by clicking on the Slide show tab than choose one of the desired option/ways to SET UP SLIDE SHOW.

I HOPE IT WILL HELP YOU!
By clicking the slideshow button

Match the keyword to its definition. 1 . Pixel A device that is not central to the operations of a computer 2 . Peripheral Standard that addresses the physical connection and transfer speed between a computer and a peripheral device 3 . Small computer system interface Smallest element of a picture on a computer display 4 . Input Devices that take information from the processor and deliver it to the computer user 5 . electrostatic discharge Devices that take information from the computer user and deliver it to the processor 6 . storage The instantaneous flow of electricity between two objects when they touch 7 . Integrated drive electronics Measurement of the speed of data transfer 8 . Bluetooth Devices like hard drives or floppy disks that store data 9 . Output Interface for computer device that has its own control function 10 . Megabits per second A wireless technology that uses radio waves to transmit data across short distances

Answers

Answer:

1 . Pixel:  Smallest element of a picture on a computer display.

2 . Peripheral: A device that is not central to the operations of a computer.

3 . Small computer system interface: Interface for computer device that has its own control function

4 . Input: Devices that take information from the computer user and deliver it to the processor

5 . electrostatic discharge: The instantaneous flow of electricity between two objects when they touch

6 . storage: Devices like hard drives or floppy disks that store data .

7 . Integrated drive electronics: Standard that addresses the physical connection and transfer speed between a computer and a peripheral device

8 . Bluetooth: A wireless technology that uses radio waves to transmit data across short distances.

9 . Output: Devices that take information from the processor and deliver it to the computer user

10 . Megabits per second: Measurement of the speed of data transfer

Final answer:

The answer provides a match between each keyword and its definition in the field of computers and technology, covering terms like Pixel, Peripheral, Input, Storage, and others.

Explanation:

Here are the correct matches for the keywords and their definitions:

Pixel - Smallest element of a picture on a computer display.Peripheral - A device that is not central to the operations of a computer.Small computer system interface - Standard that addresses the physical connection and transfer speed between a computer and a peripheral device.Input - Devices that take information from the computer user and deliver it to the processor.Electrostatic discharge - The instantaneous flow of electricity between two objects when they touch.Storage - Devices like hard drives or floppy disks that store data.Integrated drive electronics - Interface for computer device that has its own control function.Bluetooth - A wireless technology that uses radio waves to transmit data across short distances.Output -Devices that take information from the processor and deliver it to the computer user.Megabits per second - Measurement of the speed of data transfer.

Learn more about Computer and Technology Terminology here:

https://brainly.com/question/33892036

#SPJ3

5 points
2.) Rose opens her software application and gets a message stating that
she has only 16 more uses of the product available. Given this scenario,
what is her best course of action to use it more than 16 additional times?
Activate the software.
Register the software.
O
No longer close the application.
O
Uninstall and reinstall the software.

Answers

Answer:

Activate the software.

Explanation:

You will need to activate the software. And you have already registered as else you can not go through the trial. Also, by no means, you cannot use the application again, and you can anytime through activation, or through installing on the new device. And uninstalling and reinstalling the software will not work if you are on the same computer.

Rose has only 16 more uses of the software application available. To use it more than 16 additional times, her best course of action would be to activate the software. A is correct.

Activation typically involves entering a product key or serial number provided by the software vendor. Once activated, the software usage limitations are often removed or extended, allowing Rose to use the software beyond the initial limit of 16 uses.

The other options presented, such as registering the software, not closing the application, or uninstalling and reinstalling the software, are unlikely to extend the number of uses available. Registering the software may provide benefits such as support or updates, but it's unlikely to directly affect the number of uses.

Not closing the application or uninstalling and reinstalling it won't change the usage limitations either. Therefore, activating the software is the most appropriate action to extend its use beyond the initial limit.

What sort of questions would a Turing test ask and what are some responses for said questions?

Answers

Answer:

Explanation:

Turing is a test between a machine and a person to determinate what is the real person, we could do simple questions, in this case, the human will pass the test, for example:

Why are we having this conversation?

I'm 12 years old, how old are you?

What did you do this morning?

In addition, we can do some trap questions, I cannot have granddaughter because I already said I'm only 12 years old.

My granddaughter doesn't want to go to school. Any suggestion?

i have to design a 4-bit even up-counter using D flip flop by converting combinational circuit to sequential circuit. The counter will only consider even inputs and the sequence of inputs will be 0-2-4-6-8-10-0. i need help...

Answers

ok so the D flip flop is in an implitical order which i assume you know, using this fact you want to use it in the sequence to find the inputs

What is technology?
APEX
a. an understanding of something new.
b. a method that is used to solve problems
c. something created for using science for use by society
d. the steps that engineers go through to create a product

Answers

Answer:C. something created for using science for use by society

Explanation: Technology is the use of science to provide human problem. It can be in the form of a machine, tool or equipment. As long as it involves applying a scientific process, it's technology. Example of technology is a computer. It's used to store and process data in a faster way. Old technology also included Hammer, Saw, Grinding Machines etc.

Answer:

C

Explanation:

Which best describes why some elderly people do not access mental health care?
A. Their family members discourage them from seeking professional care,
B. They feel that mental health symptoms are normal for their age.
C.
They do not know any other people who are accessing mental health care.
D.
Psychiatrists typically only provide care for adolescents and middle-aged adults.
E. Mental health care services are too expensive for many senior citizens.
Reset
Next

Answers

Answer:

I choose B

Explanation:

old people are stubborn

Answer:

i believe the answer is E

Explanation:

Unlike artistic drawings, which communicate self-expression and
emotional content,
communicate how to manufacture or construct a product, system, or
device(14th ed.) OR communicate size, shape and feature information
(15th ed.).

Answers

Answer:

The artistic drawings communicate self-expression and emotional content. However, when we come to manufacture or to construct a product, system, or device then you need to communicate its applications firstly, and then its features to prove why its the best choice as a product, system or device. And finally, you need to prove its affordable, if possible prove its still a luxury. And when we communicate size, shape and feature information, we need to prove its the best fit, and according to the requirement as well. Also, you need to prove its domain being quite vast such that more and more people with varied requirements show interest in buying it. And the shape is good in look as well. and features must be the best. If you are able to ensure these, your product, system or device is going to rock.

Explanation:

Please check the answer.

Create a Java program that inputs a grade from the user. The grade input from the user will be an integer. Once the input is stored, use an if-else-if block of code to determine the letter grade of the inputted integer grade. Do not use a bunch of if statements by themselves to solve this problem. You will print an error message for inputs greater than 100 and for inputs less than 0. Both errors must be handled together by a compound conditional statement that is joined by a short circuit AND or OR operator. Assign your error message to a String variable and use that variable in a System.out.println statement to print the error. You must assign a char variable for each letter grade. Use System.out.printf to print the letter grade. Run your program several times using these inputs and ensure that you are receiving these outputs: input: 140 expected output: ERROR - You have entered an invalid input. Input: -45 expected output: ERROR - You have entered an invalid input. input: 82 expected output: You have earned the letter grade B. Run it a few more times using various other inputs. Part II Convert the if-else-if code block to a switch statement to solve the problem. Use modulus and/or integer division to convert the grade input so that the range of grades are converted to one value. All other requirements from Part I are still required for part two. Use the same inputs and the outputs should remain the same. My Code import java.util.Scanner; int grade; System.out.print("Enter your grade: "); grade = scnr.nextInt(); if (grade >= 90) { System.out.println("You have earned the letter grade A."); } else if (grade >= 80) { System.out.println("You have earned the letter grade B."); } else if (grade >= 70) { System.out.println("CYou have earned the letter grade C."); } else if (grade >= 60) { System.out.println("You have earned the letter grade D."); } else if (grade <= 59) { System.out.println("You have earned the letter grade F."); } else (0 >= grade >= 100) { System.out.println("You have entered an invalid input.") }

Answers

Answer:

Public static void main (string args []){

System.out.println("The grade is" + print grade (78));

System.out.println("The grade is" + print grade (59));

}

Public static char print grade (integer grade){

If ( grade >= 90)

System.out.println("You have earned the letter grade A");

Else if (grade >=80)

System.out.println("You have earned the letter grade B");

Else if (grade >=70)

System.out.println("You have earned the letter grade C");

Else if (grade >=60)

System.out.println("You have earned the letter grade D");

Else if (grade <=59)

System.out.println("You have earned the letter grade F");

else (0 >= grade >= 100) System.out.println("You have entered an invalid input.")

}

}

Explanation:

Which is the most likely reason film companies expanded so quickly?
Advances in radio technology helped audiences to trust new technology; therefore, audiences wanted to see more films produced.

Widespread film distribution increased revenue and popularity; therefore, film companies expanded in order to produce and distribute more films.

The post WWI economic boom allowed businesses and corporations to invest in filmmaking, and film companies were able to produce more films.

Film technology began advancing so rapidly in the early 1900’s that film companies had to quickly expand in order to keep up.

Answers

The answer is : Widespread film distribution increased revenue and popularity; therefore, film companies expanded in order to produce and distribute more films.

Films are not just arts. It also about business. Basically a successful film with impressive production can expect higher return of revenue because they have established an impression to their fans and movie goers about their quality of their movies and productions. Successful films normally has parts and sequences. Since film industries are also businesses they are struggling more to develop higher quality movies with unique and impressive storylines in the future.

Which five views are are available on the View Tab?
(From Microsoft Word 2016)

Answers

Answer:

Print Layout, Full Screen Reading, Web Layout, Outline and Draft

Explanation:

Microsoft Word gives you five different views of a document, and each has its own advantages over the others. You chold basically guess what purpose some of them serve just by their names.

recovery methods from a database failure​

Answers

Answer:

Explanation:

We can elaborate a database backup to recover our data if the system fails, or there is a virus, or someone makes an incorrect command, we could do a full backup in our entire database, and we can store the modification in this backup, this depends on the database damage, but always we must have a backup because there is not invulnerable system.

Science is a body of knowledge that extends back to Select one: a. the time of Galileo. b. Italy in the 16th century. c. Greece in the 7th century B.C. d. humankind's beginnings.

Answers

Answer:

I believe its C.

Explanation:

Science is a body of knowledge that extends back to : Greece in the 7th century B.C.

Thus option C is correct.

Here,

Science is a body of knowledge that has evolved over centuries. It began in ancient times, specifically in Greece in the 7th century BC.

The Greek philosophers like Thales, Anaximander, and Pythagoras laid the foundations of scientific thinking, with their observations and theories about the natural world. They sought to explain the world around them by using logic and reason, rather than by resorting to mythological or supernatural explanations.

From this time forward, science has continued to grow and evolve into the vast and complex field that it is today.

Therefore option C is correct.

Know more about science evolution,

https://brainly.com/question/237386

#SPJ6

an application object _____ source formats.
A: Edits,B:Retains. C:Changes. D:Refines.
Answer the questions ?????

Answers

Answer:

an application object Retains source formats.

Explanation:

An application object that is used to gather the information from different pages and store it. It keep the source formatting while copying data from the page. This will copy data and variable from different pages and tie them together to perform different operations.

Select the correct answer.
Dan is a nature photographer who wants to share his pictures on his blog site. He wants to retain the high quality of the pictures, regardless of file
size. Which file format is best suited for this purpose?
A. JPEG
B. PNG
C. GIF
D. SVG

Answers

Answer: The answer is actually PNG

Explanation:

Final answer:

The best file format for Dan to use for uploading high quality pictures on his blog, without worrying about file size, is PNG. This format supports lossless compression and 24-bit images, making it ideal for preserving the quality of his photographs.

Explanation:

For Dan, a nature photographer who wishes to retain the high quality of his pictures on his blog site without concerning file size, the best file format would be PNG (Portable Network Graphics). PNG files are designed to handle up to 24-bit images and can manage lossless compression, ensuring that the quality of the photographs isn't compromised during the saving process. This format is well-suited for use on the web and can be viewed efficiently in web-based browsers.

It is important to note that while JPEG files are commonly used for digital photos due to their ability to display millions of colors and their file size efficiency through lossy compression, they do not retain the same level of quality as PNG when compression takes place. GIF files typically only support up to 256 colors, which is not ideal for high-quality photographs. SVG files are designed for vector graphics rather than the raster images that Dan is looking to upload.

Just answer in five-line. Question:
Green Field county stadium is planning to conduct a cricket match between two teams A and B. A large crowd is expected in the stadium as 10000 tickets have already been sold. To fulfill the viewers’ requirements, the match administrators are willing to install large display screens inside the stadium which should display the match “Live” through several cameras installed on different angles in the stadium.?

“most suitable serial transmission mode” with two strong reasons.

Answers

Answer:

It is a half-duplex serial transmission mode, and this can be provided through the RS-485 two wired electrical interface. And this can be connected to the ethernet if required, connect to the LAN, and finally transmitting the video footage to all the screens. And the two reasons are:

1. Noiseless

2. Allows around 32 receivers.

Explanation:

Please check the answer.

__ is the name of the learning management system that is
used by NCVPS to present course content to students.​

Answers

Answer:

Canvas is the name of the learning management system that is

used by NCVPS to present course content to students.​

Explanation:

Canvas is the learning management system that is used to facilitate the students to provide them lectures and other learning materials. The content of the courses is also provided through this platform. The main features of this platform are video and audio recording and uploading for the students lecture.

A machine that is used to print newspaper is a

Answers

Answer: it's a printer.

Answer:

Printing press

Reflect on each of these statements about the Internet. Choose three statements that support the idea that the Internet makes bullying easier and a bigger problem.

Parents, teachers, and students all use the Internet.

Information can spread very quickly on the Internet.

If you say something mean online, you don’t have to worry about getting in a
physical fight.

Anything someone says could stay on the Internet for a long time.

You can find lots of information on the Internet.

You can get support from groups on the Internet.

Answers

B. Information can spread very quickly on the Internet.

C. If you say something mean online, you don’t have to worry about getting in a physical fight.

D. Anything someone says could stay on the Internet for a long time.

Cyber bullying can go full blown due to the simple fact that information that goes on the internet can be public, anonymous, and can last a very long time online.

Further Explanation:

Information can spread very quickly on the internet – Information online goes viral every day. Most people online are caught up in this kind of rapid spread of information. However, people who have intentions of getting involved in viral trends should carefully consider the effects of these trends and whether or not they will toxic to someone else. A good example is “roasting” someone online. People tend to cross the line while commenting on trends and may end up hurting people really bad emotionally.

If you say something mean online, you don’t have to worry about getting in a physical fight – Cyber bullies are best known as keyboard warriors. They behave aggressively online but when opportunities to face those they have aggressively bullied online, they will most likely not behave like that due to cowardice.

Anything someone says could stay on the Internet for a long time – Expect anything that goes online to stay online for a very long time. The internet never forgets. Information about someone will always re- surface and will be used against them when that day comes and will always turn out ugly.

Learn more about Cyber Bullying

https://brainly.com/question/1547453

https://brainly.com/question/11992465

#LearnWithBrainly

What function should be entered into B7 to calculate the total budget

Answers

Answer:

Explanation:

In excel we have two options to calculate a total budget, for example, we're going to assume that we have 3 values A6, B6, C6, In this case, we can use this formula =A6+B6+C6 or =SUM(A6:C6), in both ways we're going to have the same result because this is a sum but with different formulas, even we can select specific rows, is not necessary to add range.

In Outlook 2016, what happens when users begin to type in the To field the name of an email recipient to whom they frequently send messages?

Answers

Answer:

the email will automatically be listed

When users begin to type in the To field in Outlook 2016, the autocomplete feature suggests names from the user's contact list, recent contacts, and global address list. It predicts the recipient based on the characters typed, providing suggestions to expedite the process of addressing emails.

To calculate the autocomplete suggestions:

1. Contact List: Outlook prioritizes suggestions from the user's contact list. Let's assume the user has 100 contacts.

2. Recent Contacts: Outlook also considers recent contacts. Assuming the user has interacted with 50 different email addresses recently.

3. Global Address List (GAL): If the Outlook client is connected to an Exchange Server, it can access the Global Address List, which contains thousands of email addresses within the organization.

Considering these factors:

- Contact List (100)

- Recent Contacts (50)

- Global Address List (Assuming 1000 within the organization)

The autocomplete feature in Outlook 2016 could potentially suggest up to 1150 email addresses when users begin typing in the To field.

Explanation:

1. The autocomplete feature primarily relies on the user's contact list, which typically contains the most frequently used email addresses. For most users, this might range from dozens to hundreds of contacts.

2. Recent contacts are also considered, providing suggestions based on recent interactions. This adds another layer of personalized suggestions.

3. For users connected to an Exchange Server, the Global Address List (GAL) further expands the autocomplete suggestions. The GAL contains a comprehensive list of email addresses within the organization, which can be extensive in large enterprises.

By combining these sources, Outlook's autocomplete feature ensures that users can quickly select recipients without having to manually enter email addresses each time, improving efficiency in email communication.

Complete Question:
In Outlook 2016, what happens when users begin to type in the To field the name of an email recipient to whom they frequently send messages?

Assessing opportunity cost involves...


making choices and dealing with consequences.

choosing consequences over rewards.

reviewing past decisions and changing them.

minimizing profit and loss.

Answers

Answer:

Assessing opportunity cost involves making choices and dealing with consequences.

Explanation:

Opportunity cost means that, the cost to gain something with some consequences. If there are multiple opportunities in front of you and you have to analyze or assess each opportunity. In this assessment you have to assess the consequences of all choices or opportunities. After assessing all the opportunities you will select the opportunity in which you have more gain and less consequences.

So we can say that, while assessing different opportunities, we have to make choices and dealing with consequences.

This expense of gaining something with certain implications is referred to as the opportunity cost. When you have several options in front of you and must analyze or evaluate each one. In this assessment, you must consider the repercussions of all choices and possibilities.

After weighing all of your options, you will choose the one with the most profit potential and the fewest drawbacks.Therefore, while evaluating alternative options, we must make decisions and cope with the repercussions.Evaluating cost-benefit entails making these decisions and living with the aftermath.

Therefore, the answer is "first choice".

Learn more:

brainly.com/question/10932382

11. If the following pseudocode were an actual program, what would it display:
Declare Integer a = 5
Declare Integer b = 2
Declare Integer c = 3
Declare Integer result
Set result = a + b + c
Display result

Answers

Answer:

10

Explanation:

This pseudo code display the result of 3 integer numbers. In this program, 4 integer variables are declared such a,b,c and result. The integer variables a,b and c has the values 5,2 and 3 respectively.

Then these 3 integer variables a,b and c values are added (5+2+3) and their addition result stored in result variable.

e.g in C++

#include <iostream>

using namespace std;

int main()

{

int a=5;

int b=2;

int c=3;

int result;

result=a+b+c;

cout<< "The result is: "<<result;

}

Suppose as a computer programmer, you have been assigned a task to develop a program to store the sorted data in ascending order. Initially you have used linked list data structure to store the data but search operation was time consuming then you decided to use BST (Binary Search Tree) but retrieval efficiency is not improved. In such situation, How can you improve the efficiency of search operation for BST? Justify your answer with solid reason.

Answers

Answer:

In case the data is arranged in the ascending order, you can always change the Binary search tree into a Height BST, and which is also known as the self-balancing BT. And through this, it's quite on hand to better the operations like searching on the new BST. And these SBBTs are quite commonly made use of for constructing as well as maintaining the ordered list. This is the case in the case of the priority queue, and this is what is required here.

Explanation:

Please check the answer.

Other Questions
________ consist(s) of employees representing various functions of the company, such as R&D, design, production, marketing, distribution, and customer service. What eligibility requirements does the constitution establish for members of the senate Determine a valid way of finding the wires diameter if you know the resistivity of the material, \rho , and can measure the current flowing through the wire, I, and the voltage drop between two points of the wire, V, a known distance apart, L. find the diameter of the wire in terms of \rho L V and I. How will you find the measurement error (i.e., uncertainty) in the diameter of the wire? The Denver Police Department wants to know if Hispanic residents of Denver believe that the police use racial profiling when making traffic stops. A sociologist prepares several questions about the police. The police department chooses an SRS of 300 mailing addresses in predominantly Hispanic neighborhoods and sends a uniformed Hispanic police officer to each address to ask the questions of an adult living there.a. What are the population and the sample? b. Why are the results likely to be biased even though the sample is an SRS? If t follows a t7 distribution, find t0 such that (a) p(|t | < t0) = .9 and (b) p(t > t0) = .05. 1. From which language is the word ketchup derived?2. Which is the country with the biggest population in Europe?3. Who portrayed Edward Scissorhands?4. What are made and repaired by a cobbler?5. What is an endoscope used to examine?6. Apart from womanizing and producing films, what was the other passion of Howard Hughes?7. What colour are the four stars on the flag of New Zealand?8. How many states make up the United States of America?9. Which English football team plays its home matches at Old Trafford?10. Mr. Carson is the name of the butler in which popular TV costume drama?11. Comedy duo Ant and Dec are originally from which English city?12. In the medical profession, what do the initials GP stand for? With what tension must a rope with length 2.30 mm and mass 0.105 kgkg be stretched for transverse waves of frequency 36.0 HzHz to have a wavelength of 0.790 mm? Imagine you are on a spaceship that is under constant acceleration of 1g. If the spaceship was stationary at the start, approximately how many miles will you travel in one year? Solve:The total cost (C) in dollars for building an office of x square feet is givenby the function C(x) = 107,500 + 150x.If the total cost was $385,000.00, how many square feet was the office? Which of the following developments best explains changes in agricultural production in the United States during the 1880s and 1890s? Which lymphatic tissue is associated with mucous membranes and is called mucosa-associated lymphatic tissue, or MALT? When solving the equation 27.75n + 5.50= 144.25 , what can you do to get 27.75n by itself on one side of the equation? A 200 kg chunck of lead falls from a hight of 30m and smashes into a rigid floor. calculate the increse in internal engery Suppose two economists are debating a tax reform bill. Both economists agree that the bill would increase the after-tax income of the top 5% of income earners; however, they disagree on whether the bill would improve the tax system. Which is the most plausible reason for why these economists disagree A psychological disorder is said to have an acute onset if the symptoms develop __________, while it has an insidious onset if the symptoms develop __________ . Compare the graphs below of the logarithmic functions. Write the equation to represent g(x). Which option identifies ways that people positively affect Earths resources 15/12, 0.4, 42%, 0.416 least to greatest What tool would you need discover whether a mineral has fracture?A. A hammer incorrect answerB. A file incorrect answerC. A grinder incorrect answerD. A harder mineral When you calculate the area, what measurement are you finding? AArea measures the distance around the outside of a given shape. BArea measures the amount of any certain single unit (inches, feet, miles, etc.) that can be contained inside the flat plane of a given shape. Steam Workshop Downloader