Which of the following describes a network device capable of processing data?
switch
router
hub
node

Answers

Answer 1
Node is capable of processing data.
Answer 2

Answer:

Node is wrong, it is hub

Explanation:

U have to have the hub for the node to work so it is hub.

Make sure to 5 star


Related Questions

A social media application would most likely do which of the following?

Answers

The correct option is B.

A social media app primarily connects users with social and business contacts, fostering interactions and networking opportunities.

A social media application would most likely:

1. **B. Connect users with social and business contacts:** Social media platforms are primarily designed to facilitate connections between individuals, whether for personal or professional purposes. Users can interact, share updates, and build networks of friends, colleagues, and acquaintances.

2. A. Allow users to watch popular movies and TV shows: While some social media platforms may incorporate features for sharing or discussing media content, their primary function isn't centered around providing access to movies or TV shows.

3. C. Confirm users' travel plans: Confirming travel plans typically involves booking services or dedicated travel apps, not functionalities commonly found on social media platforms.

4. D. Teach users a new language: Language learning is typically facilitated through dedicated language learning apps or courses, not a primary feature of social media platforms.

The answer is Connect users with social and business contacts.

The complete question is here:

A social media application would most likely do which of the following? (6 points)

A. Allow users to watch popular movies and TV shows

B. Connect users with social and business contacts

C. Confirm users' travel plans

D. Teach users a new language

Jasmine needs to select the first sentence of a paragraph and the last sentence of a paragraph simultaneously. The text is nonadjacent. Which of the following should she do?a. Select the first sentence, then press and hold ALT while selecting the second sentence.
b. Select the first sentence, then press and hold SHIFT while selecting the second sentence.
c. Select the first sentence, then press and hold SHIFT+ALT while selecting the second sentence.
d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Answers

Answer:

d. Select the first sentence, then press and hold CTRL while selecting the second sentence.

Explanation:

In MS word, we need to select text sometimes from different places of the document or paragraph at the same time. To select the text from different place that are not adjacent to each other. we can follow the following steps.

Select the first sentence or text that you need. Now press control button and hold until select the other sentence or text.

In this way, jasmine can also select the first sentence of a paragraph and the last sentence of the paragraph simultaneously, whether text is not adjacent.

match the following unit 6 terms with their descriptions

Answers

Answer:

what are the followin six terms

Explanation:

Answer:

I think is six terms

Explanation:

I don't know how to explain it, I need a notebook and teach you how to do it

What are the advantages of businesses using Twitter ?

Answers

Answer:Through Twitter, businesses can reach a larger target audience within their key demographics through the use of hashtags and applicable media.

Explanation:

Gian wants to add audio to his presentation whichaude ves not supported
MIDI file
MP3 audio file
Windows Media Aude File
TIFF file​

Answers

Answer:

TIFF file is not audio format file rather it is graphic container that stores raster images.

Explanation:

Gain can add all other audio files (MIDI, MP3, Windows media audio file) to his presentation.

What are MIDI, MP3 and WMA :

MIDI:

Musical Instrument Digital Interface (MIDI) is a protocol that is designed for recording and playback music on digital synthesizers that is supported by many computer sound cards. Gian can add MIDI audio format file in his presentation.

MP3:

This audio file format technology compress a sound technology into very small file while preserving the original quality of sound when it is played. Gian can add this audio format in presentation to play audio in presentation.

WMA

This audio format is developed by Microsoft. It contains a series of audio codecs and their corresponding audio formats.

Gian can add WMA extension audio file to his presentation to play audio.

Answer:

D.TIFF File on tezt

Explanation:

What is the process for creating a new merge document for address labels?

Answers

Answer:

- open a new document

- start mail merge and click labels

- click label options and select the correct type

- select the recipient file

- click arrange labels; insert and address block

Explanation:

right on edg

To create a merge document for address labels, open a new document, use the 'Mailings' tab to start a mail merge, select 'Labels,' choose your label vendor and product number, and insert merge fields before printing.

Creating a New Merge Document for Address Labels

To create a new merge document for address labels, you can follow these steps:

Open a new (blank) document. If you have a template available, you can use that as well.        

