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
Kruka [31]
3 years ago
8

A 5000-lb truck is being used to lift a 1000-lb boulder B that is on a 200-lb pallet A. Knowing that the truck starts from rest

and that the horizontal force between the tires and the ground is 700 lb, determine the velocity of the boulder after the truck has moved forward 6 ft.
Engineering
1 answer:
artcher [175]3 years ago
4 0

Answer:

Explanation:

Total weight being moved = 5000+1000+200

= 6200 lb .

Force applied = 700 lb

= 700 x 32 = 22400 poundal .

acceleration (a) = 22400 / 6200

= 3.613 ft /s²

To know velocity after 6 ft we apply the formula

v² = u² + 2as

v² = 0 + 2 x 3.613 x 6

43.356

v = 6.58 ft/s

You might be interested in
Your manager has asked you to research and recommend a writing guide that examiners in your digital forensics company can use fo
vivado [14]

Answer:

Kindly Check the explanation

Explanation:

Report

A Report is a way to present the forensic examination result in front of judge. A report contains warrants, all affidavits issued for arrest, expenses occur during forensic test and lists of evidence. Apart from evidence a report also contains expert opinions.  

Guidelines  

These are the set of rules and written statement which are used to present the important information in a structured and clear format. The main motive behind to define the guidelines is to achieve standardization in the reports. It also improves the readability of the report.  

Guidelines for report  

Abstract:  

Each report must contain an abstract of the report which gives the brief review about the report. It came at the starting of the report. The main motive behind to give abstract is to give brief about report to someone in a very less time. The size of abstract must not be more than one page.  

Index:  

Each report must contain an index which display's which content is available at which page of report. The content of index must be appropriate and clear so that the reader will not get confuse.

Format of report:

The formatting of report is also one of the essential parts of the guidelines. It makes the report attractive and also due to this reader not gets bored while reading the report. The guidelines regarding layout of report are as follow:  

1. Use time roman font and 12 font size as a default font to explain anything in the report.  

2. The explanation must be justified

3. As possible divide the long paragraph. if possible explain in points.

4. The page must have border on all sides

5. Each pages must have numbering and footer

Rules for grammar:

1. The language of the report must be simple and clear. So that everyone can understand it easily.

2. Avoid repeating same sentence or word again and again.

3. Use active instead of passive voice, in order to give importance to doer.

4. Write expressions between commas.

5. Avoid spelling mistakes in report which also make wrong impact.

6. As possible give heading or subheading to material or explanation which must be accurate.

7. Explain, new or difficult words used in the report.

8. What ever written in the report must be through the point and accurate on bases of fact.

Body of report:

The body of the report referred to as a content written inside the report. In order to write an impressive report, it must include all these things:

1. Avoid use of hypothetical question, if still hypothetical question arises it must be bases on factual evidence.  

2. Add all the affidavits and warrants in the report issued for search and arrest.

3. The cost money expenses while solving the case.

4. The expert opinion which must be bases on knowledge or previously declare case results.

5. The list of people and evidence which are collected and interrogative during the investigation.

6. If investigation is further going on than write the area in which the investigation further goes on and also mention when the investigation get complete.  

Forensic software used:  

A short must be given about the software used in the investigation. The result generated by the software must also be pasted in that report. It is more good if attach the snap shot of the result. Add any previous case result in which the same software result is taken as evidence, in order to justify that the result generated by the software is true. Some of forensic softwares are FTK, ProDiscover, Hexworkshop. The result of these softwares must be heighted so that everyone can notice it.  

Conclusion:  

The conclusion must be given at the end of report to tell according him what result came after investigation. In conclusion also write on which basis the result concludes. There must be strong behind the conclusion.  

References:  

In Reference write all the cases, thesis, books which an investigator followed to solve the current case. In addition if they referred any internet article. They can also write the website name where  that article lies. In short can say that write everything where they got an idea which is helpful in solving the case.

 

8 0
3 years ago
For a bronze alloy, the stress at which plastic deformation begins is 266 MPa and the modulus of elasticity is105 GPa.
pentagon [3]

Answer:

88750 N

Explanation:

given data:

plastic deformation σy=266 MPa=266*10^6 N/m^2

cross-sectional area Ao=333 mm^2=333*10^-6 m^2

solution:

To determine the maximum load that can be applied without

plastic deformation (Fy).

Fy=σy*Ao

   =88750 N

7 0
3 years ago
Select the correct text in the passage.
sineoko [7]
It is habahi Yw with yuuuuuy I am a little more confused about
5 0
3 years ago
Read 2 more answers
Integer to Float Conversion All labs must be done during lab time. Each labs worth 10 points The lab can be hand in next day wit
andrew-mc [135]

Answer:

Code explained below

Explanation:

.data

msg1: .asciiz "Please input a temperature in celsius: "

msg2: .asciiz "The temperature in Fahrenheit is: => "

num: .float 0.0

.text

main:

#print the msg1

li $v0, 4

la $a0, msg1

syscall

#read the float value from user

li $v0,6 #read float syscall value is $v0

syscall #read value stored in $f0

#formula for celsius to fahrenheit is

#(temperature(C)* 9/5)+32

#li.s means load immediate float

#copy value 9.0 to $f2

li.s $f2,9.0  

#copy value 5.0 to $f3

li.s $f3,5.0

# following instructions performs: 9/5

#div.s - division of two float numbers

#divide $f2 and f3.Result will stores in $f1

div.s $f1,$f2,$f3

#following instruction performs: temperature(C) * (9/5)

#multiple $f1 and $f0.Result stored in $f1

mul.s $f1,$f1,$f0

#copy value 32 to $f4

li.s $f4,32.0

#following instruction performs: (temperature(C) * (9/5))+32

#add $f1 and $f4.Result stores in $f1

add.s $f1,$f1,$f4

#store float from $f1 to num

s.s $f1,num

#print the msg2

li $v0, 4 #print string syscall value is 4

la $a0, msg2 #copy address of msg2 to $a0

#print the float

syscall

li $v0,2 #print float syscall value is 2

l.s $f12,num #load value in num to $f12

syscall

#terminate the program

li $v0, 10 #terminate the program syscall value is 10

syscall

4 0
3 years ago
Salvage ethnography is the effort to ensure that ethnography remains an important part of anthropology. recording of linguistic
fenix001 [56]

Answer:

                D

Explanation:

                            D

6 0
3 years ago
Other questions:
  • ¿Por qué creen que la Ingeniería Metalúrgica es una carrera estratégica para el desarrollo de nuestro país?
    9·1 answer
  • To test the effects of a new fertilizer, 100 plots were divided in half. Fertilizer A is randomly applied to one half, and B to
    13·2 answers
  • According to OSHA standards, the air in the building that John works in is unsafe. The type of regulation that OSHA engages in i
    8·2 answers
  • What is the angular velocity (in rad/s) of a body rotating at N r.p.m.?
    13·1 answer
  • Can you screen record on WOW Presents Plus on iPhone?
    12·1 answer
  • Technician A says that acid core solder should be used whenever aluminum wires are to be soldered.
    14·1 answer
  • Consider a single crystal of some hypothetical metal that has the FCC crystal structure and is oriented such that a tensile stre
    7·1 answer
  • Example 12: Write an algorithm and draw a flowchart to calculate
    12·1 answer
  • GOOD AFTERNOON GUYSS!! ​
    15·2 answers
  • Concerning the storage battery, what category of the primary sources is voltage produced?​
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!