1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
wlad13 [49]
1 year ago
15

Write l for law of enrtia,ll for law of Acceleration and lll for law of enteraction.

Computers and Technology
1 answer:
fenix001 [56]1 year ago
3 0

{ \qquad\qquad\huge\underline{{\sf Answer}}}

<h3><u>Statement</u> 1 : ll</h3>

Empty grocery cart runs faster than the loaded one.

<u>By Newton's second law</u> ( law of Acceleration ) :

\qquad \sf  \dashrightarrow \: F = ma

If the mass is less, less force will be exerted to move it. hence empty cart runs faster than full cart as it requires more force.

<h3><u>Statement</u> 2 : l</h3>

Using Seatbelt to hold your body from leaning forward when a car you are riding suddenly stops.

<u>By Newton's first law</u> ( law of inertia ) :

" An object has tendency to resist change in its state until any external unbalanced force is applied on it. "

So, while driving our state is in motion, and when we apply brake, it's change of state from motion to rest, hence by law of inertia, our body still keep up in motion, that makes us to lean forward.

<h3><u>Statement</u> 3 : lll</h3>

While rowing a boat,paddling will cause the bat to moved forward.

<u>By Newton's third law</u> ( law of enteraction ) :

" Every action has an equal and opposite reaction "

when we paddle, we push (apply force on) the water backwards, and hence water exerts a force on us in forward direction that let us move accordingly in water.

<h3><u>Statement 4</u> : ll</h3>

A biker slightly presses the brake as his bike travels down on a slope.

<u>By Newton's second law</u> ( law of Acceleration ) :

\qquad \sf  \dashrightarrow \: F = ma

A biker applies brake when it's a slope, because it's acceleration increases significantly when it goes down the slope and to maintain the speed he applies a brake to slow down. ( increase in Acceleration causes bike to move fast, as more force is exerted )

<h3><u>Statement 5</u> : ll</h3>

lt is easier for you to move a box with relief goods when helped by friends than moving it all by yourself.

<u>By Newton's second law</u> ( law of Acceleration ) :

\qquad \sf  \dashrightarrow \: F = ma

By the given formula we can clearly conclude that, to move a bulky object ( having heavy mass ), greater force is required, so we call for help as we can easily increase the force when there's more than one person pushing it.

<h3><u>Statement 6</u> : ll</h3>

A toy truck with loads runs slower compared to a toy truck with empty loads when you pushed them at the same time.

By Newton's second law ( law of Acceleration ) :

\qquad \sf  \dashrightarrow \: F = ma

If same force is exerted on heavy and light object, Acceleration of that of lighter body will be more than that of bulky body, so.. the truck with load on it has more mass than truck with no load, hence truck with load moves slower.

<h3><u>Statement 7</u> : l</h3>

A kid catches a flying boomerang and stopping its motion.

<h3 />

<u>By Newton's first law</u> ( law of inertia ) :

" An object has tendency to resist change in its state until any external unbalanced force is applied on it. "

When the kid catches the boomerang it was in motion, so it resists to come at rest, Therefore we need to apply a force and with time it comes to rest.

<h3><u>Statement 8</u> : lll</h3>

Your hand hurts when you punch someone hard.

<u>By Newton's third law</u> ( law of enteraction ) :

" Every action has an equal and opposite reaction "

As we hit something hard, it feels painful because when we apply force on that hard object it applies the same force on our palm that results in pain.

<h3><u>Statement </u>9 : lll</h3>

Rocket propulsion or when rocket lifts off from a shuttle System.

<u>By Newton's third law</u> ( law of enteraction ) :

" Every action has an equal and opposite reaction "

In order to go up in the sky, one rocket applies a force download by the process of propulsion and hence by Newton's third law, a force of same magnitude is applied on it that cause Rocket to lift up.

<h3>Statement 10 : ll</h3>

A cart at rest start moving once someone pushes it forward.

<u>By Newton's second law</u> ( law of Acceleration ) :

\qquad \sf  \dashrightarrow \: F = ma