Go to the "Mailings" tab and click on "Start Mail Merge".Select "Labels" from the drop-down menu.Choose the appropriate label vendor and product number that matches your labels.Click "OK" to format your document for the labels.Click on "Select Recipients" and choose how you want to select your address list (e.g., by using an existing list or creating a new one).Click "Insert Merge Field" to insert fields for the recipient's name, address, etc., into the labels.Once all fields are inserted, click "Preview Results" to see how your labels will look.When satisfied, click "Finish & Merge" and select "Print Documents" to print your address labels.

Following these steps will ensure that your new merge document for address labels is correctly set up and ready for printing.

Joann wants to insert a table of contents to her document so readers can easily navigate to the different parts of her document.

Which option of Quick Parts does she use?

Answers

Answer:

d

Explanation:

edge 2020

Joann should use the "Table of Contents" option from the Quick Parts menu to insert a table of contents into her document.

What is Table of Contents

In Microsoft Word, the "Table of Contents" option in the Quick Parts menu helps users make a list to help them  find different parts of their document. This is how it works:

Joann must make sure she chooses the right heading styles for the different parts of her document in order to use the "Table of Contents" feature. These styles are called "Heading 1," "Heading 2," and so on. These styles make it easier for Word to organize the content in a specific order.

Read more about Table of Contents here:

https://brainly.com/question/1493356

#SPJ3

How do you start an HTML webpage?
Lots of details will be nice

Answers

Answer:

The HTML page code starts with <!Doctype html>, and it confirms the version of HTML you are coding in. Remember HTML 4.01 was based on SGML, and hence a reference to a DTD is required. However, HTML 5 is not based on SGML, and hence it is not required to refer to a DTD in that case. Also, Doctype is not a tag. Hence, the first tag used is the next in the list, and that is the head tag. It comprises of a title, meta keywords, meta description, styles if used any, and scripts. However, remember, in modern-day coding script is pasted at the last portion of a web page. And this is to ensure that the web page gets loaded once at least just in case the script does not gets loaded. However, style ( CSS, Bootstrap, etc) is part of the head tag only, and always. And finally comes the body. And in the body, we use all the popular HTML tags. The form tag is also a part of the body. Remember a form can be a GET or POST, and these are the two methods. Also, the action is used to set the URL where the data needs to be sent when the form is loaded. You should study Form tag deeply, and the rest of the tags are easy, and you should know how to add the styles and javascript functions to each of them. Also, knowledge of jQuery and JavaScript is a must these days.

Explanation:

A simplest of HTML code will look like:

<!DOCTYPE html>

<html>

<head>

<title>Title</title>

<meta charset="UTF-8">

<meta name="description" content="">

<meta name="keywords" content="">

<meta name="author" content="">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>

<body>

The content

</body>

</html>

Remember viewport above is meant for making the page responsive, and we mention here width= device width, and this means it will set to the width of the device on which it is running. And there is a media tag in CSS, which we use for making the page responsive as well. Or else you can make use of Bootstrap. And initial scale sets the initial zoom level.

Drag the tiles to the boxes to form correct pairs.
Match the devices to their functional requirements.
an overhead projector
a laptop
a computer
an external monitor
requires a CD-ROM drive to run presentation CDs
arrowRight
requires a port to connect to the laptop
arrowRight
requires an external monitor to project high-resolution images
arrowRight
requires slides to project images

Answers

Answer:

An overhead projector: requires slides to project images

A laptop: requires an external monitor to project high-resolution images

A computer: requires a CD-ROM drive to run presentation CDs

An external monitor: requires a port to connect to the laptop

Explanation:

The correct pair has been formed above. An overhead projector requires the slides for projecting images. A Laptop for projecting high-resolution images requires an external monitor. And a computer requires a CD-ROM drive for running presentation CDs, and an external monitor requires a port to a port which can be an HDMI port to connect to a laptop.

Answer:

an overhead projector-requires slides to project images

a laptop-requires an external monitor to  project high-resolution images

a computer-requires a CD-ROM drive  to run presentation CDs

an external monitor-requires a port to  connect to the laptop      

