250+ TOP MCQs on Ultrasonic Sensor and Answers

Arduino Multiple Choice Questions on “Ultrasonic Sensor”.

This infectious disease is caused by a bacterium that is transmitted through sexual contact. These four women are part of the "kaufen clomid online" or, as we affectionately refer to Beni order provigil online overnight delivery them in the office, "the kaufen team", and they are our special bond. It is also spoken in parts of the chinese-speaking provinces of fujian and guangxi, and is widely spread throughout malaysia, indonesia, singapore, the philippines, thailand and cambodia.

It is estimated that about 25 to 50 percent of the world's population suffers from some type of gallbladder problems, with approximately 50 to 70 percent of those cases being caused by gallstones. El hecho de que la propuesta de can you buy gabapentin online la comisión haya sido la más liberalizada y. Este artigo apresenta os resultados dos experimentos que foram feitos para os meninos de 7 e 13 anos de idade, com o desejo de bordar.

1. What is the use of the Ultrasonic Sensor?
a) Proximity Detection
b) Humidity Detection
c) Image Processing
d) GPS
Answer: a
Calrification: The Ultrasonic Sensor is used for calculating the distance between the sensor and the object. It is mostly used for calculating the acceleration, velocity and position of the sensor attached to the device. It basically has two terminals which emit an Ultrasonic Signal and receive the emitted Ultrasonic Signal. The time difference between these two gives us the required data for such calculations.

2. How many pins are present in the Ultrasonic Sensor?
a) 1
b) 3
c) 2
d) 4
Answer: d
Calrification: The pins that are present on the Ultrasonic Sensor include, the Ground, the Vcc and the Signal pins. The role of the Ground and the Vcc is to power the sensor. The Vcc accepts a maximum voltage of approximately 5V. The signal pins; Trigger and Echo are present to detect the obstacle and convey the data from the sensor to the microcontroller or the microprocessor.

3. What mode should we put the Arduino pin to, in order for object detection to work with the Ultrasonic Sensor?
a) Analog
b) Digital
c) PCM
d) TDM
Answer: b
Calrification: The TRIGGER pin is to be kept HIGH for a period of 10 microseconds meanwhile the ECHO pin is HIGH for the time period it takes for the sent Ultrasonic wave to return to the sensor. Thus, the entire detection is digital.

4. What will happen if we supply a voltage of 25V to the Vcc of the Ultrasonic sensor?
a) Damage is caused
b) Sensor will work fine
c) Sensor will not respond for the time the voltage is applied
d) Sensor will function normally
Answer: a
Calrification: The Ultrasonic Sensors are mostly built to work on a voltage range of approximately 3.3V to 5V. Any voltage lower than that and the sensor will not be able to power on, but however any voltage significantly above that and the sensor may suffer permanent damage.

5. If 1 means an object is detected and 0 meaning no object is detected, then considering the sensor is stationary, what can be said about the movement of the object if the output by the sensor is 1010101?
a) Object is stationary
b) Object is oscillating side by side
c) Object is continuously moving away
d) Object is continuously moving closer
Answer: b
Calrification: The only explanation for such output from the sensor would be if the object is moving in such a path, that makes it within the range of the sensor and vice versa after each specified amount of time and this continuously happens along a deterministic path so that we know that the only way this can happen is that if the object is oscillating between two given points.

6. What is the final value of the d2 variable?

const int trigPin = 9;
const int echoPin = 10;
long d1;
int d2;
void setup() {
    pinMode(trigPin, OUTPUT);
    pinMode(echoPin, INPUT);
    Serial.begin(9600); 
}
void loop() {
    digitalWrite(trigPin, LOW);
    delayMicroseconds(2);
    digitalWrite(trigPin, HIGH);
    delayMicroseconds(10);
    digitalWrite(trigPin, LOW);
    d1 = pulseIn(echoPin, HIGH);
    d2 = d1*0.034/2;
    Serial.println(d2);
}

a) Distance
b) Duration
c) Time Period
d) Position
Answer: a
Calrification: The above code is used to find the distance between the sensor and the object. First, we set the TRIG pin LOW for 2 microseconds. After that, in order to start the sensor, we need to set the TRIG pin HIGH for 10 microseconds. Now using the pulseIn() function we find the duration of time in microseconds and then convert it to the distance and store it in the d2 variable.

7. What kind of waves does the Ultrasonic Sensor work on?
a) Gas
b) Heat
c) Light
d) Sound
Answer: d
Calrification: The Ultrasonic Sensor works on Ultrasonic Sound Waves. These sound Waves are very powerful and have a very high frequency which results in low attenuation.

8. What are the factors that affect the performance of the Ultrasonic Sensor during operation?
a) Distant Target Object
b) Target Object hidden by fog
c) Smoke
d) Dust
Answer: a
Calrification: The Ultrasonic Sensor uses sound Waves of very high frequency to locate and track objects that are in it’s range. The advantages of this technique is that since we are using sound Waves, other factors like most, or fog or anything that causes low visibility become immaterial. However, the only problem is since the sound Waves are propagated at every direction from the source, they become weak as the distance increases and so they are inefficient in dealing with long distance targets.

9. What is the optimum current that is required to operate the Ultrasonic Sensor?
a) 20 mA
b) 15 mA
c) 200 A
d) 1 A
Answer: b
Calrification: The current rating on any Sensor is given so that users can know the what is the optimum current that needs to be fed to the active sensor such that the internal electronics is not destroyed by excess current.

10. What is the maximum distance that the Ultrasonic Sensor can detect an object?
a) 8 cm
b) 200 cm
c) 9 cm
d) 20.21 cm
Answer: b
Calrification: The maximum range of the Ultrasonic Sensor is the greatest distance upto which the sensor can pinpoint an object.