Module 17 : Elective-2 Programming language (JAVA)

Question 1A __________ statement allows us to execute a statement or group of statements multiple times. | हमें एक स्टेटमेंट या स्टेटमेंट के ग्रूप को कई बार निष्पादित करने की अनुमति __________ स्टेटमेंट देता है।
Question 2What is the syntax of a continue is a single statement inside any loop? | किसी भी लूप के अंदर जारी एक एकल कथन का सिंटैक्स क्या है?
Question 3Java array can allocate __________. | जावा ऐरे ______ आवंटित कर सकता है।
Question 4Which of the following can be operands of arithmetic operators? | निम्नलिखित में से कौन सा अंकगणितीय ऑपरेटरों का ऑपरेंड हो सकता है?
Question 5What is the output of the below Java program with Method Overriding? class Sparrow{ } class BigSparrow extends Sparrow { } class Cat2 { Sparrow jumpingHeight(int weight) { System.out.println(40); return new Sparrow(); } } class WildCat2 extends Cat2 { BigSparrow jumpingHeight(int weight) { System.out.println(ʺ50ʺ); return new BigSparrow(); } } public class MethodOverriding4 { public static void main(String[] args) { WildCat2 wc = new WildCat2(); wc.jumpingHeight(80); } } | मेथड ओवरराइडिंग के साथ नीचे दिए गए जावा प्रोग्राम का आउटपुट क्या है? class Sparrow{ } class BigSparrow extends Sparrow { } class Cat2 { Sparrow jumpingHeight(int weight) { System.out.println(40); return new Sparrow(); } } class WildCat2 extends Cat2 { BigSparrow jumpingHeight(int weight) { System.out.println(ʺ50ʺ); return new BigSparrow(); } } public class MethodOverriding4 { public static void main(String[] args) { WildCat2 wc = new WildCat2(); wc.jumpingHeight(80); } }
Question 6If a class inheriting an abstract class does not define all of its function then it will be known as______. | यदि एक अमूर्त वर्ग को विरासत में मिला वर्ग अपने सभी कार्यों को परिभाषित नहीं करता है तो इसे ______ के रूप में जाना जाएगा।
Question 7Which of these keywords is used to define packages in Java? | Java में पैकेज को परिभाषित करने के लिए इनमें से किस कीवर्ड का उपयोग किया जाता है?
Question 8What will be the output of the following Java code? class Output { public static void main(String args[]) { Object obj = new Object(); System.out.print(obj.getclass()); } } | निम्नलिखित जावा कोड का आउटपुट क्या होगा? class Output { public static void main(String args[]) { Object obj = new Object(); System.out.print(obj.getclass()); } }
Question 9The break statement causes an exit from ______ loop. | ब्रेक स्टेटमेंट ______ लूप से बाहर निकलने का कारण बनता है।
Question 10Which kind of language java is? | जावा किस प्रकार की भाषा है?
Question 11Which of the following is false statement about package in java? | जावा में पैकेज के बारे में निम्नलिखित में से कौन सा गलत कथन है?
Question 12Which of these is necessary to What is the output of below snippet? Specify at time of array initialization? Object[] names = new String[3]; names[0] = new Integer(0); | नीचे दिए गए स्निपेट के आउटपुट के लिए इनमें से कौन सा आवश्यक है? सरणी आरंभीकरण के समय निर्दिष्ट करें? Object[] names = new String[3]; names[0] = new Integer(0);
Question 13Integer data type does not include following primitive data type ____________. | इंटेगर डेटा टाइप में निम्नलिखित प्रिमिटिव डेटा टाइप ____________ शामिल नहीं है।
Question 14An _______________ statement can be used to access the classes and interface of a different package from the current package. | एक _______ स्टेटमेंट का उपयोग मौजूदा पैकेज से भिन्न पैकेज की क्लास और इंटरफ़ेस तक पहुँचने के लिए किया जा सकता है।
Question 15Which of these class is superclass of every class in Java? | इनमें से कौन सा वर्ग जावा में प्रत्येक क्लास का सुपरक्लास है?
Question 16A __________ loop statement in Java programming language repeatedly executes a target statement as long as a given condition is true. | जावा प्रोग्रामिंग भाषा में एक __________ लूप स्टेटमेंट एक लक्ष्य स्टेटमेंट को बार-बार निष्पादित करता है जब तक कि दी गई स्थिति सत्य है।
Question 17Which of the following is used to interpret and execute Java Applet Classes hosted by HTML? | HTML द्वारा होस्ट किए गए Java Applet Classes की व्याख्या और निष्पादन के लिए निम्न में से किसका उपयोग किया जाता है?
Question 18Methods used to obtain information about an object are known as ______ | किसी वस्तु के बारे में जानकारी प्राप्त करने के लिए उपयोग की जाने वाली विधियों को ______ के रूप में जाना जाता है
Question 19class Main { public static void main(String args[]) { int t; System.out.println(t); } }
Question 20Default, public , protected, private are_____. | डिफ़ॉल्ट, सार्वजनिक, संरक्षित, निजी_____ हैं।
Question 21What is the output of this program? class Main { public static void main(String args[]) { double var1 = 2 + 4; double var2 = var1 / 4; int var3 = 2 + 4; int var4 = var3 / 4; System.out.print(var2 + ʺ ʺ + var4); } } | इस प्रोग्राम का आउटपुट क्या है? class Main { public static void main(String args[]) { double var1 = 2 + 4; double var2 = var1 / 4; int var3 = 2 + 4; int var4 = var3 / 4; System.out.print(var2 + ʺ ʺ + var4); } }
Question 22What will be the output of the following Java program? package pkg; class output { public static void main(String args[]) { StringBuffer s1 = new StringBuffer(ʺHello Worldʺ); s1.insert(6 , ʺGood ʺ); System.out.println(s1); } } Note : Output.class file is not in directory pkg. | निम्नलिखित जावा प्रोग्राम का आउटपुट क्या होगा? package pkg; class output { public static void main(String args[]) { StringBuffer s1 = new StringBuffer(ʺHello Worldʺ); s1.insert(6 , ʺGood ʺ); System.out.println(s1); } } ध्यान दें: आउटपुट.क्लास फ़ाइल डायरेक्टरी pkg में नहीं है।
Question 23Which of the following is used to declare, construct, and initialize an array? | निम्नलिखित में से किसका उपयोग किसी ऐरे को घोषित करने, बनाने और आरंभ करने के लिए किया जाता है?
Question 24Which of these keywords cannot be used for a class which has been declared final? | इनमें से कौन सा कीवर्ड उस वर्ग के लिए उपयोग नहीं किया जा सकता जिसे अंतिम घोषित कर दिया गया है?
Question 25Interface calculate { void cal(int item); } class display implements calculate { int x; public void cal(int item) { x = item * item; } } class Main { public static void main(String args[]) { display arr = new display(); arr.x = 0; arr.cal(2); System.out.print(arr.x); } } | इंटरफ़ेस गणना { void cal(int item); } class display implements calculate { int x; public void cal(int item) { x = item * item; } } class Main { public static void main(String args[]) { display arr = new display(); arr.x = 0; arr.cal(2); System.out.print(arr.x); } }
Question 26Which of these keywords can be used to prevent inheritance of a class? | इनमें से किस कीवर्ड का उपयोग किसी क्लास की इनहेरिटेन्स को रोकने के लिए किया जा सकता है?
Question 27Which of the following personality is called as father of Java programming language? | निम्नलिखित में से किस व्यक्तित्व को जावा प्रोग्रामिंग भाषा का जनक कहा जाता है?
Question 28Which of the following is not a primitive data type? | निम्नलिखित में से कौन-सा प्रिमिटिव डेटा टाइप नहीं है?
Question 29Modulus operator, %, can be applied to which of these? | मॉड्यूलस ऑपरेटर, %, इनमें से किस पर लागू किया जा सकता है?
Question 30Range of Byte data type is ____________. | बाइट डेटा प्रकार की सीमा ____________ है।
Question 31Which of the following is the correct way of importing an entire package ‘pkg’? | संपूर्ण पैकेज ʹpkgʹ आयात करने का सही तरीका निम्नलिखित में से कौन सा है?
Question 32Which method returns a String that represents the character sequence in the array specified? | कौन सी विधि एक स्ट्रिंग लौटाती है जो निर्दिष्ट सरणी में वर्ण अनुक्रम का प्रतिनिधित्व करती है?
Question 33Which statement causes the loop to immediately jump to the next iteration of the loop? | कौन सा कथन लूप को तुरंत लूप के अगले पुनरावृत्ति पर ले जाने का कारण बनता है?
Question 34Which of the following for loop declaration is not valid? | लूप घोषणा के लिए निम्नलिखित में से कौन सा मान्य नहीं है?
Question 35Which of these is correct way of inheriting class A by class B? | इनमें से कौन सा क्लास B द्वारा क्लास A को इनहेरिट करने का सही तरीका है?
Question 36What does an interface contain? | इंटरफ़ेस में क्या होता है?
Question 37Array data access using _____. | डेटा ऐक्सेस को _____ का उपयोग करके ऐरे करें।
Question 38___________ can be defined as the process where one class acquires the properties (methods and fields) of another. | ___________ को उस प्रक्रिया के रूप में परिभाषित किया जा सकता है जहां एक वर्ग दूसरे के गुण (तरीके और क्षेत्र) प्राप्त करता है।
Question 39HTML based Java Documentary help can be accessed using ______________. | HTML आधारित जावा डॉक्यूमेंट्री सहायता को ______________ का उपयोग करके प्राप्त किया जा सकता है।
Question 40Which of the following is not a keyword in Java? | निम्नलिखित में से कौन सा जावा में एक कीवर्ड नहीं है?
Question 41___________ is the keyword used to inherit the properties of a class. | ___________ वह कीवर्ड है जिसका उपयोग किसी वर्ग के गुणों को प्राप्त करने के लिए किया जाता है।
Question 42Which methods to print output with formatted numbers? | स्वरूपित संख्याओं के साथ आउटपुट प्रिंट करने के कौन से तरीके?
Question 43What is the valid data type for variable ʺaʺ to print ʺHello Worldʺ? switch(a) { System.out.println(ʺHello Worldʺ); } | वेरिएबल ʺaʺ को प्रिंट करने के लिए वैध डेटा प्रकार क्या है? ʺHello Worldʺ? switch(a) { System.out.println(ʺHello Worldʺ); }
Question 44In below java code, whose “Car” will be called? class Father { public void car() { System.out.println(ʺFatherʹs Carʺ); } } class Son extends Father { public void car() { System.out.println(ʺSonʹs Carʺ); } } public class Sample { public static void main(String[] args) { Son john = new Son(); john.car(); } } | नीचे दिए गए जावा कोड में, किसकी “Car” को बुलाया जाएगा? class Father { public void car() { System.out.println(ʺFatherʹs Carʺ); } } class Son extends Father { public void car() { System.out.println(ʺSonʹs Carʺ); } } public class Sample { public static void main(String[] args) { Son john = new Son(); john.car(); } }
Question 45Which of these packages contains abstract keyword? | इनमें से किस पैकेज में अमूर्त कीवर्ड शामिल है?
Question 46_________ are a sequence of characters. | _________ वर्णों का एक क्रम है।
Question 47Which polymorphism behaviour do you see in below class? class Paint { public void Color(int x) { } public void Color(int x, int y) { } public void Color(int x, int y, int z) { } } | आप निम्न वर्ग में कौन सा बहुरूपता व्यवहार देखते हैं? class Paint { public void Color(int x) { } public void Color(int x, int y) { } public void Color(int x, int y, int z) { } }
Question 48Earlier name of Java Programming language was ______. | Java प्रोग्रामिंग भाषा का पहले नाम ______ था।
Question 49A failed method overriding calls the method of a ___ in Java. | एक असफल विधि ओवरराइडिंग जावा में ___ की विधि को कॉल करती है।
Question 50Which of the following packages is used to includes classes to create user interface like Button and Checkbox? | बटन और चेकबॉक्स जैसे यूजर इंटरफेस बनाने के लिए कक्षाओं को शामिल करने के लिए निम्न में से किस पैकेज का उपयोग किया जाता है?
Question 51What is the output of the below Java program with Method Overriding? class Sparrow{ } class BigSparrow extends Sparrow { } class Cat2 { Sparrow jumpingHeight(int weight) { System.out.println(40); return new Sparrow(); } } class WildCat2 extends Cat2 { BigSparrow jumpingHeight(int weight) { System.out.println(ʺ50ʺ); return new BigSparrow(); } } public class MethodOverriding4 { public static void main(String[] args) { WildCat2 wc = new WildCat2(); wc.jumpingHeight(80); } } | मेथड ओवरराइडिंग के साथ नीचे दिए गए जावा प्रोग्राम का आउटपुट क्या है? class Sparrow{ } class BigSparrow extends Sparrow { } class Cat2 { Sparrow jumpingHeight(int weight) { System.out.println(40); return new Sparrow(); } } class WildCat2 extends Cat2 { BigSparrow jumpingHeight(int weight) { System.out.println(ʺ50ʺ); return new BigSparrow(); } } public class MethodOverriding4 { public static void main(String[] args) { WildCat2 wc = new WildCat2(); wc.jumpingHeight(80); } }
Question 52_______ is not a flow control statement in Java. | _______ Java में फ्लो कण्ट्रोल स्टेटमेंट नहीं होता है।
Question 53The class which inherits the properties of other is known as ________. | वह वर्ग जो दूसरे के गुणों को विरासत में प्राप्त करता है, उसे ________ के रूप में जाना जाता है
Question 54Which of these method of object class is used to obtain class of an object at run time? | ऑब्जेक्ट क्लास की इनमें से कौन सी विधि रन टाइम पर किसी ऑब्जेक्ट की क्लास प्राप्त करने के लिए उपयोग की जाती है?
Question 55Which of these is not abstract? | इनमें से कौन सा अमूर्त नहीं है?
Question 56Java array is a collection of ________. | जावा ऐरे ________ का एक संग्रह है।
Question 57Which of these keywords are used to define an abstract class? | एब्स्ट्राक्ट क्लास को परिभाषित करने के लिए इनमें से कौन से कीवर्ड का उपयोग किया जाता है?
Question 58What will be the return type of a method that not returns any value? | एक मेथड का रिटर्न प्रकार क्या होगा जो कोई भी मूल्य को रिटर्न्स नहीं है?
Question 59Which of the following is the correct expression that evaluates to true if the number x is between 1 and 100 or the number is negative? | यदि संख्या x 1 और 100 के बीच है या संख्या ऋणात्मक है तो निम्नलिखित में से कौन सी सही अभिव्यक्ति है जो सत्य का मूल्यांकन करती है?
Question 60Which of these method of Object class can clone an object? | ऑब्जेक्ट क्लास की इनमें से कौन सी मेथड किसी ऑब्जेक्ट को क्लोन कर सकती है?
Question 61Which of the following options is the best for generating random integer 0 or 1? | यादृच्छिक पूर्णांक 0 या 1 उत्पन्न करने के लिए निम्नलिखित में से कौन सा विकल्प सबसे अच्छा है?