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

How do we find percentage error in measuring voltage across a resistor​

Engineering
2 answers:
Black_prince [1.1K]3 years ago
6 0

Answer:

  use the percentage error relation

Explanation:

The percentage error in anything is computed from ...

  %error = ((measured value)/(accurate value) -1) × 100%

__

The difficulty with voltage measurements is that the "accurate value" may be hard to determine. It can be computed from the nominal values of circuit components, but there is no guarantee that the components actually have those values.

Likewise, the measuring device may have errors. It may or may not be calibrated against some standard, but even measurement standards have some range of possible error.

maksim [4K]3 years ago
3 0

Answer:

use the percentage error relation

You might be interested in
1.0•10^-10 standard form
Drupady [299]

Answer:

1.0 * 10^{-10} = 0.0000000001

Explanation:

Given

1.0 * 10^{-10}

Required

Convert to standard form

1.0 * 10^{-10}

From laws of indices

a^{-x} = \frac{1}{a^x}

So, 1.0 * 10^{-10} is equivalent to

1.0 * 10^{-10} = 1.0 * \frac{1}{10^{10}}

1.0 * 10^{-10} = 1.0 * \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}

1.0 * 10^{-10} = 1.0 * \frac{1}{10000000000}

1.0 * 10^{-10} = 1.0 * 0.0000000001

1.0 * 10^{-10} = 0.0000000001

Hence, the standard form of 1.0 * 10^{-10} is 0.0000000001

3 0
3 years ago
Which of the following are considered software piracy? Check all of the boxes that apply.
Serga [27]

Answer:

The answer is copying a program to give to someone else to use

and burning a copy of a DVD to sell

Explanation:

Software piracy is the act of stealing software that is legally protected. This stealing includes copying, distributing, modifying or selling

7 0
3 years ago
What are the benefits of using the engineering design process? combining scientific knowledge and creativity in a rigid and stru
Trava [24]

Answer:

combining scientific knowledge, careful reasoning, and artistic invention in a flexible approach to problem-solving

Explanation:

7 0
3 years ago
Water vapor at 1.0 MPa, 300°C enters a turbine operating at steady state and expands to 15 kPa. The work developed by the turbin
Andre45 [30]

Answer:

a) isentropic efficiency = 84.905%

b) rate of entropy generation = .341 kj/(kg.k)

Please kindly see explaination and attachment.

Explanation:

a) isentropic efficiency = 84.905%

b) rate of entropy generation = .341 kj/(kg.k)

The Isentropic efficiency of a turbine is a comparison of the actual power output with the Isentropic case.

Entropy can be defined as the thermodynamic quantity representing the unavailability of a system's thermal energy for conversion into mechanical work, often interpreted as the degree of disorder or randomness in the system.

Please refer to attachment for step by step solution of the question.

5 0
3 years ago
This assignment is designed to test your understanding of graphical user interface components and Event Driven programming in Ja
lys-0071 [83]

Answer:

Java program is given below

Explanation:

JavaPadGUI.java

package javapad.gui;

import java.awt.BorderLayout;

import java.awt.Container;

import java.awt.Dimension;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.PrintWriter;

import java.util.Scanner;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JScrollPane;

import javax.swing.JTextArea;

public class JavaPadGUI extends JFrame implements ActionListener{

  //constants

  private static final String TITLE = "Macrosoft JavaPad XP";

  private static final String SLOGAN = "Macrosoft: Resistance is futile";

 

  //button names

  private static final String NEW = "New";

  private static final String LOAD = "Load";

  private static final String SAVE = "Save";

  private static final String QUIT = "Quit";

 

  private static final String FILENAME = "hardcode.txt";

  //messages

 

  private static final String QUIT_MSG = "Quitting, Save?";

  private static final String LOAD_ERR = "Could not access file " + FILENAME;

 

 

  //fields

  private JTextArea txtContent;

  private JButton butNew, butLoad, butSave, butQuit;

 

  public JavaPadGUI()

