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
Llana [10]
3 years ago
14

2. Wheel grinders need be equipped with a(n):

Engineering
2 answers:
scZoUnD [109]3 years ago
6 0

Answer:  the wheel guard to protect ur hands and reduce the sparks just a little

Explanation:

timofeeve [1]3 years ago
6 0

Answer:

Machine Guard

Explanation:

To prevent the sparks from hitting you or other things around you that could be potentially flammable or lethal.

You might be interested in
Question 2 (Multiple Choice Worth 3 points)
ololo11 [35]

Answer:

the car to the right

Explanation:

its in the name the RIGHT of way hope it helps good luck

6 0
4 years ago
How much cornfield area would be required if you were to replace all the oil consumed in the United States with ethanol from cor
zaharov [31]

Answer:

2377.35 km

Explanation:

Given the following;

1. A cornfield is 1.5% efficient at converting radiant energy into stored chemical potential energy;

2. The conversion from corn to ethanol is 17% efficient;

3. A 1.2:1 ratio for farm equipment to energy production

4. A 50% growing season and,

5. 200 W/m2 solar insolation.

As per our assumptions,1.2/1 is the ratio for farm equipment to energy production,

So USA need around 45.45% (1/(1+1.2) replacement of fuel energy production which is nearly about = 0.4545*10^{20} J/year = \frac{0.4545*10^{20}}{365*24*3600}=1.44121*10^{12} J/sec

Growing season is only part of year ( Given = 50%),

Net efficiency = 1.5%*17%*50%=0.015*0.17*0.5=0.001275 = 0.1275%

Hence , Actual Energy replacement (Efficiency),

=\frac{1.44121*10^{12}}{0.001275} = 1.13*10^{15} J/sec=1.13*10^{15} W

As per assumption (5),

\because 200 W/m2 solar insolation arequired,

So USA required corn field area = 1.13*10^{15}/200 = 5.65*10^{12} m^{2}

Hence, length of each side of a square,

= (5.65*10^{12} )^{0.5} = 2377.35 km

4 0
4 years ago
Add a capacitor, C2 = 6 pF, in parallel with R3, and a capacitor, C3 = 2 pF in parallel with R4. Use PSpice to plot the magnitud
Ganezh [65]
Tell me why i got this question got it right and now won’t remember but i’ll get back at you when i remember
6 0
4 years ago
What colour is best for radiative heat transfer? a. Black b. Brown c. Blue d. White
GarryVolchara [31]

Answer:

The correct answer is option 'a': Black

Explanation:

As we know that for an object which is black in color it absorbs all the electromagnetic radiation's that are incident on it. Thus if we need to transfer energy to an object by radiation the most suitable color for the process  is black.

In contrast to black color white color is an excellent reflector, reflecting all the incident radiation that may be incident on it hence is the least suitable material for radiative heat transfer.

8 0
3 years ago
The second programming project involves writing a program that accepts an arithmetic expression of unsigned integers in postfix
Tpy6a [65]

Answer:

Explanation:

Note: In case of any queries, just comment in box I would be very happy to assist all your queries

SourceCode:

// MyGUI.java:

// Import packages

import java.awt.FlowLayout;

import java.awt.GridLayout;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

import java.util.EmptyStackException;

import java.util.Stack;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JTextField;

import javax.swing.SwingConstants;

// Declaare and define the class MyGUI

abstract class MyGUI extends JFrame implements ActionListener {

JTextField userInput;

JLabel inputDescLbl, resultLbl;

JPanel inputPanel, resultPanel;

JButton evlBtn;

Stack<Object> stk;

// Define the constructor MyGUI

MyGUI() {

super("Tree Address Generator");

inputPanel = new JPanel(new FlowLayout());

resultPanel = new JPanel(new FlowLayout());

setLayout(new GridLayout(2, 1));

userInput = new JTextField(20);

inputDescLbl = new JLabel("Enter Postfix Expression:");

evlBtn = new JButton("Construct Tree");

evlBtn.addActionListener(this);

resultLbl = new JLabel("Infix Expression:", SwingConstants.LEFT);

add(inputPanel);

add(resultPanel);

inputPanel.add(inputDescLbl);

inputPanel.add(userInput);

inputPanel.add(evlBtn);

resultPanel.add(resultLbl);

stk = new Stack<Object>();

}

}

//Stack.java:

// Declare and define the class Stack

class Stack {

private int[] a;

private int top, m;

public Stack(int max) {

m = max;

a = new int[m];

top = -1; }

public void push(int key) {

a[++top] = key; }

public int pop() {

return (a[top--]); }

}

// Declare and define the class Evaluation()

class Evaluation {

public int calculate(String s) {

int n, r = 0;

n = s.length();

Stack a = new Stack(n);

for (int i = 0; i < n; i++) {

char ch = s.charAt(i);

if (ch >= '0' && ch <= '9')

a.push((int) (ch - '0'));

else if (ch == ' ')

continue;

else {

int x = a.pop();

int y = a.pop();

switch (ch) {

case '+':

r = x + y;

break;

case '-':

r = y - x;

break;

case '*':

r = x * y;

break;

case '/':

r = y / x;

break;

default:

r = 0;

}

a.push(r);

}

}

r = a.pop();

return (r);

}

}

// PostfixToInfix.java:

// Import packages

import java.util.Scanner;

import java.util.Stack;

// Declare and define the class PostfixToInfix

class PostfixToInfix {

// Determine whether the character entered is an operator or not

private boolean isOperator(char c) {

if (c == '+' || c == '-' || c == '*' || c == '/' || c == '^')

return true;

return false;

}

// Declare and define the convert()

public String convert(String postfix) {

Stack<String> s = new Stack<>();

for (int i = 0; i < postfix.length(); i++) {

char c = postfix.charAt(i);

if (isOperator(c)) {

String b = s.pop();

String a = s.pop();

s.push("(" + a + c + b + ")");

} else

s.push("" + c);

}

return s.pop();

}

// Program starts from main()

public static void main(String[] args) {

PostfixToInfix obj = new PostfixToInfix();

Scanner sc = new Scanner(System.in);

// Prompt the user to enter the postfix expression

System.out.print("Postfix : ");

String postfix = sc.next();

// Display the expression in infix expression

System.out.println("Infix : " + obj.convert(postfix));

}

}

Output:

e Console X terminated PostfixTolnfix [Java Application] C:\Program Files\Java\jrel.8.0_121\bin\javaw.exe Postfix : ABD++C-D/ .

3 0
3 years ago
Other questions:
  • The human circulatory system consists of a complex branching pipe network ranging in diameter from
    10·1 answer
  • Question 5 (20 pts) The rated current of a three-phase transmission line is 300 A. The currents flowing by the line are measured
    6·1 answer
  • a. To measure the water current in an ocean, a marker is dropped onto it. Determine if the trajectory traced by the drifting mar
    5·1 answer
  • Two satellites A and B are orbiting the earth around the equator, E, at different altitudes on a circular path of 2400km and 300
    8·1 answer
  • Everyone has only one learning style. True or false? hurry pleasle this exp carees class
    11·1 answer
  • A window‐mounted air‐conditioning unit (AC) removes energy by heat transfer from a room, and rejects energy by heat transfer to
    13·1 answer
  • Could I please get help with this​
    11·1 answer
  • Some of our modern kitchen cookware is made of ceramic materials. (a) List at least three important characteristics required of
    12·1 answer
  • Problem 2
    11·1 answer
  • Technician a s ays a shorted circuit can generate excessive heat. technician b says a shorted circuit will cause the circuit pro
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!