Skip to the content

onlineexamguide

  • Home
  • Courses
  • Engg. Interview
    • Electrical Engineering
    • Mechanical Engineering
    • Automobile Engineering
    • Civil Engineering
    • Computer Science Engineering
    • Chemical Engineering
  • Online Exam
    • Aptitude Tricks
    • Computer Knowledge
    • Logical Reasoning Tricks
    • Networking
  • Ghatna Chakra
  • Register
    • Instructor Registration
    • Student Registration
  • User Login
  • Home
  • Courses
  • Engg. Interview
    • Electrical Engineering
    • Mechanical Engineering
    • Automobile Engineering
    • Civil Engineering
    • Computer Science Engineering
    • Chemical Engineering
  • Online Exam
    • Aptitude Tricks
    • Computer Knowledge
    • Logical Reasoning Tricks
    • Networking
  • Ghatna Chakra
  • Register
    • Instructor Registration
    • Student Registration
  • User Login

Literals in Java MCQ Questions and Answers

Literals in Java

Table of Contents

    • Literals in Java
  • Literals or Constants in java
    • Underscore in number constants or literals for Readability
  • 1. Integer Literals
    • A. Decimal Literal
    • B. Octal Literal
    • C. Hexadecimal Literal
    • D. Binary Literal
  • 2. Floating Point Literals
    • Literals in Java
  • 3. Boolean Literals
    • Java Literals
  • 4. Character Literals
  • 5. String Literals
    • Literals in Java
    • Literals in Java MCQ (Important)
    • 4) What is the suffix used to convert an int literal to long literals in Java?
    • 5) A character literal in Java is enclosed within a pair of ___?
    • 6) Which version of Java started offering unsigned int and unsigned long to represent very long numbers?
    • 7) Choose a correct statement about Java literal types.
    • 8) A String literal in Java is surrounded by a pair of _____?
    • 12) Choose the correct implementation of floating point literals in the exponential form in Java.
  • Important MCQ
    • 2) What are the types of Literals available in Java language?
    • 3) What are the types of Integer Literals in Java?
    • 4) Choose correct examples of decimal literals in Java.

Study and learn Literals in Java questions and answers on Literals or Constants. Literals are of type Integer (Decimal, Octal, Hexadecimal and Binary), Real Number (float, double), Character and String. Attend job interviews easily with these MCQs.

Literals in Java

Like any other programming language, Java too supports Data constants or Literals. A literal is simply a constant of data we assign to a variable of a particular data type.

Literals or Constants in java

There are 5 types of Literals or constants in Java language.

  1. Integer Literals
  2. Floating Point Literals
  3. Boolean Literals
  4. Character Literals
  5. String Literals

JDK 7 introduced two new features namely Binary Literals and Underscores in number literals.

Underscore in number constants or literals for Readability

You can embed underscore symbols ( _ ) as part of a number constant to increase readability. You should not add Underscore at the beginning or end. Also, you can not put Underscore before or after a DOT or Decimal Point in floating point or double numbers. You can add more than one underscore symbols consecutively. Underscore symbols are removed before processing.

Examples are as below.

int a = 123_456_7;
int b = 23_456_56789_1;
long c = 24___56__789_12L;
int d = 0xef_a_b; //Hexadecimal constant
int e = 0b1011_0111; //binary constant
int f = 01234_5678; //Octal constant
float pp = 34__456.12___23_4; //floating point constant
double qq = 455_456.126_234;  //double constant


1. Integer Literals

When initializing byte, short, int and long data type variables, we use integer literals. For long data, you can use lower case ‘l’ or upper case ‘L’ at the end if you want.

Integer literals or constants of 4 types.

  1. Decimal Literal
  2. Octal Literal
  3. Hexadecimal Literal
  4. Binary Literals

A. Decimal Literal

Decimal literals can have digits from 0 to 9. There is no need to prefix the number to specify explicitly.

Example:

int a = 01245621;
long b = 987_654_321_0L;
short c = 3456;
byte bt = 123;

B. Octal Literal

Octal literals can have digits from 0 to 7. You should Prefix the number with a ZERO ‘0’.

Example:

int a = 0345;
int b = 0456_789;
short c = 0802; //Error. 8 is out of range of Octal.
byte bt = 110;

C. Hexadecimal Literal

Hexadecimal literals can have digits from 0 to 9, a, b, c, d, e, f, A, B, C, D, E, F. You should Prefix the number with a ‘0x‘ or ‘0X‘.

