Answer:
as slated in your solution, if delay time is 2.30 mins, hence 9 vehicle will be on queue as the improved service commenced.
Explanation:
4 vehicle per min, in 2 mins of the delay time 8 vehicles while in 0.3 min average of 1 vehicle join the queue. making 9 vehicle maximum
Answer:
Frequency = 
Wavenumber = 
Energy = 
Energy = 1.4579 eV
Energy = 
Explanation:
As we are given the wavelength = 850 nm
conversion used : 
So, wavelength is 
The relation between frequency and wavelength is shown below as:

Where, c is the speed of light having value = 
So, Frequency is:


Wavenumber is the reciprocal of wavelength.
So,


Also,

where, h is Plank's constant having value as 
So,


Also,

So,


Also,

So,


Answer:
import numpy as np
import time
def matrixMul(m1,m2):
if m1.shape[1] == m2.shape[0]:
t1 = time.time()
r1 = np.zeros((m1.shape[0],m2.shape[1]))
for i in range(m1.shape[0]):
for j in range(m2.shape[1]):
r1[i,j] = (m1[i]*m2.transpose()[j]).sum()
t2 = time.time()
print("Native implementation: ",r1)
print("Time: ",t2-t1)
t1 = time.time()
r2 = m1.dot(m2)
t2 = time.time()
print("\nEfficient implementation: ",r2)
print("Time: ",t2-t1)
else:
print("Wrong dimensions!")
Explanation:
We define a function (matrixMul) that receive two arrays representing the two matrices to be multiplied, then we verify is the dimensions are appropriated for matrix multiplication if so we proceed with the native implementation consisting of two for-loops and prints the result of the operation and the execution time, then we proceed with the efficient implementation using .dot method then we return the result with the operation time. As you can see from the image the execution time is appreciable just for large matrices, in such a case the execution time of the efficient implementation can be 1000 times faster than the native implementation.
Answer:
hmm i would try calling him. ask your mom or other adults where he is!
Explanation:
hope you get help soon!
Answer:
Hello there, the question is not complete, but not to worry you can check the explanation section to check how you can solve a similar question or to be be able to solve the exact question directly.
Explanation:
The flow of electrons is what is known or refer to as Current. When energy is used on a nuclei, the electrons are forced to move from one position to the other. The direction of flow of electron is from the negative terminal which then moves to the positive terminal.
Therefore, it can be said that the positive charge determines the direction of electron flow. The starting point is the negative terminal, in which it will now move in the direction in which the positive terminal is.