O Level
Questions No: 1/50

In HTML, the tags are
HTML में, टैग हैं

Questions No: 2/50

Advantage of using Flow Charts are :
फ्लोचार्ट का उपयोग करने का लाभ है:

Questions No: 3/50

Communication is a part of ____ skills.
संचार........कौशल का एक भाग है।

Questions No: 4/50

Which of these definitions correctly describes a module?
इनमें से कौन सी परिभाषा सही ढंग से एक मॉड्यूल का वर्णन करती है?

Questions No: 5/50

For defining internal links in a page which attribute is used
एक पेज में आंतरिक लिंक को परिभाषित करने के लिए किस विशेषता का उपयोग किया जाता है

Questions No: 6/50

Which method is used to replace an existing element in the DOM with a new one?
DOM में मौजूदा तत्व को नए तत्व से बदलने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 7/50

Notepad++ is written in which language
नोटपैड++ किस भाषा में लिखा गया है?

Questions No: 8/50

IEEE 802.16 protocol stack is commonly referred as
IEEE 802.16 प्रोटोकॉल स्टैक को सामान्यतः कहा जाता है

Questions No: 9/50

Match the Internet Services with Their Correct Descriptions


Internet ServiceDescriptions 
1. EmailA. Provides storage and access to files over the internet
2. Cloud ComputingB. A service that allows users to send and receive messages electronically
3. VoIP (Voice over IP)C. Enables users to make voice and video calls over the internet
4. FTP (File Transfer Protocol)D. A protocol used to transfer files between computers on a network

E. A tool used to browse websites and access web pages

F. A service that provides real-time news updates


Questions No: 10/50

UMANG App do not provides services for
UMANG App ________ के लिए सेवाएं प्रदान नहीं करता है

Questions No: 11/50

What will be the output of the following Python code snippet?

x = 2
for i in range(x):
    x += 1
    print (x)

Questions No: 12/50

What will be the output of the following Python code snippet?

d = {"john":40, "peter":45}
print(d["john"])

Questions No: 13/50

What will be the output of the following Arduino code?

#define X 10;
void setup()
{
X=0;
Serial.begin(9600);
Serial.print(X);
}
void loop()
{
//Do nothing…
}

Questions No: 14/50

IIoT targets applications related to
IIoT से संबंधित अनुप्रयोगों को लक्षित करता है

Questions No: 15/50

In peer-to-peer network, each computer in a network is referred as?
पीयर-टू-पीयर नेटवर्क में, नेटवर्क में प्रत्येक कंप्यूटर को क्या कहा जाता है?

Questions No: 16/50

Ctrl+ Shift + P is the shortcut key to open _____ in sublime text editor.
Ctrl+Shift+P सबलाइम टेक्स्ट एडिटर में ______ ओपन करने की शॉर्टकट कुंजी है।

Questions No: 17/50

Which of the following methods is used to insert a new element before an existing element in the DOM?
DOM में मौजूदा तत्व से पहले एक नया तत्व डालने के लिए निम्नलिखित में से किस विधि का उपयोग किया जाता है?

Questions No: 18/50

What is the full form of SIM
सिम का फुल फॉर्म क्या होता है

Questions No: 19/50

What indicates to the reader the purpose or a letter ?
पाठक को पत्र उद्देश्य क्या इंगित करता है?

Questions No: 20/50

What is the objective of the code given below if it is executed on the Arduino Uno?