Example:

int a = 0x345;
int b = 0X456_7__89;
long ab = 0xffeeL;

D. Binary Literal

Binary literals can have digits from 0 or 1. You should Prefix the number with a ‘0b‘ or ‘0B‘. JDK 7 supports this literal.

Example:

int a = 0b1011_1010;
int b = 0B10__10__11_01;
long ab = 0b1101_1100_0101_1111L;

2. Floating Point Literals

Floating point data types namely float and double variables can hold floating point literals. For floats ‘f’ or ‘F’ may be postfixed at the end. For double, you may append ‘d’ or ‘D’ at the end of a number. By default, all real numbers are of ‘double’ data type.

To specify exponents ‘e’ or ‘E’ is used. Exponent represents 10 power some number say 10 power 2 ( = 100). So E is called Power of Ten Exponent

To specify Two power of some number, JDK 7 introduced an exponent which represents 2 instead of 10. The symbol used is ‘p’ or ‘P’. So, P is called Power of Two Exponent. This P format can be used only with Hexadecimal floating point numbers.

Literals in Java

Example:

float a = 123_456.789_0987F;
float b = 123456.78678f;
float c = 12e23;
double d = 345E567d; // E notation
double e = 345E-567;
double f = 345E+567;
float g = 0x23.4567P4; //Hexadecimal float
double h = 0X5678p-10; //P notation

3. Boolean Literals

Boolean literal can have only two possible values true or false. TRUE or FALSE are illegal to use. Capitalization is not allowed. Also, 1 is not equal to true and 0 is not equal to false.

Java Literals

Example:

boolean a = false;
boolean b = true;
boolean c = 0; //error
boolean d = -123; //error
if( a ) { } // Works
if( 1 ) { } // Error.
if( TRUE ) { } // Error.
if( false ) { } //Works.

4. Character Literals

As Java language supports 16 bit type characters, the number of characters that can be represented has been increased to 65536. You can specify a single character as a character literal to a character variable. To specify a character literal, you need to surround the character with Single Quotes (‘ ‘).

Example:

char a='a';
char b = 'A';
char c = 'ab'; //Error

You can also specify Octal character literal in \ddd notation. ‘d’ is the digit from 0 to 7.

Example:

char a = '\123';
char b = '\567';
char c = '345'; //Error

You can also specify Hexadecimal character literal in \udddd notation. ‘d’ value can be from 0 to 9 and a to f or A to F. These are also called Unicode literals in Java.

Example:

char a = '\uaef0';
char b = '\ua123';
char c = "\u1234"; //Error. Double Quote

5. String Literals

String literal is a group of characters, numbers and symbols surrounded by double quotes. In C language, a string is a character array. In Java language, String is an Object. It has methods to calculate length, reverse string, replace characters and more.

Literals in Java

Example:

String a = "Hello Java";
String b = "Hello\nJava"; //you can use new line
String c = "Hello" + " Java"; //Concatenation

Having an understanding of literals improves your coding. You can write better java programs after practising these basics.

[WpProQuiz 54]

Literals in Java MCQ (Important)

1) What is the suffix used to represent a floating point number in Java?

A) r or R

B) f or F

C) fl or FL

D) None of the above

Answer [=] B

Explanation:

float a = 1.345f;
float b = 567.345678F;

2) What is the precision after decimal points offered by a float data type in Java?

A) 3 digits

B) 6 digits

C) 10 digits

D) 15 digits

Answer [=] B

Explanation:

float interest = 24.123456f;

3) A real number literal for floating point literal with a missing f or F suffix represents which data type?

A) double

B) float

C) long

D) int

Answer [=] A

Explanation:

float a = 1.23; //error
//can not convert from double to float

float b = 1.23F // works
double c = 1.567; //works

4) What is the suffix used to convert an int literal to long literals in Java?

A) 0l or 0L

B) l or L

C) i or I

D) 0x or 0X

Answer [=] B

Explanation:

int a = 987654; //works
int b = 9876543210; //Out of range error
long c = 9876543210;//Out of range error
long d = 9876543210L; //works

5) A character literal in Java is enclosed within a pair of ___?

A) Square brackets

B) Double Quotes

C) Single Quotes

D) Exclamations

Answer [=] C

Explanation:

char ch='A';
char ch2 = 'b';

6) Which version of Java started offering unsigned int and unsigned long to represent very long numbers?

