अभी हम M4R5 का 50 प्रश्नों का ऑनलाइन प्रैक्टिस टेस्ट पार्ट-9 करने वाले है। NIELIT O Level Online Test में आपको 50 प्रश्नों के ऑनलाइन मॉक टेस्ट को करने के लिए 50 मिनटों का समय दिया जायेगा। इस O level M4-R5 Online Test 9 को करने से आप अपने O Level Exam Paper में अच्छे अंक प्राप्त करने के भागीदार बनेंगे।
M4 R5 Test 50Q Set-9
Quiz-summary
0 of 50 questions completed
Questions:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
Information
oLevelStudy.com के नियमों का पालन करें –
- सभी प्रश्न करने अनिवार्य है।
- प्रत्येक प्रश्न को हल करने के लिए 5 मिनट का समय निर्धारित है।
- मॉक टेस्ट खत्म होने के बाद आपके द्वारा सही-गलत किये प्रश्न जरूर जांचें।
- लीडरबॉर्ड में अपनी रैंक जरूर देखें।
- नकलची बन्दर मत बनें।
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading...
You must sign in or sign up to start the quiz.
You have to finish following quiz, to start this quiz:
Results
0 of 50 questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 points, (0)
Categories
- Not categorized 0%
oLevelStudy.com पर मॉक टेस्ट करने के लिए आपका शुक्रिया!
कृपया आपके द्वारा अगर कोई प्रश्न गलत हुआ है तो उसे अवश्य जांचें। इसके लिए आपको नीचे दिए View Question बटन को दबाना है फिर आपके द्वारा सही गलत किये प्रश्न आपको दिख जायेंगे।
LeaderBoard में अपनी रैंक देखना मत भूलें। और हाँ इस o Level Online Test को अपने दोस्तों के साथ जरूर Share कीजियेगा
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- Answered
- Review
- Question 1 of 50
1. Question
1 pointsनिम्नलिखित C कोड का आउटपुट क्या होगा?
What will be the output of the following C code?
#include
void main()
{
int k = 8;
int m = 7;
int z = k <m?k=m: m++;
printf("%d", z);
}CorrectIncorrect - Question 2 of 50
2. Question
1 pointsनिम्नलिखित में से कीवर्ड ‘break’ का प्रयोग केवल _______ भीतर नहीं किया जा सकता है?
In which of the following the keyword ‘break’ cannot be used only within _______?CorrectIncorrect - Question 3 of 50
3. Question
1 pointsनिम्नलिखित में से IoT का भविष्य का अनुप्रयोग कौन सा है?
Which of the following is the future application of IoT?CorrectIncorrect - Question 4 of 50
4. Question
1 pointsनिम्नलिखित C कोड का आउटपुट क्या होगा?
What will be the output of the following C code?
#include
void main() {
int i = 0;
for (i=0;i< 5; i++)
if (i < 4)
{
printf("Hello");
break;
} }CorrectIncorrect - Question 5 of 50
5. Question
1 pointsनिम्नलिखित में से डिफ़ॉल्ट रिटर्न प्रकार क्या है यदि यह फ़ंक्शन परिभाषा में निर्दिष्ट नहीं है?
Which of the following is the default return type if it is not specified in the function definition?CorrectIncorrect - Question 6 of 50
6. Question
1 pointsनिम्नलिखित में से कौनसी C में वैध पैरामीटर पासिंग विधि नहीं है?
Which of the following is not a valid parameter passing method in C?CorrectIncorrect - Question 7 of 50
7. Question
1 pointsनिम्नलिखित में से Arduino में Modulo calculate करने के लिए कौन-से चिन्ह का उपयोग किया जाता है?
Which of the following symbols are used to calculate Modulo in Arduino?CorrectIncorrect - Question 8 of 50
8. Question
1 pointsनिम्नलिखित में से IoT डोमेन मे इस्तेमाल ना होने वाला प्रोटोकॉल कौनसा हैं?
Which of the following is not a protocol used in IoT domain?CorrectIncorrect - Question 9 of 50
9. Question
1 pointsनिम्नलिखित C प्रोग्राम का आउटपुट क्या होगा?
What will be the output of the following C program?
#include
int main()
{
int x[5] = { 10, 20, 30 };
printf(“%d”, x[3]);
return 0;
}CorrectIncorrect - Question 10 of 50
10. Question
1 pointsनिम्नलिखित में से अपने अन्दर की कौनसी शक्ति हमें कुछ करने के लिए प्रेरित करती हैं?
Which of the following forces within us motivates us to do something?CorrectIncorrect - Question 11 of 50
11. Question
1 pointsMQTT एक Transport layer protocol है।
MQTT is a transport layer protocol.CorrectIncorrect - Question 12 of 50
12. Question
1 pointsनिम्नलिखित में से VNC का फुल फॉर्म क्या होता है?
Which of the following is the full form of VNC?CorrectIncorrect - Question 13 of 50
13. Question
1 pointsनिम्नलिखित प्रोग्राम में d का मान क्या होगा?
What will be the value of d in the following program?
int main()
{
int a = 10, b = 5, c = 5;
int d;
d = b + c == a;
printf(“%d”, d);
}CorrectIncorrect - Question 14 of 50
14. Question
1 pointsनिम्नलिखित में से Array को इनिशियलाइज़ करने का तरीका कौनसा है?
Which of the following is the way to initialize Array?CorrectIncorrect - Question 15 of 50
15. Question
1 pointsनिम्नलिखित में से ऐरे इंडेक्स हमेशा _______ से शुरू होता है?
Which of the following array index always starts with _______?CorrectIncorrect - Question 16 of 50
16. Question
1 pointsनिम्नलिखित में से SISO का फुल फॉर्म क्या होता है?
Which of the following is the full form of SISO?CorrectIncorrect - Question 17 of 50
17. Question
1 pointsनिम्नलिखित में से लाइब्रेरी फंक्शन getch() किस हैडर फाइल से संबंधित है?
To which of the following header files is the library function getch() associated?CorrectIncorrect - Question 18 of 50
18. Question
1 pointsनिम्नलिखित में से Arduino में मॉड्यूल की गणना करने के लिए किस चिन्ह का उपयोग किया जाता है?
Which of the following is the symbol used to count modules in Arduino?CorrectIncorrect - Question 19 of 50
19. Question
1 pointsनिम्नलिखित में से कौन सा TCP/IP लेयर नहीं होता है?
Which of the following is not a TCP/IP layer?CorrectIncorrect - Question 20 of 50
20. Question
1 pointsनिम्नलिखित में से IOT में क्या Challanges है?
Which of the following is the Challenges in IOT?CorrectIncorrect - Question 21 of 50
21. Question
1 pointsनिम्नलिखित प्रोग्राम का आउटपुट क्या होगा?
What will be the output of the following program?
int main()
{
int a = 10.5;
printf(“%d”,a);
return 0;
}CorrectIncorrect - Question 22 of 50
22. Question
1 pointsनिम्नलिखित में से C में कंपाइलर लाइन के अंत तक सभी टेक्स्ट को अनदेखा करता है?
In which of the following the compiler in C ignores all text till the end of the line?CorrectIncorrect - Question 23 of 50
23. Question
1 pointsनिम्नलिखित में से OSI मॉडल में नेटवर्क लेयर किस स्तर की होती है?
Which of the following is the network layer level in the OSI model?CorrectIncorrect - Question 24 of 50
24. Question
1 pointsनिम्नलिखित में से नेटवर्क लेयर में कौन सा हार्डवेयर डिवाइस होता है?
Which of the following is a hardware device in the network layer?CorrectIncorrect - Question 25 of 50
25. Question
1 pointsयूएवी नेटवर्क में स्टार टोपोलॉजी को _______ प्रकारों में वर्गीकृत किया गया है?
The star topology in the UAV network is categorized into _______ types?CorrectIncorrect - Question 26 of 50
26. Question
1 pointsयूएवी नेटवर्क में मेश टोपोलॉजी _______ हैं?
The mesh topology in the UAV network are _______?CorrectIncorrect - Question 27 of 50
27. Question
1 pointsयूएवी नेटवर्क में स्टार टोपोलॉजी _______ है?
The star topology in a UAV network is _______?CorrectIncorrect - Question 28 of 50
28. Question
1 pointsनिम्नलिखित में से नेटवर्क परत से जुड़ा सामान्य प्रोटोकॉल कौनसा हैं?
Which of the following is a common protocol associated with the network layer?CorrectIncorrect - Question 29 of 50
29. Question
1 pointsनिम्नलिखित में से नेटवर्क परत किस परत को अनुरोध जारी करती है?
To which of the following layer does the network layer issue the request?CorrectIncorrect - Question 30 of 50
30. Question
1 pointsनिम्नलिखित में से लैपटॉप में एक्सेलेरोमीटर का उपयोग क्या है?
Which of the following is the use of accelerometer in laptop?CorrectIncorrect - Question 31 of 50
31. Question
1 pointsनिम्नलिखित में से IoT _______ पैमाने पर संचालित होता है?
In which of the following IoT operates on _______ scale?CorrectIncorrect - Question 32 of 50
32. Question
1 pointsनिम्नलिखित में से कौनसा कथन सेंसर के बारे में सत्य है?
Which of the following statements is true about sensors?CorrectIncorrect - Question 33 of 50
33. Question
1 pointsनिम्नलिखित में से यूएआरटी (शिफ्ट रजिस्टर शामिल है) _______ के समान है?
Which of the following UART (contains shift register) is similar to _______?CorrectIncorrect - Question 34 of 50
34. Question
1 pointsनिम्नलिखित में से पैकेट कितने प्रकार में स्थानांतरित किए जाते है?
How many of the following types of packets are transferred?CorrectIncorrect - Question 35 of 50
35. Question
1 pointsनिम्नलिखित में से RIP का फुल फॉर्म क्या होता है?
Which of the following is the full form of RIP?CorrectIncorrect - Question 36 of 50
36. Question
1 pointsनिम्नलिखित में से टीसीपी और यूडीपी को _______ भी कहा जाता है?
Among the following, TCP and UDP are also known as _______?CorrectIncorrect - Question 37 of 50
37. Question
1 pointsनिम्नलिखित में से टीसीपी मानक प्रोटोकॉल है जिसमें std नंबर है?
Which of the following is TCP standard protocol which has std number?CorrectIncorrect - Question 38 of 50
38. Question
1 pointsनिम्नलिखित में से Raspberry Pi में प्रयुक्त Raspbian OS किस OS पर आधारित है?
Raspbian OS used in Raspberry Pi is based on which of the following OS?CorrectIncorrect - Question 39 of 50
39. Question
1 pointsनिम्नलिखित में से कौन IOT प्लेटफार्म है?
Which of the following is an IOT platform?CorrectIncorrect - Question 40 of 50
40. Question
1 pointsArduino ओपन-सोर्स नहीं है।
Arduino is not open-source.CorrectIncorrect - Question 41 of 50
41. Question
1 pointsनिम्नलिखित में से HTTP प्रति घंटे कितने संदेश भेजे सकता है?
Which of the following can send how many messages per hour over HTTP?CorrectIncorrect - Question 42 of 50
42. Question
1 pointsनिम्नलिखित में से कौन सी सेवा दी गई IoT सेवा की जीवनचक्र स्थिति प्रदान करती है?
Which of the following service provides the lifecycle status of a given IoT service?CorrectIncorrect - Question 43 of 50
43. Question
1 pointsनिम्नलिखित में से कौनसी सेवा पंजीकृत सेवा के विवरण को पुनः प्राप्त करती है?
Which of the following service retrieves the details of the registered service?CorrectIncorrect - Question 44 of 50
44. Question
1 pointsनिम्नलिखित में से कौन सी सेवा उपयोगकर्ता को समय-समय पर पहले से परिभाषित आईओटी सेवा का आहवान करने में सक्षम बनाती है?
Which of the following service enables the user to periodically invoke a pre-defined IoT service?CorrectIncorrect - Question 45 of 50
45. Question
1 pointsनिम्नलिखित में से HTTP प्रोटोकॉल में कितने प्रकार के मैसेज फॉर्मेट होते हैं?
How many types of message formats are there in the HTTP protocol?CorrectIncorrect - Question 46 of 50
46. Question
1 pointsनिम्नलिखित में से IoT क्या एकत्र करता है?
Which of the following does IoT collect?CorrectIncorrect - Question 47 of 50
47. Question
1 pointsनिम्नलिखित में से IoT के स्मार्ट ग्रिड आर्किटेक्चर में क्लाउड की क्या भूमिका होती है?
Which of the following is the role of cloud in smart grid architecture of IoT?CorrectIncorrect - Question 48 of 50
48. Question
1 pointsनिम्नलिखित में से कौन सी परत IoT में एंड-टू-एंड संचार प्रदान करती है?
Which of the following layer provides end-to-end communication in IoT?CorrectIncorrect - Question 49 of 50
49. Question
1 pointsनिम्नलिखित में से I2C का दूसरा नाम क्या होता है?
Which of the following is another name for I2C?CorrectIncorrect - Question 50 of 50
50. Question
1 pointsनिम्नलिखित में से Aliasing से बचने के लिए हम एक _______ फिल्टर का उपयोग करते हैं?
To avoid Aliasing which of the following we use a _______ filter?CorrectIncorrect
Would you like to take mock tests of other O Level Online Tests, for that click on the button below!
O Level M4-R5 ऑनलाइन टेस्ट पार्ट-9 देने के बाद, आपने खुद का मूल्यांकन किया है और O लेवल परीक्षा के लिए बेहतर तैयारी की है। इस M4-R5 Online Test Set-9 को अपने अन्य दोस्तों के साथ साझा करना न भूलें और नीचे कमेंट बॉक्स में अपनी राय अवश्य लिखें। 😊
Thank you! 💜