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

O Level IoT Paper January 2025

Question: 1 Report Error

Arduino सॉफ़्टवेयर में LCD डिस्प्ले चलाने के लिए _____________ शामिल है।

The Arduino software includes the _____________ for driving LCD displays.

A)
B)
C)
D)
Explanation

The Arduino software includes the LiquidCrystal library for driving LCD displays.

Correct Answer: B) LiquidCrystal library


Question: 2 Report Error

वाक्य के प्रकार को पहचानें: लड़का टावर के शीर्ष पर चढ़ गया।

Identify the type of sentence: The boy climbed up to the top of the tower.

A)
B)
C)
D)
Explanation

A. Simple

Explanation:

  • The sentence has a single independent clause with one subject ("The boy") and one predicate ("climbed up to the top of the tower"), making it a simple sentence.
  • In the Hindi translation, "लड़का टावर के शीर्ष पर चढ़ गया।" is also a simple sentence as it conveys one complete thought with a single subject and predicate.

Correct Answer: A) Simple


Question: 3 Report Error

Arduino के साथ प्रदान किए गए HelloWorld स्केच को चलाने के लिए, आपको Arduino IDE में किन चरणों का पालन करना चाहिए?

To run the HelloWorld sketch provided with Arduino, which steps should you follow in the Arduino IDE?

A)
B)
C)
D)
Explanation

The correct answer is:
c) File → Examples → Library → LiquidCrystal → HelloWorld

Explanation:

To run the HelloWorld sketch provided with Arduino:

  1. Open the Arduino IDE.
  2. Navigate to File → Examples → Library → LiquidCrystal → HelloWorld.
  3. This opens the HelloWorld example sketch for the LiquidCrystal library, which demonstrates how to display "Hello, World!" on an LCD.
  4. You can then upload the sketch to your Arduino board.

Correct Answer: C) File → Examples → Library → LiquidCrystal → HelloWorld


Question: 4 Report Error

सॉफ्ट स्किल्स किस वर्ष शुरू की गईं?

Soft skills introduced in which year?

A)
B)
C)
D)
Explanation

The term "soft skills" was formally introduced in 1972 by the U.S. Army in a training manual. It was used to distinguish non-technical skills—such as leadership, communication, teamwork, and problem-solving—from technical or "hard" skills. Over time, this concept became widely adopted in education, business, and professional training to emphasize the importance of interpersonal and social abilities in various fields.

Correct Answer: B) 1972


Question: 5 Report Error

कोड संकलित करने का उद्देश्य क्या है?

What is the purpose of compiling code?

A)
B)
C)
D)
Explanation

The purpose of compiling code is to translate the high-level programming language (source code) written by the programmer into a machine-readable format (binary or object code) that a computer's processor can execute. This process is essential because computers can only understand machine language (binary instructions).

Key purposes of compiling code:

  1. Translation to Machine Code:
    Converts human-readable code into low-level instructions that the hardware can execute.

  2. Error Checking:
    Detects and highlights syntax errors, type mismatches, and other issues in the source code before execution.

  3. Optimization:
    Improves the performance of the code by optimizing it for speed or memory usage.

  4. Executable File Creation:
    Produces a standalone executable file (e.g., .exe in Windows or binary in Linux) that can run independently without the need for the source code or compiler.

  5. Code Security:
    Hides the source code by converting it into a binary form, making it harder for others to reverse-engineer or modify the program.

Correct Answer: D) To translate the source code into machine code


Question: 6 Report Error

समान वस्तु के संग्रह या समूह को कहते हैं

A collection or group of similar object is called

A)
B)
C)
D)
Explanation

In a general programming context, a collection or group of similar objects is called an array.

Explanation:

  • An array is a data structure that holds a fixed number of elements, all of the same type.
  • Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value.

Key Characteristics of an Array:

  1. Same Data Type: All elements in an array must be of the same type (e.g., integers, floats, or strings).
  2. Fixed Size: The size of the array is defined at the time of declaration and cannot be changed dynamically (in static arrays).
  3. Indexed Access: Elements can be accessed using their index, starting from 0.

Correct Answer: B) Array


Question: 7 Report Error

सारणियों की सारणी को ____सरणी कहा जाता है

Array of arrays is called ____array

A)
B)
C)
D)
Explanation

An array of arrays is called a multidimensional array.

A multidimensional array is a data structure that allows you to store data in a table-like structure with rows and columns. The most common type is a 2D array, but higher dimensions are also possible.

Correct Answer: C) Multidimensional


Question: 8 Report Error

C भाषा में किसी फ़ंक्शन को परिभाषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?

Which keyword is used to define a function in C Language?

A)
B)
C)
D)
Explanation

In the C programming language, the keyword used to define a function is the function's return type (e.g., int, float, void, etc.). Unlike some other languages, C does not use a specific keyword like def or function to define a function.

In C programming, void is a keyword used to define a function that does not return a value. It can also be used for function parameters to indicate that the function does not take any arguments.

Key Uses of void:

  1. Void Function:
    A function that does not return a value is defined with void as the return type.

     
    void printMessage() { printf("Hello, World!\n"); }

    In this case, printMessage does not return any value, so its return type is void.

  2. Void Pointer:
    A void pointer (void *) is a special pointer type that can point to any data type. It is used when the type of data is unknown or varies.

     
    void *ptr; int num = 5; ptr = # // void pointer can point to an int
  3. Void Function Parameters:
    If a function takes no arguments, you can specify void in the parameter list.

     
    void greet(void) { printf("Welcome!\n"); }

In summary, void is used to specify that a function does not return a value or to declare pointers that can point to any data type.

Correct Answer: D) void


Question: 9 Report Error

LDR सेंसर किस प्रकार का सेंसर है?

What kind of sensor is the LDR Sensor?

A)
B)
C)
D)
Explanation

The LDR (Light Dependent Resistor) is classified as a passive sensor.

Explanation:

  • Passive sensors are sensors that do not require an external power source to function. They detect and respond to a physical parameter (like light in the case of the LDR) by changing their own physical properties (in this case, resistance).
  • LDRs change their resistance based on the amount of light they are exposed to but do not require any external power for detection. The sensor's resistance varies depending on the intensity of light, and this change can be measured by a circuit.

Comparison:

  • Active Sensors require an external power source to operate and generate a signal (e.g., ultrasonic sensors, temperature sensors with built-in signal generation).
  • Passive Sensors simply respond to changes in their environment and typically modify a property (such as resistance, capacitance, or inductance) without needing an external power supply for operation.

Applications:

  • Automatic Lighting Systems: LDRs are commonly used to automatically turn on lights when it gets dark (such as street lighting or night lamps).
  • Solar Garden Lights: They detect light intensity to turn on lights at night.
  • Light Metering: Used in devices for measuring light intensity.

Correct Answer: A) Passive


Question: 10 Report Error

What is the primary use of the if-else statement in C language?

C भाषा में if-else स्टेटमेंट का प्राथमिक उपयोग क्या है?

A)
B)
C)
D)

Question: 11 Report Error

मेमो का समानार्थी शब्द कौन सा नहीं है?

Which is not the synonym of memo?

A)
B)
C)
D)
Explanation

Synonym of memo's are: comment, commentary, diary, journal, letter, memorandum, message, remark, summary
, agenda, minute, notation, observation, record etc.

Correct Answer: D) Minute


Related Papers



















































Latest Updates