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
Lunna [17]
3 years ago
7

Hand tools and power tools should be cleaned and stored in the same manner. A) True B) False

Engineering
1 answer:
Serhud [2]3 years ago
4 0

Answer:

False

Explanation:

You might be interested in
What do you think the top TWO game elements are that directly contribute to player immersion?
fredd [130]
Sound (like music and background sound) and detail. The music and background sound is what sets the mood for the game. In horror games, the sound is sometimes uneasy to make the player feel anxious, and when something chases you the music turns into fast-pace and making the player scared and feel that adrenaline. The detail also is a great factor. The more realistic a game is, the more it feels like real life and determines if the player will get a real reaction from the game.
6 0
3 years ago
The two boxcars A and B have a weight of 20000lb and 30000lb respectively. If they coast freely down the incline when the brakes
kolbaska11 [484]

Answer:

T=5.98 kips

Explanation:

First, introduce forces, acting on both cars:

on car A there are 4 forces acting: gravity force mA*g, normal reaction force, friction force and force T- it represents the interaction between cars A and B. On car B, there are three forces acting: gravity force, normal reaction force and force T. Note, that force T is acting on both cars, but it has opposite direction. Force T, acting on car A has direction, opposite to the friction force, whether the T, acting on B, is directed backwards- in the same direction with the friction force. Note, that both cars have the same acceleration, which is directed backwards.

Once the forces were established, we can write components of the Second Newtons Law on vertical and horizontal axes, considering that horizontal axis is directed backwards- in the same direction with the acceleration:

For car A on the vertical axis the equation is: -mAg+NA=0

For car A on the horizontal axis, the equation is: Ffr-T=mAa

For car B, on the vertical axis the equation is: -mBg+NB=0

For car B, on the horizontal axis, the equation is: T=mBa

We need to solve these equations to find force T, knowing that Ffr=μmAg, where

After the transformations, the equations for acceleration and force in the coupling will be:

a=(μmAg)/(mA+mB)=6.43 ft/s2- note, that the given answer is not correct for the given numerical values;

and force T: T=μmAmBg/(mA+mB)=6.0 kips- note, that the force answer is in line with the given numerical value

5 0
4 years ago
A reversible refrigeration cycle operates between cold and hot reservoirs at temperatures TC and TH, respectively. (a) If the co
podryga [215]

Answer:

a) T_{H} = 1.967\,^{\circ}F, b) COP_{R} = 9.105, c) T_{H} = 115.934\,^{\circ}F, d) COP_{R} = 6.995, e) T_{H} = 25.129\,^{\circ}C

Explanation:

a) The coefficient of performance of the reversible refrigeration cycle is:

COP_{R} = \frac{T_{C}}{T_{H}-T_{C}}

10 = \frac{419.67\,R}{T_{H}-419.67\,R}

The temperature of the hot reservoir is:

10\cdot T_{H} - 4196.7 = 419.67

T_{H} = 461.637\,R

T_{H} = 1.967\,^{\circ}F

b) The coefficient of performance is:

COP_{R} = \frac{273.15\,K}{303.15\,K-273.15\,K}

COP_{R} = 9.105

c) The temperature of the hot reservoir can be determined with the help of the following relation:

\frac{Q_{C}}{Q_{H}-Q_{C}} = \frac{T_{C}}{T_{H}-T_{C}}

\frac{500\,BTU}{600\,BTU-500\,BTU} = \frac{479.67\,R}{T_{H}-479.67\,R}

5 = \frac{479.67\,R}{T_{H}-479.67\,R}

5\cdot T_{H} - 2398.35 = 479.67

T_{H} = 575.604\,R

T_{H} = 115.934\,^{\circ}F

d) The coefficient of performance is:

COP_{R} = \frac{489.67\,R}{559.67\,R-489.67\,R}

COP_{R} = 6.995

e) The temperature of the cold reservoir is:

8.9 = \frac{268.15\,K}{T_{H}-268.15\,K}

8.9\cdot T_{H} - 2386.535 = 268.15

T_{H} = 298.279\,K

T_{H} = 25.129\,^{\circ}C

8 0
3 years ago
The crash rate per mile is.
Colt1911 [192]

Answer:

75 percent

Explanation:

8 0
3 years ago
JAVA HADOOP MAPREDUCE
taurus [48]

Answer:

Explanation:

package PackageDemo;

import java.io.IOException;

import org.apache.hadoop.conf.Configuration;

import org.apache.hadoop.fs.Path;

import org.apache.hadoop.io.IntWritable;

import org.apache.hadoop.io.LongWritable;

import org.apache.hadoop.io.Text;

import org.apache.hadoop.mapreduce.Job;

import org.apache.hadoop.mapreduce.Mapper;

import org.apache.hadoop.mapreduce.Reducer;

import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;

import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

import org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {

public static void main(String [] args) throws Exception

{

Configuration c=new Configuration();

String[] files=new GenericOptionsParser(c,args).getRemainingArgs();

Path input=new Path(files[0]);

Path output=new Path(files[1]);

Job j=new Job(c,"wordcount");

j.setJarByClass(WordCount.class);

j.setMapperClass(MapForWordCount.class);

j.setReducerClass(ReduceForWordCount.class);

j.setOutputKeyClass(Text.class);

j.setOutputValueClass(IntWritable.class);

FileInputFormat.addInputPath(j, input);

FileOutputFormat.setOutputPath(j, output);

System.exit(j.waitForCompletion(true)?0:1);

}

public static class MapForWordCount extends Mapper<LongWritable, Text, Text, IntWritable>{

public void map(LongWritable key, Text value, Context con) throws IOException, InterruptedException

{

String line = value.toString();

String[] words=line.split(",");

for(String word: words )

{

Text outputKey = new Text(word.toUpperCase().trim());

IntWritable outputValue = new IntWritable(1);

con.write(outputKey, outputValue);

}

}

}

public static class ReduceForWordCount extends Reducer<Text, IntWritable, Text, IntWritable>

{

public void reduce(Text word, Iterable<IntWritable> values, Context con) throws IOException, InterruptedException

{

int sum = 0;

for(IntWritable value : values)

{

sum += value.get();

}

con.write(word, new IntWritable(sum));

}

}

}

3 0
3 years ago
Other questions:
  • Air as an ideal gas in a closed system undergoes a reversible process between temperatures of 1000 K and 400 K. The beginning pr
    9·1 answer
  • Give an example of one technology that is well matched to the needs of the environment, and one technology that is not.
    9·1 answer
  • The engine of a 2000kg car has a power rating of 75kW. How long would it take (seconds) to accelerate from rest to 100 km/hr at
    10·1 answer
  • Create a C language program that can be used to construct any arbitrary Deterministic Finite Automaton corresponding to the FDA
    6·1 answer
  • A drainage ditch alongside a highway with a 3% grade has a rectangular cross-section of depth 4 ft and width 8 ft, and is fully
    12·1 answer
  • Can you carry 1 m3 of liquid water? Why or why not? (provide the weight to support your answer)
    7·1 answer
  • How can goal setting help with academic performance?
    13·1 answer
  • When you come to an intersection, follow the _________ before you proceed.
    6·2 answers
  • Why the power factor is Low in no load test in induction motor ?​
    13·1 answer
  • Describe how to mix and apply body filler?
    13·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!