🚀 Hurry! Offer Ends In
00 Days
00 Hours
00 Mins
00 Secs
Enroll Now
X

Building IoT applications

Question: 51 Report Error

Arduino प्रोग्राम में निम्नलिखित में से कौन सा फ़ंक्शन केवल एक बार कॉल किया जाता है?

Which of the following functions is called only once in an Arduino program?

A)
B)
C)
D)

Question: 52 Report Error

अरुडिनो परियोजना के संस्थापक हैं

Founder of Arduino Project

A)
B)
C)
D)

Question: 53 Report Error

Arduino family के ________ बोर्ड को कपड़ों में सिलने के लिए इस्तेमाल किया जा सकता है

________ board of Arduino family can be used to sew clothes

A)
B)
C)
D)

Question: 54 Report Error

Arduino IDE सॉफ़्टवेयर में निम्न में से कौन सा विकल्प उपलब्ध नहीं है?

Which of the following options is not available in Arduino IDE software?

A)
B)
C)
D)

Question: 55 Report Error

Arduino IDE में लिखे गए प्रोग्राम को कहा जाता है

A program written in Arduino IDE is called

A)
B)
C)
D)

Question: 56 Report Error

Arduino IDE में मूल कार्यक्रम में शामिल है

The basic program in Arduino IDE includes

A)
B)
C)
D)

Question: 57 Report Error

वह दर है जिस पर सिग्नल तत्वों की संख्या या सिग्नल में परिवर्तन प्रति सेकंड होता है जब यह संचार चैनल से गुजरता है

A)
B)
C)
D)

Question: 58 Report Error

Arduino में पिन एनालॉग सेंसर से डेटा पढ़ता है और मूल्य को डिजिटल मूल्य में परिवर्तित करता है

A)
B)
C)
D)

Question: 59 Report Error

AnalogWrite पद्धति का प्रयोग किया जा सकता है

A)
B)
C)
D)

Question: 60 Report Error

Arduino प्रोग्रामिंग में, पिन को इनपुट या आउटपुट के रूप में कॉन्फ़िगर करने के लिए फ़ंक्शन का उपयोग किया जाता है

A)
B)
C)
D)

Question: 61 Report Error

Arduino प्रोग्रामिंग में, डिजिटल पिन को हाई बनाने के लिए फंक्शन का उपयोग किया जाता है

A)
B)
C)
D)

Question: 62 Report Error

C प्रोग्रामिंग लैंग्वेज में, प्रीप्रोसेसर को सिंबल के साथ निर्दिष्ट किया जाता है

A)
B)
C)
D)

Question: 63 Report Error

C प्रोग्रामिंग लैंग्वेज में, निम्नलिखित स्टेटमेंट का आउटपुट है 1 < 2 ? return 1: return 2;

A)
B)
C)
D)

Question: 64 Report Error

निम्नलिखित में से कौन सी भाषा में तार्किक संचालिका नहीं है?

A)
B)
C)
D)

Question: 65 Report Error

C भाषा में, बिटवाइस कॉम्प्लीमेंट ऑपरेटर है

A)
B)
C)
D)

Question: 66 Report Error

सी लैंग्वेज में सिंगल लाइन कमेंट की शुरुआत होती है

A)
B)
C)
D)

Question: 67 Report Error

अल्ट्रासोनिक सेंसर में pulseIn() के माध्यम से कौन सा पैरामीटर लिया जाता है?

Which parameter is taken through pulseIn() in ultrasonic sensor?

A)
B)
C)
D)

Question: 68 Report Error

निम्नलिखित कोड का आउटपुट क्या होगा?

What will be the output of the following code?

int main()
 {
 int i = 25;
 int k =i %4;
 printf("%d\n", k);
 }
A)
B)
C)
D)

Question: 69 Report Error

जोखिम विश्लेषण के लिए निम्नलिखित में से किसका उपयोग किया जाता है?

Which of the following is used for risk analysis?

A)
B)
C)
D)

Question: 70 Report Error

यदि "पिन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);
 }
 }
A)
B)
C)
D)

Question: 71 Report Error

यदि "पिन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);
 }
 }
A)
B)
C)
D)

Question: 72 Report Error

निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?

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);
    }
}
A)
B)
C)
D)

Question: 73 Report Error

निम्नलिखित 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
}
A)
B)
C)
D)

Question: 74 Report Error

Arduino के साथ वायरलेस संचार के लिए निम्नलिखित में से कौन सा तत्व उपलब्ध है?

Which of the following elements are available for wireless communication with Arduino?

A)
B)
C)
D)

Question: 75 Report Error

schematic diagram का दूसरा नाम क्या है?

What is another name for a schematic diagram?

A)
B)
C)
D)

Question: 76 Report Error