Which of the following is an example of an appropriate name for a control?

Answers

Answer:

btnExit

Explanation:

<<
<
2
3
4
5
6
7
8
9
10
11
12
To include a hyperlink in a document, use the shortcut key combination
Alt+Ctrl+F
Alt+Ctrl+D
Alt+Shift they
Ctrl+K

Answers

Answer:

The Keyboard shortcut: Ctrl+K is almost always the default to include a link in an application

Explanation:

For example in Microsoft Word pressing Ctrl+K will open a window for you to type a link.

Where would be the best place to obtain a master's degree?

Answers

Answer:

Collage

Explanation:

It all depends on what your preferences are I want to be a vet so when I graduate I'm going to go to Texas state because they have a great vet program

Final answer:

Choosing the best place to obtain a master's degree requires considering personal educational goals and specific study areas. Online programs and traditional institutions both offer diverse options, like the award-winning GIS program at Penn State. Contacting universities directly and utilizing resources such as graduate rankings can assist in making an informed decision.

Explanation:

The best place to obtain a master's degree depends on your educational goals and the specific area of study you wish to pursue. Whether it is a traditional institution or an online program like the one at UMN for Parent and Family Ed, it is important to choose a school that aligns with your career aspirations and educational needs. For example, the Penn State Professional Masters Degree in GIS was recognized with the 2009 Sloan Consortium award for Most Outstanding Online Program, suggesting that some online programs can offer exceptional educational experiences.

If your interest lies in teacher certification, an alternative pathway might be through a master's degree program that allows you to work in a school while studying, as mentioned in the historical context of graduate programs which first emerged as Masters of Arts in Teaching (MAT) in the 1970s. Moreover, graduate economics rankings and resources provided by organizations like the American Economics Association can be invaluable when researching graduate degree program options in specific fields.

It's essential to consider different institutions for your advanced degrees, as this can offer a broader scope of education and potential opportunities. Remember to thoroughly research and engage with colleges or universities to understand the nuances of their graduate programs.

What are the answers to everfi

Answers

Final answer:

The answers to Everfi exercises can be found in resources provided by Everfi, including answer keys, instructor guides, and student resources.

Explanation:

The answers to Everfi exercises can be found in resources provided by Everfi. These resources include answer keys, instructor guides, and student resources. Answer keys are often available at the end of the book or in the instructor resources. Students can also access resources such as Getting Started Guides and PowerPoint slides to supplement their learning.

2 negative impact of excessive use of computer even in solving mathematical problem.

Answers

Answer:

Computers are now a days the very important part of each department as well as homes. All people are somehow using computers for their respective needs. As technology always has the negative impacts along with the positive ones so, computer do have some crucial points when taking about students specially.

Following are listed some acts that add to the negativity of computer's usage.

Excess use of computers by students while solving mathematical problems lead them to rely totally on the computer. Students don't tend to calculate by their own instead they use computerized calculators for their ease and hence they start lacking even in basic calculations in normal routine also.Computers may impact students routine in such a way that they don't concentrate on their studies while having extreme interest in video games and their favorite seasons and other activities.Using computers more than a certain limit effects eyesight badly. This is the reason today most of the teenagers use spectacles in normal routine.

I hope it will help you!

* Create a list of places and situations in which we use a computer
PLACE
SITUATION
DESCRIPTION

Answers

Answer:

Place:

Coffee shop. Railway Reservation System, Airport Reservation System, Machine learning and a long list follow.

Situation:

We find that there is a similar type of calculation and in bulk. Thus we can create a piece of software, and run that with the help of a computer to solve our problem of tackling the massive number of clients.

Description:

The situation demands a similar sort of calculation, and we can hence make a program or most favorably a software that can do all these calculations for us. A perfect example is a coffee shop, which has 100 to 1000 customers drinking coffee each second. And you can understand how badly they need a computer and software. This cannot be done manually.

Explanation:

Please check the answer section.