A) JDK 5

B) JDK 6

C) JDK 7

D) JDK 8

Answer [=] D

Explanation:

You have to use Object version of int and long namely Integer and Long to avail the feature. Using pri-mitive data types, you can not create an un-signed int or un-signed long.

7) Choose a correct statement about Java literal types.

A) Decimal literal uses Base 10 number system.

B) Binary literal uses Base 2 number system.

C) Octal literal uses Base 8 number system.

D) All the above

Answer [=] D

Explanation:

Hexadecimal literal uses Base 16 number system.

8) A String literal in Java is surrounded by a pair of _____?

A) Braces

B) Single Quotes

C) Double Quotes

D) Exclamations

Answer [=] C

Explanation:

String name = "JAVA HERO";

9) Which among the following is not a pri-mitive data type in Java?

A) char

B) String

C) byte

D) short

Answer [=] B

Explanation:

A string is a Class that can handle a string of characters or a group of characters. If the name of the type starts with an Uppercase letter, it is a Class. So it is non-primitive.

10) Which version of Java introduced Hexadecimal floating point numbers?

A) JDK 5

B) JDK 6

C) JDK 7

D) JDK 8

Answer [=] C

Explanation:

float a = 0x3.1p0f; // 3.0625
//3 x p0 = 3 x 2^0 = 3
//(0.1)/16 = 0.0625 

11) What are the two floating point notations in Java language?

A) Exponential e or E (10^a)

B) Exponential p or P (2^a)

C) A and B

D) None of the above

Answer [=] C

12) Choose the correct implementation of floating point literals in the exponential form in Java.

A) float a = 12.0e2f; //1200.0

B) float a = 100.0e-2f; // 1.0

C) float a = 123.456e-21f; //1.23456E-19

D) All the above

Answer [=] D

13) Choose the correct usage of boolean literal in the options below.

A) boolean b= false;

B) boolean b= 2<4; //2<4 is true;

C) if(true) { System.out.println(“HELLO”); }

D) All the above

Answer [=] D

14)

What is the output of this Java snippet?
int a = 0b111;
System.out.println(a);

A) 111

B) 7

C) 8

D) Compiler error

Answer [=] B

Explanation:

1x2^2 + 1x2^1 + 1x2^0
1x4 + 1x2 + 1
4 + 2 + 1

15) Choose the wrong Java code statement below.

A) boolean a = false;

B) boolean a = (5>6)||(4>3);

C) boolean a = 1;

D) boolean a = 4>3?true:false;

Answer [=] C

Explanation:

You can not assign an integer value to a boolean data type. Java does not convert integers to boolean true or false.

16) Choose the wrong Java code statement below.

A) char a =’a’;

B) char a =”ab”;

C) char a =97;

D) char a =’\u0123′;

Answer [=] B

Explanation:

A character variable can hold only one letter that can be represented by UTF-16 Unicode internally. Use only single quotes.

String str = "ab"; //works

17) Choose the wrong representation of a character literal in Octal notation in Java.

A) char ch=’\65′;

B) char ch=’\142′;

C) char ch=’\065′;

D) char ch=’142′;

Answer [=] D

Explanation:

char ch='\142'; //works
char ch2 = '\97';//9 is not Octal digit

18)

A Unicode character literal in Java is surrounded by a pair of ___?
literal = \ua123

A) Single Quotes

B) Double Quotes

C) Exclamations

D) Backslashes

Answer [=] A

Explanation:

char ch='\ua123';

19) What is the default boolean literal assigned to a boolean variable in Java?

A) true

B) false

C) undefined

D) None of the above

Answer [=] B

Explanation:

Default values are assigned only to the instance variables.

20) What is the default character literal value assigned to a char variable in Java?

A) ‘a’

B) ‘0’

C) ‘\u0000’

D) 0

Answer [=] C

Important MCQ

1) What is Literal in Java?

A) Literal is the value that is given or assigned to a variable.

B) Literal is a data type

C) Literal is similar to String

D) None of the above

Answer [=] A

Explanation:

Examples: 123, 45.67f, ‘C’, “abc”, false

2) What are the types of Literals available in Java language?

A) Integer and Float

B) Character and String

C) Boolean

D) All the above

Answer [=] D

Explanation:

Literals are Data assigned to Pri-mitive data type variables.

3) What are the types of Integer Literals in Java?

A) Decimal Literals

