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

Volume of sale (i.e., the number of parts sold) is a factorwhen determining which

Engineering
1 answer:
nadya68 [22]3 years ago
3 0

Answer: N has to be lesser than or equal to 1666.

Explanation:

Cost of parts N in FPGA = $15N

Cost of parts N in gate array = $3N + $20000

Cost of parts N in standard cell = $1N + $100000

So,

15N < 3N + 20000 lets say this is equation 1

(cost of FPGA lesser than that of gate array)

 Also. 15N < 1N + 100000  lets say this is equation 2  

(cost of FPGA lesser than that of standardcell)

Now

From equation 1

12N < 20000

N < 1666.67

From equation 2

14N < 100000

N < 7142.85

AT the same time, Both conditions must hold true

So N <= 1666 (Since N has to be an integer)

N has to be lesser than or equal to 1666.

You might be interested in
To increase the thermal efficiency of a reversible power cycle operating between thermal reservoirs at TH and Tc, would you incr
alukav5142 [94]

<u></u>\ T_{c} has greater effect.

<u>Explanation</u>:

\eta_{\max }=1-\frac{T_{c}}{T_{A}}

T_{c}\\ = Temperature of cold reservoir

T_{H} = Temperature of hot reservoir

when T_{c} is decreased by 't',

$\eta_{\text {incre }}$ = 1-\frac{\left(\tau_{c}-t\right)}{T_{H}}

=n \ + \frac{t}{T_{n}}      -(i)

when {T_{H}} is increased by 'T'

\eta_{i n c}=\frac{n+\frac{t}{T_{H}}}{\left(1+\frac{k}{T_{H}}\right)}-(ii)

\eta_{\text {incre }} \ T_{c}>\eta_{\text {incre }} T_{\text {H }}

7 0
3 years ago
A water pump delivers 3 hp of shaft power when operating. If the pressure differential between the outlet and the inlet of the p
Natali [406]

Answer:

Mechanical Efficiency =  83.51%

Explanation:

Given Data:

Pressure difference = ΔP=1.2 Psi

Flow rate = V=8ft^3/s\\

Power of Pump = 3 hp

Required:

Mechanical Efficiency

Solution:

We will first bring the change the units of given data into SI units.

P=1.2*6.895 = 8.274KPa\\V=8*0.00283=0.226 m^3/s\\P=3*0.746=2.238KW

Now we will find the change in energy.

Since it is mentioned in the statement that change in elevation (potential energy) and change in velocity (Kinetic Energy) are negligible.

Thus change in energy is

=(Mass * change in P)/density\\= \frac{M*P}{p}\\\\

As we know that Mass = Volume x density

substituting the value

Energy = Volume * density x ΔP / density

Change in energy = Volumetric flow x ΔP

Change in energy = 0.226 x 8.274 = 1.869 KW

Now mechanical efficiency = change in energy / work done by shaft

Efficiency = 1.869 / 2.238

Efficiency = 0.8351 = 83.51%

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
- You have a bin wrench turning a 1/2 13 UNC bolt. You overcome 1200 lbs of resistance when you
andrew11 [14]

Fr

is my guess but yeah

6 0
3 years ago
technician a says that dynamic voltage is the voltage (usually of a battery) that exists without a load being applied. technicia
Artist 52 [7]

The battery electrolyte's specific gravity can be used to test the status of charge of a battery cell in the most precise and direct manner possible.

The state of charge increases with the specific gravity of the electrolyte. Voltage is the difference in electric potential between a battery's two terminals. The unit of measurement for voltage is called a volt (V), after the battery's creator, John Volta. An electronic tool called a state-of-charge battery tester is made to check the life and rechargability of an electric battery. A battery's current charging status and voltage output can be provided by a state-of-charge tester, which can also look for any defects that might impair the battery's overall performance.

Learn more about battery here-

brainly.com/question/17377812

#SPJ4

8 0
1 year ago
Other questions:
  • A high-voltage direct-current (dc) transmission line between Celilo, Oregon and Sylmar, California is 845 mi in length. The line
    15·1 answer
  • A 3.5-m3 rigid tank initially contains air whose density is 2 kg/m3 . The tank is connected to a high-pressure supply line throu
    8·1 answer
  • The fan blades suddenly experience an angular acceleration of 2 rad/s2. If the blades are rotating with an initial angular veloc
    10·1 answer
  • Explain how a CO2 cartridge powers the dragster you will be building. A good website to use is How Stuff Works. (howstuffworks.c
    7·2 answers
  • A coal fired power plant geneartes 2.4 lbs. of CO2 per kWh. A lighting system consumes 300,000kWh per year. A corporation is con
    15·1 answer
  • Calculate the number of vacancies per cubic meter at 1000∘C for a metal that has an energy for vacancy formation of 1.22 eV/atom
    14·1 answer
  • The electrical panel schedules are located on EWR Plan number ___.
    13·1 answer
  • Water flows steadily through the pipe as shown below, such that the pressure at section (1) and at section (2) are 300 kPa and 1
    7·1 answer
  • Reverse Engineering: Structural Analysis
    14·1 answer
  • What is voltage drop?
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!