Acceleration in a body is caused by force acting on it, so to move a car ( Accelerate ) we push it forward ( apply force ).

You might be interested in
Which option ensures that a page break is automatically inserted ahead of a specific paragraph or heading?
gulaghasi [49]

The correct answer is option D, the last one! <3

6 0
3 years ago
Read 2 more answers
The choice of database does not have any impact on the relevancy of search results?
Nookie1986 [14]

Answer:

When searching for articles using library databases, the following tips should increase the relevance of your results. Quotation marks around two or more keywords - phrase searching - ensures that the results will include the exact phrase.

Explanation:

8 0
2 years ago
Visual Basics: 1 ) Write an if/else statement that compares the double variable pH with 7.0 and makes the following assignments
Lemur [1.5K]

Answer:

visual basic: 1)

Module PHmodule

   Sub Main()

       'Creating a variable for each entity

       dim ph as double = 0.0, neutral,base,acid as boolean

       'Writing a line to show user what to do

       console.writeline("Enter the pH :")

       'Taking the value

       ph=console.readline()

       'using if & elseif statement for distingushing the values into correct catagories

       if ph<7.0 then

       neutral=false:base=false:acid=true

       elseif ph>7.0 then  

       neutral=false:base=true:acid=false

       elseif ph=7.0 then

       neutral=true:base=false:acid=false

       end if

       'Printing the result

       console.writeline(" Neutral :" & Neutral)

       console.writeline(" base :" & base)

       console.writeline(" acid :" & acid)

       'command for staying in the command prompt for reading the result

       console.readline()

   End Sub

End Module

visual basic: 2)

Module AGEmodule()

  Sub Main()

       'Creating a variable for each entity

       dim age,minors,adults,seniors as integer = 0

       'Taking age from user

       console.writeline("Enter the age")

       age=console.readline()

       'using if & elseif statement for checking the age differnce

       if age<18 then'

       minors +=1

       else if age>18 and age<64 then

       adults +=1

       else if age>64 then  

       seniors +=1

       end if

       'printing result

       console.writeline("minors="&minors)

       console.writeline("adults="&adults)

       console.writeline("seniors="&seniors)

       'command for reading the result  

       console.readline()

  End Sub

End Module

Explanation:

visual basic 1) it is very simple program which allow us to find if the substance is acidic, basic or neutral. we use sim statement for making a variable as double (gives value in decimal) which allow to take a value from the user through console.readline() command and then by using the if statement we apply the condition if the ph is less then, greator then or equal to 7.0 value. thus the program gives us the answer. console.writeline() command is used to print a command on the screen while console.readline() command let us read the lines until we press enter.

visual basic 2)a program which allow us to count and add number of persons according to their age. we use dim statement for creating the variable as integers in which we take the age from user and then after checking it through if statement we increment according to three categories i.e. minors, adults, seniors. the console.writeline() command allow us to print anything on screen and console.readline() allowus to take value while compiling.

thank you...

6 0
3 years ago
Formulas should follow the___
tatuchka [14]

Answer:

Order of operations

Explanation:

4 0
3 years ago
A good website design combines which of the following elements? (select all that apply) powerful web server hardware components
Anarel [89]

Sounds like it'd be all of the above.


7 0
3 years ago
Read 2 more answers
Other questions:
  • System Architecture: Describe the system architecture. Specifically, be sure to address the corporate organization and culture,
    10·1 answer
  • ***Help ***Which Paste Command is used to insert a new linked Excel worksheet into a PowerPoint presentation? A. Embed B. Use De
    7·1 answer
  • When was internet started in which year​
    13·2 answers
  • . Each ____ on a menu performs a specific action.
    14·1 answer
  • Science Help
    11·1 answer
  • 9. Select the correct answer.
    6·1 answer
  • Edhesive 3.4 practice 1
    9·1 answer
  • What is a field on a table
    13·1 answer
  • If the fluid level in a battery is below the separators<br> should be added but never add
    5·1 answer
  • Risk taker positive or negative​
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!