B) Octal and Hexadecimal Literals

C) Binary Literals

D) All the above

Answer [=] D

Explanation:

JDK 7 introduced binary literals to easily set individual bits of a number.

4) Choose correct examples of decimal literals in Java.

A) int a = 12345;

B) int a = 12_3__5;

C) long a = 987____654_3__21L;

D) All the above

Answer [=] D

Explanation:

To represent big numbers, simply append letter ‘l’ or ‘L’ to the number to make it a long integer. This avoids compiler errors saying “out of range”

5) An Octal number is Java is represented with a leading ____?

A) O (Alphabet)

B) 0 (ZERO)

C) 0x

D) 0X

Answer [=] B

Explanation:

Eg. int a=0765;

6) Choose correct ranges for Decimal, Octal and Hexadecimal numbers in Java?

A) Decimal: 0 to 9

B) Octal: 0 to 7

C) Hexadecimal: 0 to 9 and A to F / a to f

D) All the above

Answer [=] D

7) Choose the correct example of Octal Literal in Java?

A) short = 0564;

B) int = 076__45_2;

C) int = 0______11;

D) All the above

Answer [=] D

Explanation:

int = 0______11; // 8^1 * 1 + 8^0 * 1 = 9

8) What is the prefix used to represent Hexadecimal numbers in Java?

A) 0x

B) 0X

C) A and B

D) None of the above

Answer [=] D

Explanation:

int a=0xFEB5;
int b=0X9876__45;

9) Choose correct examples of Hexadecimal literals in Java?

A) long a = 0X987654321L;

B) int a = 0x76FE____23;

C) byte b = 0X0__________F;

D) All the above

Answer [=] D

10) Binary literals in Java are introduced with which version of Java?

A) JDK 5

B) JDK 6

C) JDK 6

D) JDK 8

Answer [=] C

11) Underscore symbols in literal numbers are introduced with which version of Java?

A) JDK 5

B) JDK 6

C) JDK 7

D) JDK 8

Answer [=] C

12) What is the prefix used to represent Binary literals in Java?

A) b or B

B) 0b or 0B

C) xB or xb

D) ob or oB

Answer [=] B

Explanation:

ZERO B or ZERO b
byte a = 0b00001111; //15 in decimal

13) What is the correct representation of using Binary literals in Java?

A) int a = 0b1010;

B) int a = 0B1011_1010;

C) int a = 0B0______________1;

D) All the above

Answer [=] D

Explanation:

int a = 0B0______________1; //decimal=1
int b = 0b1010; //decimal=10

14) What is the compiler error for improperly using Underscores ( _ ) in literals in Java?

A) Underscores are out of range

B) IllegalUnderscoresException

C) Underscores have to be located within digits

D) Too many Underscores

Answer [=] C

Explanation:

Underscore symbols cannot be used at the beginning and the end of digits of a number.

15) Choose a correct rule for using Underscores in literals of Java language.

A) Underscores cannot come at the end of a number or next to the last digit of a number.

B) Underscores cannot come at the beginning of a number or before the first digit of a number.

C) Underscores cannot come before or after a decimal point in real numbers like float and double.

D) All the above

Answer [=] D

Explanation:

Also, there is no limit on the number of underscores between digits.

16) What is the maximum number of Underscore characters that can be used in between the digits of a numeric literal in Java?

A) 8

B) 16

C) 32

D) No Limit

Answer [=] D

Explanation:

Theoretically, there is no limit on the number of underscores.

17) Java uses UTF-16 Unicode format to represent characters. What is UTF?

A) Universal Transcript Format

B) Universal Transformation Format

C) Universal Technology Format

D) None of the above

Answer [=] B

Explanation:

Unicode contains 65535 characters.

18) What is the name given to character literals in Java that start with a Back Slash character?

A) Back Slash Sequence

B) Slash Sequence

C) Escape Sequence

D) Extended Sequence

Answer [=] C

Explanation:

\b = backspace
\n = new line
\\ = backslash

19) What is the literal in Java that can be used to test whether an Object of any type is alive or not? 

A) alive

B) liveof

C) null

D) 0

Answer [=] C

Explanation:

String a;
if(a==null)
  System.out.println("Object destroyed");

20) What is the common UTF standard used on the Websites for information exchange?

A) UTF 16

B) UTF 8

C) UTF 32

D) None of the above

Answer [=] B

Explanation:

