Programming and Problem Solving Through Python Online Test - O Level
Navigating the complexities of the Internet of Things (IoT) for your O Level exams can be challenging, but an online test designed specifically for this subject can significantly enhance your preparation. The O Level Internet of Things Online Test provides an interactive and efficient way to evaluate your understanding of key IoT concepts, including sensor technology, data communication, and smart devices. This test covers essential topics such as IoT architecture, protocols, and applications, helping you grasp how interconnected systems work together to collect and analyze data.
By taking this online test, you can practice answering questions relevant to the O Level curriculum, receive immediate feedback, and identify areas where you may need further study. The flexibility of online testing allows you to prepare at your own pace, ensuring you build a solid foundation in IoT and approach your exams with confidence.
Take our NIELIT O Level online test now and get ready to excel in your Internet of Things (IOT) exam!
Q.1 निम्नलिखित में से कौन सा माइक्रोकंट्रोलर का सामान्य अनुप्रयोग है?
Which of the following is a common application of microcontrollers?
Q.2 यदि 1 का अर्थ है किसी वस्तु का पता चला है और 0 का अर्थ है कि किसी वस्तु का पता नहीं चला है, तो सेंसर को स्थिर मानते हुए, यदि सेंसर द्वारा आउटपुट 111000 के रूप में देखा जाता है, तो वस्तु की संभावित गति क्या हो सकती है?
If 1 means an object is detected and 0 meaning no object is detected, then considering the sensor stationary, what can be the possible movement of object if the output by the sensor is observed as 111000 ?
Q.3 Arduino IDE में कितनी बार setup() function चलता है
How many times does the setup() function run in the Arduino IDE?
Q.4 AMQP, UDP प्रोटोकॉल का उपयोग करता है।
AMQP uses the UDP protocol.
Q.5 IIOT का full form क्या है ?
What is the full form of IIOT?
Q.6 Embedded C Language Function call को support नहीं करती है
Embedded C language does not support function calls
Q.7 IIoT का पूर्ण रूप है |
The full form of IIoT is.
Q.8 कोड के निम्नलिखित भाग का आउटपुट क्या होगा?
What will be the output of the following piece of code?
#include <stdio.h>
int main() {
for(i = 0;i < 8; i++);
printf("%d", i);
return 0;
}
Q.9 AMQP UDP protocol का उपयोग करता है ?
AMQP uses UDP protocol?
Q.10 Arduino UNO में प्रयोग किया जाने वाला माइक्राकंट्रोलर कौन सा है ?
Which microcontroller is used in Arduino UNO?
Q.11 C प्रोग्रामिंग भाषा का _______ प्रकार है।
C is _______ type of programming language.
Q.12 GPIO का Full Form है ?
What is the full form of GPIO?
Q.13 साक्षात्कार की तैयारी के लिए आवश्यक क्रम है:
The sequence required for the preparation of an interview is:
Q.14 निम्नलिखित प्रोग्राम का आउटपुट क्या है?
Which one is not a control structure ?
Q.15 GPIO का full form क्या होता है ?
What is the full form of GPIO?
Q.16 निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
int main()
{
int i = 25;
int k =i %4;
printf("%d\n", k);
}
Q.17 Arduino IDE किस Language में लिखी गयी है ?
In which language is Arduino IDE written?
Q.18 arduino programming में कंडीशनल स्टेटमेंट्स का प्रयोग नहीं किया जा सकता है
Conditional statements cannot be used in arduino programming
Q.19 Float , एम्बेडेड सी लैंग्वेज का वैध डेटा प्रकार(valid data type) है।
Float is a valid data type of the embedded C language.
Q.20 यदि "पिन2" को "1011" भेजा जाता है जहां 1 5V है और 0 0V है तो "पिन1" का आउटपुट क्या है?
What is the output of “pin1” if “pin2” is sent “1011” where 1 is 5V and 0 is 0V?
int pin1 = 12;
int pin2 = 11;
void setup() {
pinMode(pin1, OUTPUT);
pinMode(pin2, INPUT);
Serial.begin(9600);
}
void loop() {
if(digitalRead(pin2)==1) {
digitalWrite(pin1,LOW);
}
else if(digitalRead(pin2)==0) {
digitalWrite(pin1,HIGH);
}
}