MCQs on Java
UPP Programmer 2013
जावा के संदर्भ में कचरा संग्रहण क्या है?
What is garbage collection in the context of Java ?
[A] The operating system periodically deletes all of the java files available on the system.
[B] Any package imported in a program and not used is automatically deleted.
[C] The JVM checks the output of any Java program and deletes anything that doesn’t make sense.
[D] When all references to an object are gone, the memory used by the object is automatically reclaimed.
Correct Answer : When all references to an object are gone, the memory used by the object is automatically reclaimed.
UPP Programmer 2013
जावा के संदर्भ में बाइट कोड क्या है?
What is byte code in the context of Java ?
[A] The type of code generated by a Java compiler
[B] The type of code generated by a Java Virtual Machine
[C] It is another name for a Java source file
[D] It is the code written within the instance methods of a class
Correct Answer : The type of code generated by a Java Virtual Machine
UPP Programmer 2013
जावा में कौन सा वर्ग उपवर्ग नहीं हो सकता?
In Java which class cannot be a subclass ?
[A] Abstract
[B] Parent
[C] Final
[D] None
Correct Answer : Final
UPP Programmer 2013
निम्नलिखित में से कौन सा वेरिएबल डिक्लेरेशन जावा प्रोग्राम में संकलित नहीं किया जाएगा?
Which of the following variable declaration would not be compiled in a Java program ?
[A] int var;
[B] int VAR;
[C] int var1;
[D] int 1_var
Correct Answer : int 1_var
MPESB Group-4 2023
__________ नियमों का समूह है जो संरचित जावास्क्रिप्ट को परिभाषित करता है।
__________ is the set of rules that define a structured JavaScript.
[A] Server-side JavaScript
[B] Javascript Syntax
[C] Client-side JavaScript
[D] script Javascript
Correct Answer : Javascript Syntax
Chhattisgarh ITI 2023
एनिमेशन के समय और अनुक्रम को नियंत्रित करने के लिए आमतौर पर किस जावास्क्रिप्ट विधि का उपयोग किया जाता है?
Which JavaScript method is commonly used to control the timing and sequencing of animations?
[A] setInterval()
[B] setTimeout()
[C] requestAnimationFrame()
[D] clearTimeout()
Correct Answer : setTimeout()
Chhattisgarh ITI 2023
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?
What is the output of the following code snippet?
const chkStr = str => str ===
str.split('''') .reverse().join('''');
console.log(chkStr (''ITI ''));
[A] Checks if a string contains a palindrome
[B] Removes whitespace from the beginning and end of a string
[C] Converts all characters in a string to lowercase
[D] Capitalizes the first letter of each word in a string
Correct Answer : Checks if a string contains a palindrome
Chhattisgarh ITI 2023
मानों के संग्रह को दर्शाने के लिए किस जावास्क्रिप्ट डेटा प्रकार का उपयोग किया जाता है, जहां प्रत्येक मान को एक अद्वितीय कुंजी द्वारा पहचाना जाता है?
Which JavaScript data type is used to represent a collection of values, where each value is identified by a unique key?
[A] Array
[B] Object
[C] Set
[D] Map
Correct Answer : Object
Chhattisgarh ITI 2023
निम्नलिखित जावास्क्रिप्ट कोड का परिणाम क्या है?
What is the result of the following JavaScript code?
console.log(typeof null);
[A] “object”
[B] “null”
[C] “undefined”
[D] “string”
Correct Answer : “object”
Chhattisgarh ITI 2023
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?
What is the output of the following code snippet?
let sum = 0;
for (let i = 0; i <= 10; i++) {
if(i % 2 === 0) {
continue;
}
sum +=i;
}
console.log(sum);
[A] 20
[B] 25
[C] 30
[D] 35
Correct Answer : 25
Chhattisgarh ITI 2023
जावास्क्रिप्ट में किस अंतर्निहित फ़ंक्शन का उपयोग किसी निर्दिष्ट मूलांक का उपयोग करके किसी संख्या को स्ट्रिंग में बदलने के लिए किया जाता है?
Which built-in function in JavaScript is used to convert a number to a string, using a specified radix?
[A] toString()
[B] convertToString()
[C] stringify()
[D] radixToString()
Correct Answer : toString()
Chhattisgarh ITI 2023
ब्राउज़र कंसोल पर संदेशों को लॉग करने के लिए किस जावास्क्रिप्ट फ़ंक्शन का उपयोग किया जाता है?
Which JavaScript function is used to log messages to the browser console?
[A] HTTP
[B] Marquee
[C] Hyperlink
[D] IP address
Correct Answer : Hyperlink
Chhattisgarh ITI 2023
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?
What is the output of the following code snippet?
const arr = [10, 20, 30, 40, 50];
const result = arr.map(num => num >
30);
console.log(result);
[A] [false, false, false, true, true]
[B] [true, true, true, false, false]
[C] [false, false, true, true, true]
[D] [true, true, true, true, true]
Correct Answer : [false, false, false, true, true]
Chhattisgarh ITI 2023
जावास्क्रिप्ट में सख्त समानता तुलना करने के लिए किस ऑपरेटर का उपयोग किया जाता है?
Which operator is used to perform strict equality comparison in JavaScript?
[A] ==
[B] ===
[C] !=
[D] !==
Correct Answer : ===
Chhattisgarh ITI 2023
जावास्क्रिप्ट ऑब्जेक्ट मॉडल के बारे में निम्नलिखित में से कौन सा कथन सत्य है?
Which of the following statements is true about the JavaScript object model?
[A] It is a hierarchical representation of objects and their relationships.
[B] It is a graphical representation of objects and their properties.
[C] It is a collection of predefined objects provided by the JavaScript engine.
[D] It is a programming paradigm used in JavaScript for object-oriented programming.
Correct Answer : It is a hierarchical representation of objects and their relationships.
Chhattisgarh ITI 2023
निम्नलिखित में से कौन सा विकल्प जावास्क्रिप्ट के 'टाइपऑफ़' ऑपरेटर के व्यवहार का सही वर्णन करता है?
Which of the following options correctly describes the behaviour of JavaScript’s ‘typeof’ operator?
[A] It returns the specific data type of a value.
[B] It returns a string representation of the data type of a value.
[C] It returns a Boolean value indicating if a value is null or not.
[D] It returns the memory size in bytes occupied by a value.
Correct Answer : It returns a string representation of the data type of a value.
Chhattisgarh ITI 2023
निम्नलिखित कोड स्निपेट का आउटपुट क्या है?
What is the output of the following code snippet?
console.log(Math.floor(-4.7));
[A] -4
[B] -5
[C] 4
[D] 5
Correct Answer : -5
Chhattisgarh ITI 2023
जावास्क्रिप्ट ऑब्जेक्ट मॉडल में मैथ, ऐरे और स्ट्रिंग जैसे अंतर्निहित ऑब्जेक्ट शामिल हैं। ये वस्तुएं इसका हिस्सा हैं:
The JavaScript object model consists of built-in objects such as Math, Array and String. These objects are part of the:
[A] BOM (Browser Object Model)
[B] DOM (Document Object Model)
[C] ECMAScript standard
[D] JavaScript runtime environment
Correct Answer : ECMAScript standard
UPPCL-TG2-2021
निम्नलिखित में से कौन सी भाषा उच्च स्तरीय भाषा है?
Which of the following language is a high -level language ?
[A] Machine language
[B] binary language
[C] Java
[D] MSIL (Microsoft Intermediate Language)
Correct Answer : Java
CTS COPA 2024
जावा प्रोग्रामिंग भाषा का पहले नाम __ था
Earlier name of Java Programming language was __
[A] Eclipse
[B] Oak
[C] Netbean
[D] Pycharm
Correct Answer : Oak
CTS COPA 2024
जावा में पैकेज को परिभाषित करने के लिए इनमें से किस कीवर्ड का उपयोग किया जाता है?
Which of these keywords is used to define packages in Java?
[A] pkg
[B] Pkg
[C] package
[D] Package
Correct Answer : package
CTS-COPA 2024
HTML द्वारा होस्ट किए गए जावा एप्लेट क्लासेस की व्याख्या और निष्पादन के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Which of the following is used to interpret and execute Java Applet Classes hosted by HTML?
[A] Appletviewer
[B] Applewatcher
[C] Appletshow
[D] Appletscreen
Correct Answer : Appletviewer
CTS-COPA 2024
निम्नलिखित में से कौन सा एक आदिम डेटा प्रकार नहीं है?
Which of the following is not a primitive data type ?
[A] Byte
[B] Enum
[C] Short
[D] Int
Correct Answer : Enum
CTS-COPA 2024
पूर्णांक डेटा प्रकार में निम्नलिखित आदिम डेटा प्रकार शामिल नहीं है ______.
Integer data type does not include following primitive data type ______.
[A] Long
[B] Byte
[C] Short
[D] double
Correct Answer : double
CTS-COPA 2024
__________अक्षरों का एक अनुक्रम है।
__________are a sequence of characters.
[A] Characters
[B] String
[C] Integer
[D] Classes
Correct Answer : String
CTS-COPA 2024
किसी वस्तु के बारे में जानकारी प्राप्त करने के लिए प्रयुक्त विधियों को __________ के रूप में जाना जाता है।
Methods used to obtain information about an object are known as __________.
[A] string method
[B] class method
[C] accessor methods
[D] object method
Correct Answer : accessor methods
CTS-COPA 2024
_____जावा में प्रवाह नियंत्रण कथन नहीं है।
_____is not a flow control statement in Java.
[A] Break
[B] Exit()
[C] Continue
[D] Return
Correct Answer : Exit()
CTS-COPA 2024
एक__________ कथन हमें एक कथन या कथनों के समूह को कई बार निष्पादित करने की अनुमति देता है।
A__________ statements allows us to execute a statement or group of statement multiple time.
[A] array
[B] loop
[C] function
[D] exception
Correct Answer : loop
CTS-COPA 2024
इनमें से कौन सा क्लास जावा में प्रत्येक क्लास का सुपरक्लास है?
Which of these class is superclass of every class in Java?
[A] String class
[B] Object class
[C] Abstract class
[D] Arraylist class
Correct Answer : Object class
CTS-COPA 2024
ऑब्जेक्ट क्लास की इनमें से कौन सी विधि किसी ऑब्जेक्ट को क्लोन कर सकती है?
Which of these method of object class can clone an object ?
[A] Objectcopy( )
[B] Copy()
[C] Object clone()
[D] Clone()
Correct Answer : Object clone()
CTS-COPA 2024
इनमें से कौन से कीवर्ड का उपयोग किसी क्लास की विरासत को रोकने के लिए किया जा सकता है?
Which of these keywords can be used to prevent inheritance of a class?
[A] Super
[B] Constant
[C] Class
[D] Final
Correct Answer : Final