Carlos and Sophia develop websites as a team and have done so for many years. They hire a new member, Terry, a website developer, who
previously worked alone. A client from the healthcare Industry approaches the team to refurbish the client's old site. Because Carlos and Sophia
were out of the office visiting another client site, Terry sets up a web meeting with the client to gather their requirements. Has Terry made a
mistake in this situation?
A no, because a requirements gathering session is the first stage in website development
B. no, because Terry is an experienced developer and can manage client interactions by himself
C. yes, because a requirements-gathering session should be a face-to-face meeting, rather than a virtual one
D. yes, because only senior team members must be present in a requirements gathering session

Answers

No because a requirements gathering session is the first page in web development

Answer:

It would be C

Explanation:

Did it on edmentum and got the answer correct!

Compose one paragraph (three to four sentences) explaining the difference between a courtesy copy and a blind courtesy copy.

Answers

Answer:

Courtesy copy CC and Blind Courtesy Copy BCC are two terminology used in while sending email to someone/group of people.

Explanation:

When you send emails to a group of people.  While sending email there are two options carbon copy CC and Blind Carbon Copy Bcc. Those names are mentioned in CC are visible to all other recipients whereas those names/email addresses mentioned in BCC are not visible to anyone.

That means the receiver of email can see the CC recipients except for the BCC recipient. While CSS and BCC can't see the receiver reply.

Which agency was the BBG a part of until September 1999?
O A. United States Information Agency
B.
Voice of America
C. Federal Communications Commission
D. Federal Radio Commission

Answers

Answer:

O A. United States Information Agency

Explanation:

The BBG was the part of the United States Information Agency till 1999. This is the affiliate relations and media training office. And it was headquartered in Washington DC.  Hence, the most appropriate answer out here, and in fact the correct option for this question is A., and which is United States Information Agency.

