O Level IoT Paper January 2025
Arduino सॉफ़्टवेयर में LCD डिस्प्ले चलाने के लिए _____________ शामिल है।
The Arduino software includes the _____________ for driving LCD displays.
The Arduino software includes the LiquidCrystal library for driving LCD displays.
Correct Answer: B) LiquidCrystal library
वाक्य के प्रकार को पहचानें: लड़का टावर के शीर्ष पर चढ़ गया।
Identify the type of sentence: The boy climbed up to the top of the tower.
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
Arduino के साथ प्रदान किए गए HelloWorld स्केच को चलाने के लिए, आपको Arduino IDE में किन चरणों का पालन करना चाहिए?
To run the HelloWorld sketch provided with Arduino, which steps should you follow in the Arduino IDE?
The correct answer is:
c) File → Examples → Library → LiquidCrystal → HelloWorld
Explanation:
To run the HelloWorld sketch provided with Arduino:
- Open the Arduino IDE.
- Navigate to File → Examples → Library → LiquidCrystal → HelloWorld.
- This opens the HelloWorld example sketch for the LiquidCrystal library, which demonstrates how to display "Hello, World!" on an LCD.
- You can then upload the sketch to your Arduino board.
Correct Answer: C) File → Examples → Library → LiquidCrystal → HelloWorld
सॉफ्ट स्किल्स किस वर्ष शुरू की गईं?
Soft skills introduced in which year?
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
कोड संकलित करने का उद्देश्य क्या है?
What is the purpose of compiling code?
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:
-
Translation to Machine Code:
Converts human-readable code into low-level instructions that the hardware can execute. -
Error Checking:
Detects and highlights syntax errors, type mismatches, and other issues in the source code before execution. -
Optimization:
Improves the performance of the code by optimizing it for speed or memory usage. -
Executable File Creation:
Produces a standalone executable file (e.g.,.exein Windows or binary in Linux) that can run independently without the need for the source code or compiler. -
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
समान वस्तु के संग्रह या समूह को कहते हैं
A collection or group of similar object is called
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:
- Same Data Type: All elements in an array must be of the same type (e.g., integers, floats, or strings).
- Fixed Size: The size of the array is defined at the time of declaration and cannot be changed dynamically (in static arrays).
- Indexed Access: Elements can be accessed using their index, starting from 0.
Correct Answer: B) Array
सारणियों की सारणी को ____सरणी कहा जाता है
Array of arrays is called ____array
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
C भाषा में किसी फ़ंक्शन को परिभाषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
Which keyword is used to define a function in C Language?
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:
-
Void Function:
A function that does not return a value is defined withvoidas the return type.In this case,
printMessagedoes not return any value, so its return type isvoid. -
Void Pointer:
Avoidpointer (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 Function Parameters:
If a function takes no arguments, you can specifyvoidin the parameter list.
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
LDR सेंसर किस प्रकार का सेंसर है?
What kind of sensor is the LDR Sensor?
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
मेमो का समानार्थी शब्द कौन सा नहीं है?
Which is not the synonym of memo?
Synonym of memo's are: comment, commentary, diary, journal, letter, memorandum, message, remark, summary
, agenda, minute, notation, observation, record etc.
Correct Answer: D) Minute