#include<EEPROM.h>
int pin=13;
void setup(){
pinMode(pin,OUTPUT);
Serial.begin(9600);
 void loop(){
for(int i-0; i<EEPROM.length(); i++) {
EEPROM.write(i, 1);
digitalWrite(pin, HIGH);
exit(0); 
}

Questions No: 21/50

Which language is used to bult Arduino IDE ?
Arduino IDE किस भाषा पर बनाया गया है?

Questions No: 22/50

A single line comment begins with _____
एक सिंगल लाइन कमेंट के ......... साथ शुरू होता है

Questions No: 23/50

What will be the output of the following Python code?

 x = "abcdef"
i = "a"
while i in x:
    print('i', end = " ")

Questions No: 24/50

Which method is used to stop an event from propagating to parent elements in the DOM?
किसी ईवेंट को DOM में मूल तत्वों तक फैलने से रोकने के लिए किस विधि का उपयोग किया जाता है?

Questions No: 25/50

Which of the following HTML tag is used to create an unordered list?
निम्नलिखित में से किस HTML टैग का उपयोग अव्यवस्थित सूची बनाने के लिए किया जाता है?

Questions No: 26/50

How do you correctly link an external JavaScript file to an HTML document?
आप बाहरी जावास्क्रिप्ट फ़ाइल को HTML दस्तावेज़ से सही ढंग से कैसे लिंक करते हैं?

Questions No: 27/50

Which event fires when the user right-clicks on an element?
जब उपयोगकर्ता किसी तत्व पर राइट-क्लिक करता है तो कौन सी घटना सक्रिय हो जाती है?

Questions No: 28/50

Which can contain multiple lines of text.
जिसमें टेक्स्ट की कई पंक्तियाँ हो सकती हैं।

Questions No: 29/50

What will be the output of the following Python code?

d = {0, 1, 2}
for x in d:
    print(x)

Questions No: 30/50

______ is text with hyperlinks
________ हाइपरलिंक्स वाला टेक्स्ट है

Questions No: 31/50

What will be the output of the following ?

import numpy as np
a = np.array( [2, 3, 4, 5] )
b = np.arange(4)
print(a+b)

Questions No: 32/50

Match the CSS Background Property with Its Function


CSS PropertyFunction
A. background-color1. Sets an image as the background of an element
B. background-image2. Specifies how a background image repeats
C. background-repeat3. Defines the position of a background image within an element
D. background-position4. Sets the background color of an element

5. Specifies whether the background is fixed or scrolls with the page

6. Controls the transparency of the background color


Questions No: 33/50

Select the CSS property that sets the width of an element’s bottom border.
उस सीएसएस प्रॉपर्टी का चयन करें जो किसी तत्व की निचली सीमा की चौड़ाई निर्धारित करती है?

Questions No: 34/50

Program written in Arduino IDE is known as
Arduino IDE में लिखे गए प्रोग्राम को कहा जाता है

Questions No: 35/50

Which attribute is used to define the URL of an image in HTML
HTML में किसी छवि के URL को परिभाषित करने के लिए किस विशेषता का उपयोग किया जाता है

Questions No: 36/50

Predict the output of the following code if the object is moving towards the sensor.

int op = 6;
int isBarrier = HIGH;
void setup() {
pinMode(op, INPUT);
Serial.begin(9600);
}
void loop(){
isBarrier = digitalRead(op);
if (isBarrier == LOW) {
Serial.print("1+");
}
else{
Serial.print("clear+"); 
delay(100);
}

Questions No: 37/50

What is the maximum length of a Wi-Fi password?
वाई-फाई के पासवर्ड की मैक्सिमम लेंथ कितनी हो सकती है?

Questions No: 38/50

What does NTFS stand for
एनटीएफएस का क्या अर्थ है

Questions No: 39/50

For which of the following purpose(s) JavaScript is designed for ?
निम्नलिखित में से किस उद्देश्य (उद्देश्यों) के लिए जावास्क्रिप्ट को डिज़ाइन किया गया है?

Questions No: 40/50

During embedded design, which design considers both hardware and software
एम्बेडेड डिज़ाइन के दौरान, कौन सा डिज़ाइन हार्डवेयर और सॉफ्टवेयर दोनों पर विचार करता है

Questions No: 41/50

Determine the benefits of writing.
लेखन के लाभों का निर्धारण करें।

Questions No: 42/50

Raw data assigned to a variable is called as
एक वेरिएबल को असाइन किए गए रॉ डेटा को कहा जाता है

Questions No: 43/50

Capacitor blocks AC and allows DC to pass through.
कैपेसिटर एसी को ब्लॉक करता है और डीसी को गुजरने की अनुमति देता है।

Questions No: 44/50

If we want to add some document in mail then we choose which option ?
यदि हम मेल में कुछ दस्तावेज़ जोड़ना चाहते हैं तो हम कौन सा विकल्प चुनते हैं?

Questions No: 45/50

What will be the value of =Product (7, -5)?
=Product(7,-5) का क्या मान आएगा?

Questions No: 46/50

How can you retrieve the value of an input field in a form using JavaScript?
आप जावास्क्रिप्ट का उपयोग करके किसी फॉर्म में इनपुट फ़ील्ड का मान कैसे प्राप्त कर सकते हैं?

Questions No: 47/50

What will the following code output?

a=55	
b=’55’
print( a is not b)

Questions No: 48/50

Which of the following selector applied styles to elements that are valid per HTML5 validations set either with the pattern or type attributes ?
निम्न सेलेक्टरों में से कौन स्टाइल उन एलिमेंट पर लागू होता है जो एचटीएमएल5 मान्यताओं के अनुसार वैध है या तो पैटर्न या प्रकार एट्रीब्यूटो के साथ सेट हैं ?

Questions No: 49/50

Which of the following is not a relational opeartor in Python?
निम्नलिखित में से कौन पायथन में एक रिलेशनल ऑपरेटर नहीं है?

Questions No: 50/50

Which step in the information-processing cycle uses the computer’s CPU?
सूचना-प्रसंस्करण चक्र में कौन सा कदम कंप्यूटर के सीपीयू का उपयोग करता है?