how to do pseudocode and flowchart in BMI ( computer programming ​

Answers

Answer:

You need to find out what is the units of measurement of the height and weight. You also need to find that the weight is in Kilogram or pounds, and whether the height is in feet and inches, or inches, or meters and centimeters.

Part1: You need to read the values of the weight and height, and validate it as required.

Part2: Now you need to convert those findings into English measures or metrics for computation.

Part3: Output: You need to display as well as echo the input as well as the BMI; and you need to mention the supplementary message which is based on the BMI findings related to Obesity, borderline overweight, normal and overweight, etc.

The program is as below:

import java.io. *;

class Main

{

// weight in pounds and heights are in inches

private double your_wght;

private double your_hght;

Main ( double ht, double wt)

{

your_wght = wt; your_hght = ht;

}

public double GetHght() { return(your_hght); }

public double GetWght() { return(your_wght); }

public double CalculBMI() { return(your_wght*703/(your_hght*your_hght)); }

public double PrintDouble( String promptMessage) throws IOException

{

double Num=0;

String x=null;

Console console = System.console();

System.out.print(promptMessage);  

x = console.readLine();  

Num = Double.parseDouble(x);

return(Num);  

}  

public static void main( String args[])

{

double heightinFeet=0,heightinInch=0,w=0;

Main Input = new Main(0,0);

try

{

System.out.println(" Please input the height(feet/inches) \n");

heightinFeet = Input.PrintDouble(" In feet :> ");

heightinInch = Input.PrintDouble(" In inches :> ");

w = Input.PrintDouble(" Please enter the weight(pounds) :>");

}

catch (IOException ex) { System.out.println("occurred Input Exception"); }  

Main BMI_value = new Main(heightinFeet*12+heightinInch,w);  

System.out.println(" Weight = " + BMI_value.GetWght() );  

System.out.println(" Height(inches) " + BMI_value.GetHght() );

System.out.println(" BMI is " + BMI_value.CalculBMI() );  

}

}

Explanation:

Rest of the fields and properties are self understood, however, PrintMessage needs explanation. It takes a string as input, which calls for entering some double value like in feet, and in inches, and returns that value, which is assigned to relevant double variable. And Main is the class with Main constructor, which is a parameterized constructor, and takes height and weight as input.

Picture an expensive item you’d LOVE to own. What would make you happier: Buying it NOW using credit/taking out a loan? Buying it LATER by saving up and paying cash? Why?

Answers

Answer:Buying Later

Explanation: Buying later would be the better choice because not only will you feel reawrded for working hard to get what you want but you also will not have to o throught the hassle of getting a loan. It may also be cheeper becuae many loans charge interest.

The Picture of what would make me much happier is Buying it later by saving up and paying cash.

Do one save more money paying cash?

Due to research that has been done, a person is likely to spend more when they pay for an item with credit than instead of cash.

With the use of cash on hand, a person is said to be limited in the amount one can spend, and a person will make different choices so as to save money.

Conclusively, By buying it later, one is free from the interest of buying with a loan.

Learn more about buying from

https://brainly.com/question/22054657

Which are emotional effects of anxiety? Check all that apply.
panic
worry
anger
nausea
headache

Answers

The emotional effects of anxiety are:

PanicWorryWhich are emotional effects of anxiety?

The Effects of anxiety on the state of mind of people are:

Tense feeling Nervousness, etc.

Note that The emotional effects of anxiety are Panic and Worry because humans tends to work when they are nervous or have anxiety.

Learn more about anxiety from

https://brainly.com/question/1754863

#SPJ2

Answer:

a, b, c

Explanation:

panic

worry

anger

Type the correct answer in the box. Spell the word correctly.
An online job portal asks you to upload your official photograph for better job matches. Which data type stores images and audio visual clips?
The
data type stores images and audio visual clips.
Reset
Next

Answers

Answer:

i think it is mp4

Explanation:

Final answer:

The data type that stores images and audio-visual clips is known as binary data or BLOB (Binary Large Object), which encodes the information into binary code for storage and processing.

Explanation:

The data type that stores images and audio-visual clips is commonly referred to as binary data or BLOB (Binary Large Object). When you upload your official photograph to an online job portal, the image file is stored in the form of binary data.

This type of data can include various formats like JPEG, PNG, GIF for images, and MP4, AVI for videos. Each format has a different way of encoding the graphical or audio-visual information into binary code that computers can store and process.

Jacobson furniture pseudo-code

Use the following planning chart, create the pseudo-code for the btncalc_click event handling procedure. This procedure should calculate and display the Sales Tax on the Sales Amount and then the Total Due (Sales Amount + Sales Tax). Place the pseudo-code (do not give me Visual Basic statements)

Planning Chart for the Jacobson Furniture application

Purpose: Calculate and display the sales tax and total due amounts.

How?

User-provided

1. Sales amount

Application-provided
1. 5% sales tax
2. Total due
3. Button for ending the application

User will enter in txtSales

BtnCalc_Click will calculate and display in lblTax

BtnCalc_Click will calculate and display in lblTotal

BtnExit_Click will end the application

Please answer this immediately!!!

Answers

Answer:

We need to add four labels Taxable Income, Tax rate, total tax, and Total Due. And in front of them, you can add four textBoxes, or labels or as required.

The Tax rate is 5%.

And

Explanation:

BtnCalc_Click will calculate and display in lblTax

double tax = Convert.ToDouble((textBox1.Text)) * 5/100;

double Roundedtax = Math.Round(tax, 2);

textBox2.Text = Convert.ToString(Roundedtax);

textBox2.Show();

// we can use lblTax instead of textBox2. The further code will be almost change, and we need to use lblTax label instead of textBox2.Text.

BtnCalc_Click will calculate and display in lblTotal

textBox3.Text = Convert.ToString(Convert.ToDouble(textBox1.Text) + Convert.ToDouble(textBox2.Text));

textBox3.Show();

//This is lblTotal or the total Tax. We can use lblTotal label instead of the textBox3.Text.

BtnExit_Click will end the application:

Use this code in this method.

this.Close();

// This closes the application immediately on click on the Exit button.

Why is it important to record audio of silence in the area in which you are filming?

Answers

Answer:

To make sure that there is no other outside/excess noise while you are filming your actual film

Hoped this helped !

Cheers, Z

Answer:

That depends. The answer I would give is so if something does arise, such as a really big noise accompanied by a really big animal, then you'd have more than just video. If a natural disaster occurs, the only way to tell may be through audio.

IN YOUR OWN WORDS, create a new thread and compare and contrast paraphrasing, summarizing, and quoting and how to do each successfully.

Answers

Answer:

Such three ways to include the work of other writers in your own writing differ depending on whether you are close to the source.

Explanation:

Quotations must be the same as the original, using a narrow source segment. We must be word for word on the source document and the original author must be credited.

Paraphrasing means putting your own words into a line from the source material. The original source should also be assigned a paraphrase. Paraphrased material usually is shorter than the original one, which takes and slightly condenses a somewhat broader part of the source.

In summary, you have to put the main idea(s), including only the main point(s), in your own words. Again, summarized ideas must be attributed to the source. Summaries are much shorter than the original and give a broad overview of the source documents.

use the drop-down menus to complete statements about the quick steps function

Answers

Answer:

Quick Steps comes preconfigured, or you can

(✔ create a new one).

Quick Steps creates one-step commands for

(✔ multistep)

processes.

Clicking Create New opens the Manage Quick Steps

(✔ dialog box.)

Explanation:

edg 2021

Answer:

✔ create a new one

✔ multistep

✔ dialog box

Explanation:

hope this helps :)

