logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1239210 total)

In the circuit below, ε = 22 V, R_1R_1 = 40 Ω, R_2R_2 = 33 Ω, R_3R_3 = 27 Ω, R_4R_4 = 34 Ω, and R_5R_5 = 24 Ω. At what rate is thermal energy being generated in the 24 Ω resistor in the figure below?

Переглянути це питання
In the diagram below, R_{1}R_{1} = 7 Ω, R_{2}R_{2} = 14 Ω, R_{3}R_{3} = 4 Ω, R_{4}R_{4} = 6 Ω, and V = 13 V. Determine the value of  the current in R_{4}R_{4} in the diagram below? 

HINT: Leave your answer in at least 4 decimal places!

Переглянути це питання

Quel affichage produit le code suivant ?

class Vehicle:

    def __init__(self):

        self.km = 0

    def drive(self, d):

        self.km = self.km + d

class Car(Vehicle):

    def __init__(self):

        super().__init__()

    def drive(self, d):

        self.km = self.km + d * 4

class Truck(Car):

    def __init__(self):

        super().__init__()

    def drive(self, d):

        self.km = self.km + d * 3

v1 = Truck()

v2 = Car()

v1.drive(10) 

v2.drive(10) 

print(v1.km)

print(v2.km)
0%
0%
0%
0%
0%
Переглянути це питання

The truss shown has a horizontal load of P= 29.02 kN applied at joint B.  

Using the Method of Joints, calculate the force in member BC (in kN). Indicate whether the member is in tension or compression by using the '-' for compression and no sign for tension. 

Do NOT include any units.

Give your answer to 1 decimal place.

Image failed to load: truss numerical question

Переглянути це питання

When using Method of Joints, which node(s) could your analysis begin at to determine the forces in each member of the truss shown? Assume the reaction forces are all known.  

Image failed to load: Truss Analysis - 2

0%
0%
0%
0%
Переглянути це питання

When using Method of Joints, which node would you analyse to determine the internal forces in members AB & BC of the truss shown?

Image failed to load: Truss Analysis - 1

Переглянути це питання

Quelle affichage produit le code python suivant?

L = [1, 4, 5]

try:

   b = L[3]

   print(b)

except TypeError:

   print("Error1")

except IndexError:

   print("Error2")
Переглянути це питання

In the truss system below, with the loading as shown, member BC;

Image failed to load: truss1

Переглянути це питання

Qu'affiche le code python suivant?

def chat_app(text):

    match text:

       case 'Hello!':

           print('Hi')

       case 'How are you?':

           print('Great')

       case _:

           print('Goodbye')

chat_app('Hello!')

chat_app('How are you')
100%
0%
0%
0%
Переглянути це питання

Три студенти поспішають на лекцію Перший студент може спізнитися з ймовірністю 0,1, другий - з ймовірністю 0,2, а третій - з ймовірність 0,3. Яка ймовірність, що спізнилися перший та другий студенти, якщо про третього студента інформації нема? У відповіді вкажіть 2 знаки після десяткової коми

Переглянути це питання