  {

      super(TITLE);

      createUI();

      setSize(new Dimension(400, 300));

      setDefaultCloseOperation(EXIT_ON_CLOSE);

         

  }

 

  private void createUI()

  {

      Container c = getContentPane();

      c.setLayout(new BorderLayout(30,30));

     

      //create the buttons panel

      JPanel butPanel = new JPanel();

      butPanel.add(butNew = new JButton(NEW));

      butPanel.add(butLoad = new JButton(LOAD));

      butPanel.add(butSave = new JButton(SAVE));

      butPanel.add(butQuit = new JButton(QUIT));

     

      //set command names for the buttons, these will be when button is clicked

      butNew.setActionCommand(NEW);

      butLoad.setActionCommand(LOAD);

      butSave.setActionCommand(SAVE);

      butQuit.setActionCommand(QUIT);

     

      JPanel sloganPanel = new JPanel();

      sloganPanel.add(new JLabel(SLOGAN));

     

      //create textarea with scrollbar

      txtContent = new JTextArea(15, 25);

      txtContent.setLineWrap(true);

         

      JScrollPane scroll = new JScrollPane(txtContent);

     

      //now add all components

      c.add(butPanel, BorderLayout.NORTH);

      c.add(scroll, BorderLayout.CENTER);

      c.add(sloganPanel, BorderLayout.SOUTH);

     

     

      //set the actionlistner to buttons to handle button click event

      butNew.addActionListener(this);

      butLoad.addActionListener(this);

      butSave.addActionListener(this);

      butQuit.addActionListener(this);

     

  }

  public void actionPerformed(ActionEvent e)

  {

      String cmd = e.getActionCommand();

      if(cmd.equals(NEW))

          txtContent.setText("");

      else if (cmd.equals(LOAD))

          load();

      else if(cmd.equals(SAVE))

          save();

      else if (cmd.equals(QUIT))

          quit();

  }

  private void quit()

  {

      int option = JOptionPane.showConfirmDialog(this, QUIT_MSG);

      if(option == JOptionPane.YES_OPTION)

      {

          save();

      }

     

      System.exit(0);

  }

 

  private void save()

  {

      try {

          PrintWriter w = new PrintWriter(new File(FILENAME));

          w.write(txtContent.getText());

          w.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this,"I/O Error", LOAD_ERR, JOptionPane.ERROR_MESSAGE);

      }

             

  }

  private void load()

  {

      try {

          Scanner s = new Scanner(new File(FILENAME));

          String str = "";

          while(s.hasNextLine())

              str += s.nextLine();

          txtContent.setText(str);

          s.close();

      } catch (FileNotFoundException e) {

          JOptionPane.showMessageDialog(this, LOAD_ERR, "I/O Error",JOptionPane.ERROR_MESSAGE);

      }

     

  }

}

RunJavaPad.java

package javapad;

import javapad.gui.JavaPadGUI;

public class RunJavaPad {

  public static void main(String[] args) {

      JavaPadGUI gui = new JavaPadGUI();

      gui.setVisible(true);

  }

}

7 0
3 years ago
Other questions:
  • A curve with 0.3 m constant radius contains a bead that is moving on it such that its rotational velocity is 3t2 sec-1. If the b
    12·1 answer
  • Firefighters are holding a nozzle at the end of a hose while trying to extinguish a fire. The nozzle exit diameter is 8 cm, and
    9·1 answer
  • A hollow, spherical shell with mass 2.00kg rolls without slipping down a slope angled at 38.0?.
    15·1 answer
  • A 0.50 m3 drum was filled with 0.49 m3 of liquid water at 25oC and the remaining volume was water vapor without any air. The dru
    15·1 answer
  • HELP PLS
    7·1 answer
  • Which one of the following is not an economic want?
    6·1 answer
  • Click this link to view O*NET’s Work Context section for Loading Machine Operators. Note that common contexts are listed toward
    10·1 answer
  • What is the definition of insert view and why do we use it
    10·1 answer
  • Task Three :Write a C++ program to read temperature
    15·1 answer
  • 10. What refrigerant is no longer manufactured in the<br> United States?
    5·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!