Where can you place CSS statements in an HTML file?
You can place CSS statements within the
section.

Answers

The CSS statement are usually placed in the head section of our HTML file.

HTML and CSS

HTML is known as hypertext markup language and it is used to structure a web page and its content.

HTML describes the structure of a Web page

CSS is the language we use to style an HTML document. CSS describes how HTML elements should be displayed. CSS describes the colour, text structure, arrangement of our HTML.

The CSS statement are usually placed in the head section of our HTML document.

learn more on HTML/CSS here:https://brainly.com/question/14054531

#SPJ2

what is the relationship between binary and modern technology

Answers

Answer:

Explanation:

Binary numbers are in our technology life, this is because the data in the cellphone, computer, printer, and on the internet are binary numbers, the data is represented in 0 and 1, only that is the binary numbers, people cannot see this numbers in their routines because these numbers are coded, for example, in mp3 or mp4 code, nowadays we hear about 8K resolution and artificial intelligence, and even these technologies are binary numbers.

2.2 Write a program that uses input to prompt a user for their name and then
welcomes them. Note that input will pop up a dialog box. Enter Sarah in the pop-up
box when you are prompted so your output will match the desired output.
Check Code
Reset Code
i
Please correct your code and re-run.
# The code below almost works
WNH
3 name = input("sarah")
4 print("hello sarah").

Answers

