Answer:
- low = 10
- high = 50
- count = 0
-
- for i in range(low, high + 1):
- if(i % 3 == 0 and i % 5 == 0):
- count += 1
- print(count)
Explanation:
The solution code is written in Python.
We can create low and high variables to store the lower bound and upper bound in the range (Line 1-2)
Next create a counter variable, count (Line 3).
Use a for loop to traverse through the number between lower bound and upper bound and check if the current number-i is divisible by 3 and by 5, increment the count by one.
After the loop, print the count and we can get the number of ideal integers within the range (Line 8).
Answer:total current =0.06A
Explanation:
The total resistance of Resistors connected in series is given as
Rs = R1 + R2 + R3....
Here, we have that two resistors are connected in series
therefore,
Rs = 100 + 100 = 200 Ω
But current according to ohm's law is given as
I= V/R
where I= current in ampere, A
V= Voltage in volts, V and
R= Resistance, in ohms,Ω
therefore,
I= V/Rs
I = 12/ 200 = 0.06 A
Data encryption. It is where you give data a key or password so that only those that have access to it can access it.
Answer:
Webcam
Explanation:
A webcam is mainly used for taking images or videos from the computer. the webcam is a combination of two basic words i.e. web and camera. webcam can be connected to any computer via USB. It can be mounted on the desktop and sometimes it comes inbuilt on the laptops.
A webcam is also used for face recognition function to login to a computer system.
so according to the scenario, the most appropriate answer is a webcam.