answer.
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
Nat2105 [25]
1 year ago
14

how do you make a circuit so 1 switch will turn on/off all the lights(3 lights) and a second switch will change the lights from

all being the same brightness to all being different brightnesses?
Computers and Technology
2 answers:
expeople1 [14]1 year ago
7 0

Parallel circuit. On a wire you put the lights and one switch, on the other you put a resistor and another switch. (and the third wire contains the generator)
hodyreva [135]1 year ago
7 0

Answer:

The three bulbs can be connected in series to the battery B1, such that when switch SW1 is turned ON all three bulb turns ON with the same brightness. We now have the three resistors R1, R2, and R3 connected in parallel to the lamps LMP1, LMP2, and LMP3 respectively when SW2 turn on. SW2 is a Three Pole Single Throw switch. Please see attachment for the electric circuit diagram.

Explanation:

QUESTION

How do you make a circuit so 1 switch will turn on/off all the lights(3 lights) and a second switch will change the lights from all being the same brightness to all being different brightness?

ANSWER

List of Component Used For The Design Of The Electric Circuit

The three bulbs can be connected in series to the battery B1, such that when switch SW1 is turned ON all three bulb turns ON with the same brightness. We now have the three resistors R1, R2, and R3 connected in parallel to the lamps LMP1, LMP2, and LMP3 respectively when SW2 turn on. SW2 is a Three Pole Single Throw switch. Please see attachment for the electric circuit diagram.

1. 18Volt Battery ( two 9 Volts batteries connected in series)

2. Three Filament lamps LMP1=LMP2=LMP3= 6V 6W.

3. Three resistors of R1=100Ω, R2=12Ω and R3=3Ω

4. SPST Switch =SW1

5. TPST Switch = SW2

Since the battery is 18V and connected in series to all three lamps, it is capable of delivering 6V per lamp. Each lamp is 6W. So the resistance of the bulb can be determined using Ohm’s law.

V=IR, P=IV = V2/R, R=V2/P

Where I= Current

V= Voltage

R= Resistance

P = Power

Lamp Resistance RL= 62/6 =6Ω

Total resistance of the lamps connected in series Rs= 6+6+6 = 18Ω

The total current through the series resistor combination IS = Battery supplied voltage divide by RS =18/18 =1A

So each lamp will dissipate power PL= I2*R= 1*6 =6W

When switch SW2 is closed, there is now a resistor connected in parallel to each of the lamp which will now reduce the total resistance combination of the lamp and resistors to a values lower than 6Ω

Lamp1 has 100Ω connected in parallel to it to give a total resistance of 5.66Ω

Lamp2 has 12Ω connected in parallel to it to give a total resistance of 4Ω

Lamp3 has 3Ω connected in parallel to it to give a total resistance of 2Ω

The new total resistance of the circuit is now R=5.66+4+2 = 11.66Ω

The new total current flowing through the circuit I=18/11.66 = 1.54A

The power dissipated by each lamp with a new series current of 1.54A can now be recalculated as follows;

Power dissipated by Lamp 1 P1= 1.542*5.66Ω = 13.42W

Power dissipated by Lamp 2 P2= 1.542*4Ω = 9.49W

Power dissipated by Lamp 1 P1= 1.542*2Ω = 4.74W

From the power dissipated by the 3 bulbs, we can see that lamp 3 is bright, lamp 2 is brighter and Lamp 1 is the brightest of all the three lamps.

Download pdf
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> pdf </span>
964ca3f2a895a598c502478c6408f90a.jpg
<span class="sg-text sg-text--link sg-text--bold sg-text--link-disabled sg-text--blue-dark"> docx </span>
You might be interested in
An mp3 takes up about 16 kilobytes of memory per second of music. if you owned a one terabyte hard drive and filled it with only
xxTIMURxx [149]

60 sec. = 1 min. 3,600 sec = 1 hr. (60 sec x 60 minutes) 86,400 sec= 24 hr. (3,600 x 24) Given : 16,000 (bytes per seconds, for mp3 ) 86,400 X 16,000 = 1,382,400,000 bytes for 24 hrs. 1,382,400,000 = 1,382.4 mega bytes (Mb.) for 24 hrs of music Looking for how many days are in 1,000,000 Mb. 1,000,000 / 1,382.4 = 723.379629 Days worth of music.


8 0
1 year ago
Write a class with a constructor that accepts a String object as its argument. The class should have a method that returns the n
mote1985 [20]

Answer:

import java.util.Scanner;

public class VowelsAndConsonantsDemo {

   /**

   The printMenu methods displays a menu to the user

    */

   public static void printMenu() {

       System.out.println("Please select an option: ");

       System.out.println();

       System.out.print("a. Count the number of vowels in the string.\n"

               + "b. Count the number of consonants in the string.\n"

               + "c. Count both the vowels and consonants in the string.\n"

               + "d. Enter another string.\n"

               + "e. Exit the program\n");

   }