Arduino में रेखाचित्र ___________ एक्सटेंशन के साथ सहेजे जाते हैं।

Sketches in Arduino are saved with the extension ___________.

A)
B)
C)
D)

Question: 77 Report Error

Arduino Nano पर micros() फ़ंक्शन का रिज़ॉल्यूशन क्या है?

What is the resolution of the micros() function on the Arduino Nano ?

A)
B)
C)
D)

Question: 78 Report Error

Arduino के साथ रिले को संचालित करने के लिए स्विचिंग समय क्या है?

What is switching time for relay to operate with Arduino?

A)
B)
C)
D)

Question: 79 Report Error

Arduino UNO की क्लॉक स्पीड है:

Clock Speed of Arduino UNO is :

A)
B)
C)
D)

Question: 80 Report Error

Arduino IDE में बूटलोडर क्या है?

What is the bootloader in the Arduino IDE?

A)
B)
C)
D)

Question: 81 Report Error

निम्नलिखित प्रोग्राम का आउटपुट क्या है?

What is the output of the following program ?

for( ; ; )
{
 Statements
}
A)
B)
C)
D)

Question: 82 Report Error

int a:16; यहाँ 16 क्या इंगित करता है?

int a:16; what is 16 indicate here?

A)
B)
C)
D)

Question: 83 Report Error

फ़ंक्शंस के साथ C प्रोग्राम का आउटपुट क्या है?

What is the output of C program with functions?

int main() {
 int a = 0;
 printf("AJAY ");
 return 1;
 printf("VIJAY");
 return 1;
 }
A)
B)
C)
D)

Question: 84 Report Error

C में, आप एक सारणी कैसे स्थापित करते हैं?

In C, how do you set up an array?

A)
B)
C)
D)

Question: 85 Report Error

निम्नलिखित प्रोग्राम का आउटपुट क्या है?

Which one is not a control structure ?

A)
B)
C)
D)

Question: 86 Report Error

निम्नलिखित प्रोग्राम का आउटपुट क्या है?

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;
}
A)
B)
C)
D)

Question: 87 Report Error

यदि 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 ?

A)
B)
C)
D)

Question: 88 Report Error

एलसीडी में दूसरी लाइन पर संदेश प्रिंट करने के लिए किस कमांड का उपयोग किया जाता है?

Which command used to print message on second line in LCD?

A)
B)
C)
D)

Question: 89 Report Error

कोड के निम्नलिखित भाग का आउटपुट क्या होगा?

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;
 }
A)
B)
C)
D)

Question: 90 Report Error

निम्नलिखित कोड का आउटपुट क्या होगा?

What will be the output of the following code?

int main()
 {
 int a=5;
 while(a=123)
 {
 printf("RABBIT\n");
 }
 printf("GREEN");
 return 0;
 }
A)
B)
C)
D)

Question: 91 Report Error

निम्नलिखित Arduino कोड का परिणाम क्या है?

What is the outcome of the following Arduino code ?

void setup() {
Serial.begin(9600);
}
void setup() {
Serial.write(20);
}
A)
B)
C)
D)

Question: 92 Report Error

निम्नलिखित 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() {}
A)
B)
C)
D)

Question: 93 Report Error

किसी फ़ंक्शन में, एक सरणी पास की जाती है:

In a function, an array is passed by:

A)
B)
C)
D)

Question: 94 Report Error

सही बॉयलरप्लेट Arduino कोड ढूंढें।

Find the correct boilerplate Arduino code .

A)
B)
C)
D)

Question: 95 Report Error

एंबेडेड C में टर्नरी ऑपरेटर के लिए सही विकल्प चुनें:

Choose the correct option for the ternary operator in embedded C:

A)
B)
C)
D)

Question: 96 Report Error

हम ऐरे को कैसे प्रारंभ कर सकते हैं?

How can we initialize the array?

A)
B)
C)
D)

Question: 97 Report Error

दिए गए कोड के अनुक्रमण के लिए सही विकल्प चुनें:

Choose the correct option for indexing of the given code:

int main ()
 {
 int xyz[8];
 return 0;
 }
A)
B)
C)
D)

Question: 98 Report Error

Arduino कोड के बारे में क्या सत्य है?

What is true about Arduino Codes?

A)
B)
C)
D)

Question: 99 Report Error

"Arduino.h‟ हेडर फ़ाइल के बारे में जो कथन सत्य हैं वे हैं:

The statements that are TRUE about „Arduino.h? header file are:

A)
B)
C)
D)

Question: 100 Report Error

ऐरे वाले C प्रोग्राम का सही विकल्प चुनें:

Choose the correct option of C program having array:

int main () 
{ int xyz (4) = [10,20,30,40]; 
printf (“%d”, xyz (1)); 
}
A)
B)
C)
D)

Latest Updates