Building IoT applications
Arduino प्रोग्राम में निम्नलिखित में से कौन सा फ़ंक्शन केवल एक बार कॉल किया जाता है?
Which of the following functions is called only once in an Arduino program?
Arduino family के ________ बोर्ड को कपड़ों में सिलने के लिए इस्तेमाल किया जा सकता है
________ board of Arduino family can be used to sew clothes
Arduino IDE सॉफ़्टवेयर में निम्न में से कौन सा विकल्प उपलब्ध नहीं है?
Which of the following options is not available in Arduino IDE software?
Arduino IDE में लिखे गए प्रोग्राम को कहा जाता है
A program written in Arduino IDE is called
Arduino IDE में मूल कार्यक्रम में शामिल है
The basic program in Arduino IDE includes
वह दर है जिस पर सिग्नल तत्वों की संख्या या सिग्नल में परिवर्तन प्रति सेकंड होता है जब यह संचार चैनल से गुजरता है
Arduino में पिन एनालॉग सेंसर से डेटा पढ़ता है और मूल्य को डिजिटल मूल्य में परिवर्तित करता है
Arduino प्रोग्रामिंग में, पिन को इनपुट या आउटपुट के रूप में कॉन्फ़िगर करने के लिए फ़ंक्शन का उपयोग किया जाता है
Arduino प्रोग्रामिंग में, डिजिटल पिन को हाई बनाने के लिए फंक्शन का उपयोग किया जाता है
C प्रोग्रामिंग लैंग्वेज में, प्रीप्रोसेसर को सिंबल के साथ निर्दिष्ट किया जाता है
C प्रोग्रामिंग लैंग्वेज में, निम्नलिखित स्टेटमेंट का आउटपुट है 1 < 2 ? return 1: return 2;
अल्ट्रासोनिक सेंसर में pulseIn() के माध्यम से कौन सा पैरामीटर लिया जाता है?
Which parameter is taken through pulseIn() in ultrasonic sensor?
निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
int main()
{
int i = 25;
int k =i %4;
printf("%d\n", k);
} जोखिम विश्लेषण के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Which of the following is used for risk analysis?
यदि "पिन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);
}
} यदि "पिन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);
}
} निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following code snippet?
int i, j;
for (i = 0; i < 3; i++) {
for (j = 0; j < 2; j++) {
printf("%d%d", i, j);
}
} निम्नलिखित Arduino कोड में while लूप क्या करता है?
What does the while loop in the following Arduino code do?
while(analogRead(sensorPin) > 100)
{
flashLED(); // call a function to turn an LED on and off
} Arduino के साथ वायरलेस संचार के लिए निम्नलिखित में से कौन सा तत्व उपलब्ध है?
Which of the following elements are available for wireless communication with Arduino?
schematic diagram का दूसरा नाम क्या है?
What is another name for a schematic diagram?
Arduino में रेखाचित्र ___________ एक्सटेंशन के साथ सहेजे जाते हैं।
Sketches in Arduino are saved with the extension ___________.
Arduino Nano पर micros() फ़ंक्शन का रिज़ॉल्यूशन क्या है?
What is the resolution of the micros() function on the Arduino Nano ?
Arduino के साथ रिले को संचालित करने के लिए स्विचिंग समय क्या है?
What is switching time for relay to operate with Arduino?
Arduino UNO की क्लॉक स्पीड है:
Clock Speed of Arduino UNO is :
Arduino IDE में बूटलोडर क्या है?
What is the bootloader in the Arduino IDE?
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
What is the output of the following program ?
for( ; ; )
{
Statements
} int a:16; यहाँ 16 क्या इंगित करता है?
int a:16; what is 16 indicate here?
फ़ंक्शंस के साथ C प्रोग्राम का आउटपुट क्या है?
What is the output of C program with functions?
int main() {
int a = 0;
printf("AJAY ");
return 1;
printf("VIJAY");
return 1;
} C में, आप एक सारणी कैसे स्थापित करते हैं?
In C, how do you set up an array?
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
Which one is not a control structure ?
निम्नलिखित प्रोग्राम का आउटपुट क्या है?
What will be the output of the following code ?
#include <stdio.h>
void solve() {
int b = 4;
int res = b++ + ++b + ++b;
printf("%d", res);
}
int main() {
solve();
return 0;
} यदि 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 ?
एलसीडी में दूसरी लाइन पर संदेश प्रिंट करने के लिए किस कमांड का उपयोग किया जाता है?
Which command used to print message on second line in LCD?
कोड के निम्नलिखित भाग का आउटपुट क्या होगा?
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;
} निम्नलिखित कोड का आउटपुट क्या होगा?
What will be the output of the following code?
int main()
{
int a=5;
while(a=123)
{
printf("RABBIT\n");
}
printf("GREEN");
return 0;
} निम्नलिखित Arduino कोड का परिणाम क्या है?
What is the outcome of the following Arduino code ?
void setup() {
Serial.begin(9600);
}
void setup() {
Serial.write(20);
} निम्नलिखित Arduino कोड का आउटपुट क्या होगा?
What will be the output of the following Arduino code ?
void main() {
int k = 0;
double d = 10.21;
printf(“%lu”, sizeof(k + d));
}
void loop() {} किसी फ़ंक्शन में, एक सरणी पास की जाती है:
In a function, an array is passed by:
सही बॉयलरप्लेट Arduino कोड ढूंढें।
Find the correct boilerplate Arduino code .
एंबेडेड C में टर्नरी ऑपरेटर के लिए सही विकल्प चुनें:
Choose the correct option for the ternary operator in embedded C:
हम ऐरे को कैसे प्रारंभ कर सकते हैं?
How can we initialize the array?
दिए गए कोड के अनुक्रमण के लिए सही विकल्प चुनें:
Choose the correct option for indexing of the given code:
int main ()
{
int xyz[8];
return 0;
} Arduino कोड के बारे में क्या सत्य है?
What is true about Arduino Codes?
"Arduino.h‟ हेडर फ़ाइल के बारे में जो कथन सत्य हैं वे हैं:
The statements that are TRUE about „Arduino.h? header file are:
ऐरे वाले C प्रोग्राम का सही विकल्प चुनें:
Choose the correct option of C program having array:
int main ()
{ int xyz (4) = [10,20,30,40];
printf (“%d”, xyz (1));
}