UTF 16 character encoding standard used by Java language is used only by the Windows internal system and JavaScript Library. Unix, Linux and MacOS use UTF-8 encoding standard.

Write a comment Cancel reply

You must be logged in to post a comment.

*
  • किस राज्य/केंद्र शासित प्रदेश ने ‘कोडवा हॉकी महोत्सव’ (Kodava Hockey Festival) की मेजबानी की?

  • उत्तर – कर्नाटक

  • हाल ही में खबरों में रहा बरदा वन्यजीव अभयारण्य (Barda Wildlife Sanctuary) किस राज्य/केंद्र शासित प्रदेश में स्थित है?

  • उत्तर – गुजरात

  • किस देश ने ‘सऊदी-ईरान सम्बन्ध सामान्यीकरण’ शांति समझौते की मध्यस्थता की?

  • उत्तर – चीन

  • ‘संयुक्त राष्ट्र 2023 जल सम्मेलन’ (United Nations 2023 Water Conference) का मेजबान कौन सा देश है?

  • उत्तर – अमेरिका

  • ‘अल-मोहद-अल हिंदी-23’ (Al-Mohed-Al Hindi-23) अभ्यास भारत और किस देश के बीच आयोजित किया जा रहा है?

  • उत्तर – सऊदी अरब

  • सेमी-हाई-स्पीड वंदे भारत एक्सप्रेस ट्रेन चलाने वाली पहली महिला लोको पायलट कौन हैं?

  • उत्तर – सुरेखा यादव

  • भारतीय रिजर्व बैंक ने 2023 तक कितने देशों के बैंकों को रुपये में व्यापार करने की अनुमति दी थी?

  • उत्तर – 18

  • MD15 बसों का प्रायोगिक परीक्षण और M100 (100% मेथनॉल) का प्रोटोटाइप किस शहर में लॉन्च किया गया?

  • उत्तर – बेंगलुरु

  • फरवरी 2023 में भारत में थोक मूल्य सूचकांक (WPI) आधारित मुद्रास्फीति कितनी है?

  • उत्तर – 3.85%

  • किस संस्थान ने एक व्यापक स्व-निगरानी ढांचा ‘ATL सारथी’ लॉन्च किया है?

  • उत्तर – नीति आयोग

  • उस चक्रवात का क्या नाम है जिससे मलावी और मोज़ाम्बिक में तेज़ हवाएँ चलीं और मूसलाधार बारिश हुई?

  • उत्तर – फ्रेडी

  • ऑस्कर 2023 इवेंट के दौरान किस फिल्म ने सात पुरस्कार जीते?

  • उत्तर – Everything Everywhere All at Once

  • MoSPI के हालिया आंकड़ों के अनुसार, फरवरी 2023 में भारत की खुदरा मुद्रास्फीति कितनी दर्ज की गई?

  • उत्तर – 6.44%

  • कौन सा राज्य/केंद्र शासित प्रदेश ‘साझा बौद्ध विरासत पर पहला अंतर्राष्ट्रीय सम्मेलन’ का मेजबान है?

  • उत्तर – नई दिल्ली

  • किस राज्य ने राज्य के कार्यकर्ताओं को राज्य सरकार की नौकरी में 10% क्षैतिज आरक्षण को मंजूरी दी?

  • उत्तर – उत्तराखंड

  • Unique Land Parcel Identification Number (ULPIN) कितने अंकों वाला एक अल्फा-न्यूमेरिक नंबर है?

  • उत्तर – 14

  •  किस संस्था ने ‘Landslide Atlas of India’ जारी किया?

  • उत्तर – इसरो

  • किस केंद्रीय मंत्रालय ने ‘लीन योजना’ (LEAN Scheme) शुरू की?

  • उत्तर – MSME मंत्रालय

  • कौन सा केंद्रीय मंत्रालय ‘World Food India-2023’ कार्यक्रम की मेजबानी करने जा रहा है?

  • उत्तर – खाद्य प्रसंस्करण उद्योग मंत्रालय

  • माधव राष्ट्रीय उद्यान (Madhav National Park), जो हाल ही में खबरों में था, किस राज्य/केंद्र शासित प्रदेश में है?

  • उत्तर – मध्य प्रदेश

  • किस राज्य/केंद्र शासित प्रदेश ने विभिन्न क्षेत्रों में शहर के विकास का मार्गदर्शन करने के लिए ‘2041 के लिए मास्टर प्लान’ जारी किया?

  • उत्तर – नई दिल्ली

  • हाल ही में ख़बरों में रहा ‘Safe Harbour Principle’ किस अधिनियम से संबंधित है?

  • उत्तर – सूचना प्रौद्योगिकी अधिनियम, 2000

  • 2023 में शंघाई सहयोग संगठन (SCO) की अध्यक्षता किस देश के पास है?

  • उत्तर – भारत

  • हाल ही में खबरों में रहा टोरिनो स्केल (Torino Scale) किस क्षेत्र से जुड़ा है?

  • उत्तर – अंतरिक्ष विज्ञान

  • कृत्रिम बुद्धि (artificial intelligence) द्वारा संचालित दुनिया के पहले रेडियो प्लेटफॉर्म का नाम क्या है?

  • उत्तर – RadioGPT

  • नासा के क्यूरियोसिटी रोवर (Curiosity Rover) ने हाल ही में किस ग्रह पर क्रिपस्कुलर किरणों (crepuscular rays) को कैप्चर किया है?

  • उत्तर – मंगल

  • कौन सा केंद्रीय मंत्रालय ‘स्वदेश दर्शन 2.0 कार्यक्रम’ लागू करता है?

  • उत्तर – पर्यटन मंत्रालय

  • हाल ही में Prevention of Money Laundering Act को किन उत्पादों को शामिल करने के लिए विस्तारित किया गया था?

  • उत्तर – वर्चुअल डिजिटल संपत्ति

  • किस देश ने National Platform for Disaster Risk Reduction (NPDRR) के तीसरे सत्र की मेजबानी की?

  • उत्तर – भारत

  • किस राज्य के राज्यपाल ने राज्य मंत्रिमंडल द्वारा पारित ऑनलाइन जुआ निषेध विधेयक (Prohibition of Online Gambling Bill) को लौटा दिया है?

  • उत्तर – तमिलनाडु

  • भारत में पहली बार माइम्युसेमिया सीलोनिका (Mimeusemia ceylonica), दुर्लभ पतंगे की प्रजाति को किस राज्य में देखा गया है?

  • उत्तर – केरल

  • किस देश ने ‘Illegal Migration Bill’ पेश किया?

  • उत्तर – यूके

  • किस देश ने 25 वर्षों में पहली बार महिलाओं के लिए सैन्य सेवा खोली है?

  • उत्तर – कोलंबिया

  • केंद्र ने हाल ही में NAFED, NCCF को किस उत्पाद की खरीद के लिए बाजार में तत्काल हस्तक्षेप करने का निर्देश दिया है?

  • उत्तर – लाल प्याज

  • ‘ट्रोपेक्स 2023’ किस देश द्वारा आयोजित एक प्रमुख परिचालन स्तर का अभ्यास है?

  • उत्तर – भारत

  • किस संस्था ने ‘Global Greenhouse Gas Monitoring Infrastructure’ पेश किया?

  • उत्तर – WMO

  • किस केंद्रीय मंत्रालय ने ‘स्वच्छोत्सव’ महिलाओं के नेतृत्व में स्वच्छता अभियान शुरू किया?

  • उत्तर – आवास और शहरी मामलों के मंत्रालय

  • सल्हौतुओनुओ क्रूस (Salhoutuonuo Kruse) ने किस राज्य की पहली महिला कैबिनेट मंत्री बनकर इतिहास रचा है?

  • उत्तर – नागालैंड

  • कौन सा शहर वित्तीय समावेशन के लिए वैश्विक भागीदारी की दूसरी बैठक का मेजबान था?

  • उत्तर – हैदराबाद

  • डॉ माणिक साहा ने 2023 में किस भारतीय राज्य के मुख्यमंत्री के रूप में शपथ ली?

  • उत्तर – त्रिपुरा

  • ‘डिजिटल इंडिया बिल’ किस केंद्रीय मंत्रालय से जुड़ा है?

  • उत्तर – इलेक्ट्रॉनिक्स और आईटी मंत्रालय

  • ड्राफ्ट केंद्रीय विद्युत प्राधिकरण विनियम (Draft Central Electricity Authority Regulations) हाल ही में किस प्रजाति की रक्षा के लिए जारी किया गया था?

  • उत्तर – ग्रेट इंडियन बस्टर्ड

  • किस देश ने ‘International Big Cat Alliance’ बनाने का प्रस्ताव दिया है?

  • उत्तर – भारत

  • ब्रह्मोस मिसाइल को रूस के NPO मशीनोस्ट्रोयेनिया और भारत के किस संगठन के बीच साझेदारी से विकसित किया गया है?

  • उत्तर – DRDO

  • दुनिया का पहला 200 मीटर लंबा बैंबू क्रैश बैरियर ‘बाहु बल्ली’ किस राज्य में स्थापित किया गया है?

  • उत्तर – महाराष्ट्र

  • किस देश ने लगभग 8.5 मिलियन मीट्रिक टन लिथियम अयस्क की खोज करने का दावा किया है?

  • उत्तर – ईरान

  • किस संस्था ने ‘Women, Business and the Law Index’ जारी किया?

  • उत्तर – विश्व बैंक

  • 2021-22 के लिए आवधिक श्रम बल सर्वेक्षण (PLFS) रिपोर्ट के अनुसार, कृषि क्षेत्र में रोजगार का अंश कितना है?

  • उत्तर – 45.5%

  • किस संस्था ने ‘Advanced Towed Artillery Gun System (ATAGS)’ डिजाइन किया है?

  • उत्तर – DRDO

  • हाल ही में खबरों में रहा HUID नंबर किस तत्व/उत्पाद से जुड़ा है?

  • उत्तर – सोना

  • किन संस्थानों ने ‘More than a billion reasons: The urgent need to build universal social protection’ शीर्षक से रिपोर्ट जारी की?

  • उत्तर – UNICEF- ILO

  • केंद्रीय सिंचाई एवं विद्युत बोर्ड (CBIP) पुरस्कार किस संस्था को प्रदान किया गया?

  • उत्तर – NTPC

  • किस संस्था ने ‘Mind the Gender Gap’ रिपोर्ट जारी की?

  • उत्तर – CFA Institute

  • हाल ही में खबरों में रही ‘समर्थ योजना’ (SAMARTH scheme) किस मंत्रालय से जुड़ी है?

  • उत्तर – कपड़ा मंत्रालय

  • राष्ट्रीय सुरक्षा दिवस (National Safety Day) 2023 की थीम क्या है?

  • उत्तर – Our Aim – Zero Harm

  • कौन सा शहर ‘G20 विदेश मंत्रियों की बैठक (FMM)’ का मेजबान है?

  • उत्तर – नई दिल्ली

  • किस देश ने इंडो-पैसिफिक टेक दूत (Indo-Pacific tech envoy) की घोषणा की?

  • उत्तर – यूके

  • किस बैंक ने सिटीग्रुप के भारतीय उपभोक्ता कारोबार का अधिग्रहण पूरा कर लिया है?

  • उत्तर – Axis Bank

  • किस केंद्रीय मंत्रालय ने ‘Grievance Appellate Committee (GAC)’ लॉन्च की?

  • उत्तर – इलेक्ट्रॉनिक्स और आईटी मंत्रालय

  • ‘Indian States’ Energy Transition’ रिपोर्ट के अनुसार, किन राज्यों ने स्वच्छ बिजली में परिवर्तन में सबसे अधिक प्रगति की है?

  • उत्तर – कर्नाटक और गुजरात

  • धरोई आर्द्रभूमि (Dharoi wetland), जहाँ हाल ही में एक पक्षी सर्वेक्षण किया गया था, किस राज्य में स्थित है?

  • उत्तर – गुजरात

  • IMF के अनुसार, किस देश में 2023 में वैश्विक विकास में 15% योगदान देने की क्षमता है?

  • उत्तर – भारत

  • भारत के किस पड़ोसी देश ने सौर ऊर्जा के उपयोग को बढ़ाने के लिए ISA के साथ समझौता ज्ञापन पर हस्ताक्षर किए?

  • उत्तर – बांग्लादेश

  • अंतर्राष्ट्रीय बौद्धिक संपदा सूचकांक 2023 में भारत का रैंक क्या है?

  • उत्तर – 42

  • कौन सा राज्य ‘वैश्विक उत्तरदायी पर्यटन शिखर सम्मेलन’ (Global Responsible Tourism Summit) का मेजबान है?

  • उत्तर – केरल

  • ‘UPI LITE पेमेंट्स’ लॉन्च करने वाला पहला प्लेटफॉर्म कौन सा है?

  • उत्तर – पेटीएम पेमेंट्स बैंक

  • किस संस्था ने भारत का पहला म्यूनिसिपल बॉन्ड इंडेक्स लॉन्च किया?

  • उत्तर – NSE

  • किस शहर का नाम बदलकर ‘छत्रपति संभाजीनगर’ कर दिया गया है?

  • उत्तर – औरंगाबाद

  • भारत की G-20 अध्यक्षता के तहत W20 इंसेप्शन मीटिंग की मेजबानी कौन सा शहर कर रहा है?

  • उत्तर – औरंगाबाद

  • कौन सा शहर ‘International Bio-resource Conclave & Ethno-pharmacology Congress 2023’ का मेजबान है?

  • उत्तर – इंफाल

  • फेंटानिल और पशु ट्रैंक्विलाइज़र का मिश्रण जिसे ज़ाइलाज़ीन कहा जाता है, जिसे ‘ट्रांक डोप’ के रूप में जाना जाता है, किस देश में चिंता पैदा कर रहा है?

  • उत्तर – अमेरिका

  • किस राज्य को ‘Foundational Literacy and Numeracy Index 2022’ में शीर्ष प्रदर्शन करने वाला स्थान मिला?

  • उत्तर – पश्चिम बंगाल

  • किस देश ने ‘National Green Fiscal Incentives Policy Framework’ लॉन्च किया?

  • उत्तर – केन्या

  • काजीरंगा राष्ट्रीय उद्यान किस राज्य में स्थित है?

  • उत्तर – असम

  • ‘राष्ट्रीय स्वास्थ्य प्राधिकरण की स्कैन एंड शेयर सर्विस’ किस योजना के तहत शुरू की गई थी?

  • उत्तर – आयुष्मान भारत डिजिटल मिशन

  • किस देश ने ‘कमर्शियल आर्म्स ट्रांसफर (CAT) पॉलिसी’ लॉन्च की है?

  • उत्तर – अमेरिका

  • हाल ही में खबरों में रही ‘INS सिंधुकेसरी’ क्या है?

  • उत्तर – पनडुब्बी

  • 2022 में किस देश की प्रजनन दर दुनिया में सबसे कम 0.78 है?

  • उत्तर – दक्षिण कोरिया

  • हाल ही में खबरों में रहा रिड्यू कैनाल स्केटवे (Rideau Canal Skateway) किस देश में है?

  • उत्तर – कनाडा