   public static void main(String[] args) {

       String input;      // to hold the user's input

       String option;     // to hold the user's input

       char choice;       // to hold a single character

       char exit;         // user chooses 'e' to exit the program

       char letter;       //the Y or N from the user's decision to exit

       // create a Scanner object to read keyboard input.

       //  Scanner keyboard = new Scanner(System.in);

       Scanner keyboard;

       do {

           keyboard = new Scanner(System.in);

           // ask user to enter string

           System.out.print("Enter a string: ");

           input = keyboard.nextLine();

           input = input.toLowerCase();

           System.out.println();

           printMenu();

           option = keyboard.nextLine();

           choice = option.charAt(0);

           VowelsAndConsonants words = new VowelsAndConsonants(input);

           switch (choice) {

               case 'a':

               case 'A':

                   System.out.println("Number of Vowels: " + words.getVowels());

                   break;

               case 'b':

               case 'B':

                   System.out.println("Number of Consonants: " + words.getConsonants());

                   break;

               case 'c':

               case 'C':

                   System.out.println("Number of Vowels & Consonants: " + words.getConsonants()

                           + words.getVowels());

                   break;

               case 'd':

               case 'D':

                   System.out.println("Enter a string: ");

                   break;

               case 'e':

               case 'E':

                   System.exit(0);

                   break;

               default:

                   System.out.println("You did not enter a valid choice.");

           }

           //

           // keyboard.nextLine();    //consumes the new line character after the choice

           // String answer = keyboard.nextLine();

           // letter = answer.charAt(0);

       } while (true);

   }

}

4 0
1 year ago
Write a algorithm to attend birthday party​
kolezko [41]

Answer:

2     No

5 14    Yes

Explanation:

8 0
2 years ago
Read 2 more answers
An array of ints, arr, has been declared and initialized. Write the statements needed to reverse the elements in the array. So,
Yuki888 [10]

Answer:

The sample output is below.

The code is attached.

Explanation:

Sample Output:

Original array is: 1 2 457 4 Reversed array is: 4754 2 1

Code to copy:

import java.io.*;

class Main

{

    /*Define the function revArray passing the array

      and its indices.*/

    static void revArray(int arr[], int start, int end)

    {

         /*Declare an integer variable to store the

           first index.*/

         int temp;

         //Check if array is empty.

         if (start >= end)

             return;

         //Store the first index value.

         temp = arr[start];

         //Swap the last index to first index.

         arr[start] = arr[end];

         //Store the temp value to last index.

         arr[end] = temp;

         /*Call the function recursively to swap

           rest of the values.*/

         revArray(arr, start+1, end-1);

    }  

    public static void main (String[] args)

    {

         //Declare and initialize array.

         int[] arr = {1,2,4,5,7,4};

         /*Declare an integer variable to store the

         * length of array.

         */

         int count=0;

         //Set the length of array to count.

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

             count++;

         System.out.println("Original array is:");

         ///Print the original array.

         for(int i=0; i<count;i++)

         {

             System.out.print(arr[i]+" ");

         }  

         /*Call the function to reverse the values in

         * the array itself.

         */

         revArray(arr, 0, count-1);

         System.out.println("\nReversed array is:");

         ///Print the reversed array.

         for(int i=0; i<count;i++)

         {

             System.out.print(arr[i]+" ");

         }  

    }

}

5 0
2 years ago
RFID tags are used in secure environments primarily due to the fact they are impossible to counterfeit.
denis23 [38]

Answer: True

Explanation:

 Yes, the given statement is true that the RFID tags are basically used in the secure system because it is impossible to counterfeit.

RFID basically stand for the radio frequency identification that provide a method to retrieve the data or information quickly from the system. It basically used as radio wave technology in which we can easily track the objects and people by using proper programmed data.

The tag is basically placed in the object for unique identification. There are basically two types of tags in the RFID that is active and passive.

4 0
1 year ago
Other questions:
  • Which key retains its uniqueness even after you remove some of the fields?
    14·1 answer
  • Isabel is creating a wireframe. She has drawn a layout for the home page along with outlining the navigation elements. She now w
    15·2 answers
  • Mathematical computations by a computer are faster than your quickest mathematical computations because the top speed of a neura
    13·1 answer
  • Given a sorted array of integer, A, with possible duplicate elements. Implement an efficient (sublinear running time complexity)
    12·1 answer
  • PYTHON QUESTION
    15·1 answer
  • Print either "Fruit", "Drink", or "Unknown" (followed by a newline) depending on the value of userItem. Print "Unknown" (followe
    13·1 answer
  • HELP 30 points and Brainliest.Type the correct answer in the box. Spell all words correctly.
    11·1 answer
  • _____________ data is what is translated to digital format so it can be stored in a computer.
    10·1 answer
  • Doug grew up on a large farm in southwest Wisconsin. As a college graduation gift, Doug’s father gave him several hundred acres
    6·1 answer
  • In a particular field, there are trees in a l single row from left to right. Each tree has a value V You cut trees from left to
    13·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!