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
Neporo4naja [7]
3 years ago
11

Plz help If an item is $13.00 for a case of 24, then it is $

Engineering
2 answers:
Leya [2.2K]3 years ago
8 0
The answer is .54 divide 13 by 24
Drupady [299]3 years ago
7 0

Answer:

$0.54

Explanation:

13/24=0.54

You might be interested in
Cavitation usually occurs because:
IgorLugansk [536]

Answer:

B) the liquid accelerated to high velocities.

<em>I</em><em> </em><em>hope</em><em> </em><em>this helps</em><em> </em>

3 0
3 years ago
The current entering the positive terminal of a device is i(t)= 6e^-2t mA and the voltage across the device is v(t)= 10di/dtV.
liberstina [14]

Answer:

a) 2,945 mC

b) P(t) = -720*e^(-4t) uW

c) -180 uJ

Explanation:

Given:

                           i (t) = 6*e^(-2*t)

                           v (t) = 10*di / dt

Find:

( a) Find the charge delivered to the device between t=0 and t=2 s.

( b) Calculate the power absorbed.

( c) Determine the energy absorbed in 3 s.

Solution:

-  The amount of charge Q delivered can be determined by:                      

                                       dQ = i(t) . dt

                  Q = \int\limits^2_0 {i(t)} \, dt = \int\limits^2_0 {6*e^(-2t)} \, dt = 6*\int\limits^2_0 {e^(-2t)} \, dt

- Integrate and evaluate the on the interval:

                   = 6 * (-0.5)*e^-2t = - 3*( 1 / e^4 - 1) = 2.945 C

- The power can be calculated by using v(t) and i(t) as follows:

                 v(t) = 10* di / dt = 10*d(6*e^(-2*t)) /dt

                 v(t) = 10*(-12*e^(-2*t)) = -120*e^-2*t mV

                 P(t) = v(t)*i(t) = (-120*e^-2*t) * 6*e^(-2*t)

                 P(t) = -720*e^(-4t) uW

- The amount of energy W absorbed can be evaluated using P(t) as follows:

                 W = \int\limits^3_0 {P(t)} \, dt = \int\limits^2_0 {-720*e^(-4t)} \, dt = -720*\int\limits^2_0 {e^(-4t)} \, dt

- Integrate and evaluate the on the interval:

                  W = -180*e^-4t = - 180*( 1 / e^12 - 1) = -180uJ

6 0
4 years ago
soccer is also called association football" A soccer ball is a sphere, with circumference of 70 centimeters. in developing a new
timama [110]

Answer: Weight on Mars = 0.02593N

Explanation:

Given; Circumference C of Sphere = 70cm = 0.7m,

Specific Gravity S. G. of material = 1.21,

acceleration due to gravity in the Mars gm = 3.7m/s^2

We know that Weight W = mass m × acceleration due to gravity.

Let the Weight in on the Mars be Wm.

Wm = m × gm

Since we are given gm, we need to calculate for m. (Note that mass m is the same everywhere)

But mass = specific gravity × volume

Since we know the specific gravity, let's go ahead to calculate for the volume of the ball.

We know that Volume of a Sphere V = (4/3)πr^3

To get r, we know that C = 2πr

Therefore, r = C/(2π) = 0.7/(2π) = (7/10)/2π = 7/20π (in meters)

V = (4/3)*π×(7/20π)^3 = 343/6000π^2 (in meter^3)

m = 343/6000π^2 × 1.21 = 7.01×10^(-3)kg

Wm = 7.01×10^(-3) × 3.7 = 0.02593N

8 0
3 years ago
Time management is a learned behavior.<br> True<br> False
larisa [96]

Answer:

true

Explanation:

3 0
3 years ago
Read 2 more answers
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:
  • LUNES MARTES MIÉRCOLES JUEVES VIERNES SÁBADO DOMINGO
    10·1 answer
  • A process involves the removal of oil and other liquid contaminants from metal parts using a heat-treat oven, which has a volume
    10·1 answer
  • What’s a pnp transitor?
    5·2 answers
  • Give four effects of water hammer.​
    6·1 answer
  • In fully developed laminar flow in a circular pipe the velocity at R/2 (mid-way between the wall surface and the centerline) is
    10·2 answers
  • Two kilograms of air in a piston-cylinder assembly undergoes an isothermal
    11·1 answer
  • (1) Estimate the specific volume in cm3 /g for carbon dioxide at 310 K and (a) 8 bar (b) 75 bar by the virial equation and compa
    10·1 answer
  • What can you add to a seatbelt ??<br> HELP ASAP
    15·1 answer
  • one number is 11 more than another number. find the two number if three times the larger number exceeds four times the smaller n
    14·1 answer
  • What do u mean by double entry bookkeeping system?<br>u fellas don't spam pls​
    12·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!