Class hello Sarah{
Pubic static void(“hello Sarah”)
Name=input(“hello Sarah”)
Print(“hello Sarah”).

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

Class hello Sarah{

Pubic static void(“hello Sarah”)

Name=input(“hello Sarah”)

Print(“hello Sarah”).

See more about python at brainly.com/question/13437928?

Early electronic computing devices were:
O inexpensive.
o compact and lightweight.
o efficient in operation.
O manpower intensive.
DONE

Answers

Early electronic computing devices were: manpower intensive.

O manpower intensive.

Explanation:

Computing devices are the electronic gadgets that take inputs, process the information sources and afterward compute results from the data sources. Likewise, Early electronic processing gadgets were labor escalated on the grounds that the early PCs were made to figure a lot of number juggling information and count.

Alan Turing's PCs wafer mystery codes. PCs were utilized for reviews and logical assistance as well. Pascal was directed to build up a mini-computer by the arduous arithmetical figurings required by his dad's work as the manager of charges in Rouen, and so forth... So Early electronic registering gadgets were worried as labor concentrated.

Other Questions
What is the main purpose of "Eileen Collins NASA's First Female Shuttle Commander to Lead Next Shuttle Mission"? Convert the value of the following binary numbers to hexadecimal notation. (Note: this question has 2 parts; you must answer each part correctly to receive full marks. Do not include spaces, commas or subscripts in your answer.) a. 11012 = b. 111011102 = The Dunkers are a religious group that moved from Germany to Pennsylvania in the mid-1700s. They do not marry with members outside their own immediate community. Today, the Dunkers are genetically unique and differ in gene frequencies, at many loci, from all other populations including those in their original homeland. Which of the following likely explains the genetic uniqueness of this population?A) population bottleneck and Hardy-Weinberg equilibriumB) heterozygote advantage and stabilizing selectionC) sexual selection and inbreeding depressionD) mutation and natural selectionE) founder effect and genetic drift Empress Wu took control of China after her husband, Emperor Taizong, died. She became known as a ruthless ruler of what dynasty? "Assume the average price of a laptop computer is $775 with a standard deviation of $75. The following data represent the prices of a sample of laptops at an electronics store. Calculate the z-score for each of the following prices" a. $699 b. $949 c. $625 d. $849 e. $999 Sam, whose mass is 79 kg, stands at the top of an 11-m-high, 120-m-long snow-covered slope. His skis have a coefficient of kinetic friction on the snow of 0.07. If he uses his poles to get started, then glides down, what is his speed at the bottom? Factor completely. x22x24 Enter your answer in the box. Beginning about 55 seconds into the video, you'll see an animation of a photographer looking through her camera at a man, a set of trees, and distant mountains. Notice that, as viewed through the camera, the positions of the man and the trees change (relative to distant mountains) as the photographer moves. Which of the following statements correctly describes what is really happening in this situation? For a certain mechanical element the constitutive relation is Y = AV^3, where Y is a system variable, a is a constant, and V is velocity. Give each answer below in terms of V. (a) If Y is the force, i.e. (Y = F), find an expression for the power in the element? (b) If Y is the linear momentum, i.e. (Y = p), find an expression for the energy stored in the element? are you looking for more points?? i will give you 20 What is the scientific definition of energy that relates it to work?the ability to use an applied force to make an object movethe ability to use the stored potential of an objectthe ability to use the change in temperature of an objectthe ability to use the change in direction of an object What type of triangle can a right triangle be? What is the name of a shape with its length, width, and height all equal? Webers law is most closely associated with ____. a.the just noticeable differenceb.the absolute thresholdc.sensory reductiond.sensory deprivation Alice and Tom dive from an overhang into the lake below. Tom simply drops straight down from the edge, but Alice takes a running start and jumps with an initial horizontal velocity of 25 m/s. Neither person experiences any significant air resistance. Just as they reach the lake belowA) the speed of Alice is larger than that of Tom.B) the splashdown speed of Alice is larger than that of Tom.C) they will both have the same speed.D) the speed of Tom will always be 9.8 m/s larger than that of Alice.E) the speed of Alice will always be 25 m/s larger than that of Tom. A man invests his savings in two accounts, one paying 6% and the other paying 10% simple interest per year. He puts twice as much in the lower-yielding account because it is less risky. His annual interest is $3872 dollars. How much did he invest at each rate? Your answer is: Amount invested at 6% equals $ Amount invested at 10% equals $ Experimental participants were primed for a high-performance goal designed to motivate them to perform well on a puzzle-solving task. The experimental participants, however, were not aware of this priming procedure. Control participants were not primed. The results of the puzzle task showed that compared to control participants, experimental participants ________. 6. {THROWBACK!!) A sample of CO2 gas has a volume of 145 Lat STP. How many grams of CO2 are in this sample? From the information available, which of the followingexamples are likely to be good opportunities? (Select fiveanswers.)Savannah notices that there are no dry cleaning shopsin her area, even though there are manybusinesspeople who would use one, so she decides toppen her own.Umiko determines that the startup costs for her ice creamshop idea will be high, and it isn't likely to be profitableLei wants to start a nature tour business because sheloves the outdoors.Caesar decides to start a Web business with very low startupcosts, so it can become profitable quickly.Garrett wants to start a lawn care business, but there arealready a lot of popular lawn care companies in his area.Julian notices that there is a demand for swimming lessons incommunity, but he doesn't like to swim.Onawa knows scarves are currently popular with teenagers at herschool, so when she sees a special type of scarf when she is onvacation in another country, she buys a lot of them and takes themback to sell at her school.Cordell wants to start a face painting business for children'sparties, and he knows many parents in his community who saythey would hire him for their events.Angie loves exotic birds and wants to start a service for trainingthem, but there are not many people with exotic birds in hercommunity Can someone pleaseeee answer this !!!!!!