Recent Posts

  • Synchronous Motors – Important Questions and Answers
  • Starting Methods of Synchronous Motor
  • Torque and Power Relation
  • Phasor Diagram for Synchronous Motor
  • Synchronous Motor: Applications, Starting Methods & Working Principle
  • Prime mover
  • Parallel Operation of Alternators
  • Slip Test on Synchronous Machine
  • Salient Pole and Non Salient Pole Synchronous Generator
  • Power Angle Curve of Synchronous Machine
  • Methods of finding Voltage Regulation in Synchronous Generator
  • Voltage Regulation of Alternator or Synchronous Generator
  • Potier Reactance – Synchronous Generator
  • Short Circuit Ratio of a Synchronous Machine (SCR)
  • Synchronous Reactance and Synchronous Impedance

onlineexamguide

onlineexamguide.com is the ultimate guide that will keep you updated about almost every Exam & Interviews . We aim to provide our readers with an informative details that have been occurring in Examination . Here at onlineexamguide.com , we focus on delivering our readers with the latest exam Pattern Mock test

We Provide Free online test to practice for Competitive exams , Online Exam, Entrance and Interview. Learn and Practice online test for Free and Prepare for your exam online with us

Quick links

  • About us
  • Privacy Policy
  • Instructor Registration
  • Student Registration
  • Java Programming
  • C programming
  • C++ programming
  • Aptitude Tricks

Follow us

Free Online Mock Test

  • UPTET PRIMARY Online Test Series
  • Super TET Mock Test in Hindi 2023
  • CTET Mock Test 2022 Paper 1
  • SSC CHSL Online Mock Test
  • SSC MTS Mock Test 2023
  • SSC CGL Mock Test
  • SSC GD Mock Test
  • ccc online test

Search

Learn and Earn

Register as Instructor - Create and sell online courses and coaching services with the best online platform onlineexamguide.com . Build a course, build a brand, earn money

Contact us

For any queries

Email us on - admin@onlineexamguide.com

We will response fast as much as we can
Copyright © 2023 onlineexamguide.com - All Rights Reserved.
error: Content is protected !!

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.