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

Control Statements in java IF, ELSE and ELSE IF Tutorial And MCQ

Control Statements in java

Table of Contents

  • Control Statements in java
  • Control Statements
    • Type of Control Statements in java
    • Java IF, ELSE and ELSE IF control statements
  • Control Statements in java Interview MCQ
    • 1) An IF-ELSE statement is also called ___.
    • 2) An IF or ELSE IF statement accepts ___ as input before branching.
    • 3) An IF statement in Java is also a ___ statement.
    • 4) Java style IF-ELSE statements are similar to ___.
    • 13) What is maximum lines of code that can be written inside a Java style IF, ELSE or IF-ELSE block?
    • 14) An IF-ELSE statement is better than a SWITCH statement in which scenario below?
    • 15) What is the maximum number of ELSE-IF statements that can present in between starting IF and ending ELSE statements?

Study and learn Interview MCQ Questions and Answers on IF , ELSE , ELSE IF Control Statements in java . Attend job interviews easily with these Multiple Choice Questions

Control Statements in java

All control statements take the boolean value as an INPUT and branches control accordingly. Usually, the true condition takes control to one branch of code and the false condition takes control to another branch. The only exception to this is a SWITCH statement which can accept integers like byte, short, int and enum, character type data like char and String.

Control Statements

Type of Control Statements in java

Java language has three types of Control Statements.

  1. Selection Statements
  2. Loop or Iteration Statements
  3. Jump Statements

1. Selection Control Statements in java

A Selection control statement takes a condition (boolean value or relational expression) as input and branches to one of the two possible branching point statements.

If the condition is true, One set of instructions or statements are executed and if the condition is false, another set of instructions are executed.

There are two types of Selection Control Statements.

  1. IF statement (IF ELSE statements)
  2. SWITCH statement

2. Loop Control Statements in java

Loop control statements execute a particular set of instructions repeatedly as long as the Loop Condition is satisfied i.e true condition.

There are four types of Loop Control Statements

  1. WHILE
  2. DO WHILE
  3. FOR
  4. FOR EACH or Advanced FOR or Enhanced FOR

3. Jump Control Statements in java

Jump control statements take the execution control by skipping a number of statements in between. Unlike other control statements, which go in a predictable linear way of execution, Jump control statements work in a non-linear nested way by skipping and jumping a number of statements.

There are three Jump Control statements.

  1. BREAK
  2. CONTINUE
  3. RETURN

Java IF, ELSE and ELSE IF control statements

Java language continues the same features of IF ELSE statements introduced by the C Language. Programmers heavily depend of IF ELSE statements to create good java products with efficiency. Remember that you can put any number of white spaces like TAB, New Line and Space between two tokens or keywords of a Java program. You can write all IF statements of a program in just one line though it is not reading friendly.

1. IF Control Statement

IF statement takes a condition as an input. This condition should evaluate to a boolean type constant like true or false. If you do not use Braces, only one statement or Single statement can be specified inside an if statement. With the use of Braces, you can add any number of statements inside a Single IF statement.

If the condition evaluates to true, statements below IF will be executed. Otherwise, program control goes to the next statement after the IF block.

Syntax:

if( CONDITION )
   //STATEMENT;

(or)

if( CONDITION )
{
   Statement1;
   Statement2;
   ...
}

Example: IF statement

The second statement is not part of IF(a<10). Use braces to add if required.

class IFStatement
{
  public static void main(String args[])
  {
    int a=11;
    if(a<10)
	  System.out.println(a + "<10");
	  System.out.println("AFRICA");
	
    int b=8;
    if(b<10)
    {	
	  System.out.println(b + "<10");
	  System.out.println("POLAND");
    }
  }
}
//OUTPUT
//AFRICA
//8<10
//POLAND

2. IF ELSE Control Statement

ELSE statement is a companion to the IF statement. You can not use ELSE without using the IF statement. ELSE block is executed only if IF condition fails or it is false.

Syntax:

if( CONDITION )
   //STATEMENT1;
else
   //STATEMENT2
(or)

if( CONDITION )
{
   Statement1;
   Statement2;
   ...
}
else
{
   Statement8;
   Statement9;
   ...
}

Example: IF ELSE statement with String comparison

“str” is compared with “str2”. Both the String variables hold the same value “ELEPHANT”. So, IF condition evaluates to true and the corresponding statements are executed.

class IF_ELSE_Statement
{
  public static void main(String args[])
  {
    String str="ELEPHANT";
    String str2= "ELEPHANT";
    if(str == str2)
    {
	  System.out.println("IF Condition");
    }
    else
    {
	  System.out.println("ELSE Condition");
    }

    if(str != str2)
    { System.out.println("IF Condition"); }
    else
    { System.out.println("ELSE Condition"); }
  }
}
//OUTPUT
//IF Condition
//ELSE Condition

3. IF ELSE IF Control Statement

IF ELSE-IF ladder is useful to execute a different set of statements for different conditions. We can use as many ELSE-IF statements as we want. Do note that the ELSE statement or block at the end of IF-ELSE-IF is not mandatory or it is optional.

If any of IF or ELSE IF condition matches control goes inside that IF or ELSE IF and then exits without going inside ELSE block at the last.

“float” is promoted to type “double” in this example.

Example:

public class IF_ELSE_IF
{	
  public static void main(String[] args)
  {
    float a = 1.5f;
    float b = 2.5f;
    if(a > 2)
    {
      System.out.println("A>2");	
    }
    else if(b>2)
    {
	  System.out.println("B>2");
    }
    else if(a>1)
    {
 	  System.out.println("A>1");
    }
    else
    {
	  System.out.println("UNKNOWN");
    }
  }
}
//OUTPUT
//B>2

4. NESTED IF, ELSE and ELSE-IF Control Statements

You can nest an IF inside another IF. and You can nest an IF ELSE inside another IF. You can nest IF ELSE inside another ELSE or ELSE-IF and so on. Carefully use braces to demarcate one block from another block. You can add as many conditions as you want. Some programmers write multiple conditions on a single line with the help of relational operators and a single IF.

Example:

public class NESTED_IF
{	
  public static void main(String[] args)
  {
    float a = 1.5f;
    float b = 2.5f;
    if(a > 1)
    {
      if(b>=2)
      {
        System.out.println("A>1 AND B>2");	
      }
      else
      {
        System.out.println("A>1 AND B<2");
      }
    }
    else if(a>2)
    {
	  System.out.println("A>2");
    }
    else
    {
	  System.out.println("UNKNOWN");
    }
  }
}
//OUTPUT
//A>1 AND B>2


[WpProQuiz 152]

Control Statements in java Interview MCQ

1) An IF-ELSE statement is also called ___.

A) Branching statement

B) Control statement

C) Block statements

D) All

Answer [=] D

Explanation:

Block statements are those that are usually surrounded by Braces { and }. So, a WHILE statement is also called a Block statement.

2) An IF or ELSE IF statement accepts ___ as input before branching.

A) boolean

B) int

C) float

D) char

Answer [=] A

3) An IF statement in Java is also a ___ statement.

A) boolean

B) conditional

C) iterative

D) optional

Answer [=] B

4) Java style IF-ELSE statements are similar to ___.

A) C style

B) C++ Style

C) Both C and C++ style

D) None

Answer [=] C

5) State TRUE or FALSE. Every IF statement must be followed by an ELSE of ELSE-IF statement.

A) TRUE

B) FALSE

Answer [=] B

6) An ELSE statement must be preceded by ___ statement in Java.

A) IF

B) ELSE IF

C) IF or ELSE IF

D) None

Answer [=] C

7) State TRUE or FALSE. A Single-Line comment or Multiline-comment is allowed in between if () and Left Brace ( { ).

A) FALSE

B) TRUE

Answer [=] B

Explanation:

if(a>10)//testing comment
{

}

8) State TRUE or FALSE. An IF statement code must be defined in between two Braces.

A) FALSE

B) TRUE

Answer [=] A

Explanation:

Single line of code does not need Braces {}
if(a>9)
  System.out.println("NINE");

9) The code inside an ELSE statement may be surrounded by Braces ?

A) FALSE

B) TRUE

Answer [=] B

Explanation:

if(true)
{ }
else
{
  //code line 1
  //code line 2
}

10) An ELSE or ELSE-IF statement in Java can not exist alone without IF statement ?

A) FALSE

B) TRUE

Answer [=] B

11) The condition of an IF statement evaluates to boolean only if the expression contains?

A) logical operators

B) relational operators

C) boolean operands

D) All

Answer [=] D

12) If the condition of an IF-statement is false, which is true below.

A) IF block is executed.

B) ELSE block is executed.

C) Both IF and ELSE blocks are skipped.

D) Both IF and ELSE blocks are executed.

Answer [=] B

Explanation:

If the condition is TRUE, IF-block is executed. Otherwise, ELSE-block is executed.

13) What is maximum lines of code that can be written inside a Java style IF, ELSE or IF-ELSE block?

A) 32

B) 64

C) 512

D) None

Answer [=] D

Explanation:

There is no such limit on the number of lines of code in any block or statement in Java.

14) An IF-ELSE statement is better than a SWITCH statement in which scenario below?

A) Checking for More-than condition

B) Checking for Less-than condition

C) Checking for Ranges

D) All

Answer [=] D

Explanation:

if(a>10 && a<20) { }

15) What is the maximum number of ELSE-IF statements that can present in between starting IF and ending ELSE statements?

A) 32

B) 64

C) 128

D) None

Answer [=] D

Explanation:

You can write any number of ELSE-IF statements in a Java program.

16) Choose the correct syntax of Java IF statement below.

A)

if(condition)
  //statement

B)

if(condition)
{
  //statement
}

C)

if(condition)
{
  //statement1
  //statement2
}

D) All

Answer [=] D

17) Choose a wrong statement on Java IF-ELSE syntax below.

A)

if(condition)
  //statement1
else
  //statement2

B)

else
  //statement2

C)

if(condition1)
  //statement1
else if(condition2)
  //statement2

D)

if(condition1)
  //statement1
else if(condition2)
  //statement2
else
  //statement3

Answer [=] B

Explanation:

“ELSE” and “ELSE IF ” statements should always be preceded by a valid IF statement.

18)

What is the output of Java program with IF statement?
if(1)
{
  System.out.println("OK");
}

A) OK

B) No output

C) Compiler error

D) None

Answer [=] C

Explanation:

The condition inside an IF statement should evaluate to either true/false. The below error is triggered.

Type mismatch: cannot convert from int to boolean

19) What is the output of the Java program with IF-ELSE statements?

if(TRUE)
  System.out.println("GO");
else
  System.out.println("STOP");

A) GO

B) STOP

C) Compiler error

D) None

Answer [=] C

Explanation:

Error: TRUE cannot be resolved to a variable

20) What is the output of the Java program?

int a=10;
if(a==9)
  System.out.println("OK ");
  System.out.println("MASTER");					
else
  System.out.println("BYE");

A) OK MASTER

B) BYE

C) Compiler error

D) None

Answer [=] C

Explanation:

More than 1 statement must be kept within Braces { } if ELSE or ELSE IF is next to the IF statement.

if(a==9)
{  
  System.out.println("OK ");
  System.out.println("MASTER");
}				
else
  System.out.println("BYE");

21) What is the output of the Java program?

String name1="FOX", name2="DOG";
if(name1 == "FOX")
  System.out.print("FOX ");
  System.out.println("GOOD");					
if(name2 == "CAT")
  System.out.println("DINO");

A) FOX DINO

B) FOX GOOD DINO

C) Compiler error

D) None

Answer [=] B

Explanation:

The second Print statement “GOOD” is always executed.

22) What is the output of the Java program?

String name="dino";
if(name == "dino")
	System.out.print("DINO");
System.out.println("GOOD");	

A) DINO GOOD

B) DINO

C) GOOD

D) Compiler error

Answer [=] C

Explanation:

The second Print statement is not part of the IF statement. So it is always executed.

23) What is the output of the Java program with IF-ELSE-IF statements?

int marks=55;
if(marks >= 80)
  System.out.println("DISTINCTION");
else if(marks >=35)
  System.out.println("PASS");
else
  System.out.println("FAIL");

A) DISTINCTION

B) PASS

C) FAIL

D) Compiler error

Answer [=] B

24) What is the output of the Java program?

int marks=85;
if(marks >= 80)
  System.out.println("DISTINCTION");
else if(marks >=35)
  System.out.println("PASS");

A) DISTINCTION

B) PASS

C) Compiler error

D) None

Answer [=] A

Explanation:

It is ok to skip the ELSE statement.

25) What is the output of Java program below?

float temp = 98.4f;
if(temp > 98.4)
{
  System.out.println("SUMMER");
}
else
{
  System.out.println("UNKNOWN");
}

A) SUMMER

B) UNKNOWN

C) Compiler error

D) None

Answer [=] A

26) What is the output of the Java program?

long num = 123L;
if(num > 123)
{
	System.out.println("TIGER");
}
else
{
	System.out.println("BIRD");
}

A) TIGER

B) BIRD

C) Compiler error

D) None

Answer [=] B

27) What is the output of the Java program?

int horses = 10;
int camels = 5;
if(horses > 5)
{
  if(camels > 3)
  {
    System.out.println("FOREST");
  }
}
else
{
   System.out.println("CITY");
}

A) FOREST

B) CITY

C) Compiler error

D) None

Answer [=] A

Explanation:

Nesting of IF and ELSE is allowed in Java.

28) What is the output of the Java program?

int horses = 10;
int camels = 5;
if(horses < 5)
{
  System.out.println("TOWN");
}
else if(horses >=5)
  System.out.print("FOREST ");
  System.out.println("AMAZON");
else
  System.out.println("UNKNOWN");

A) TOWN

B) FOREST AMAZON

C) UNKNOWN

D) Compiler error

Answer [=] D

Explanation:

ELSE-IF statement should not contain more than one statement without braces { }.

29) What is the output of the Java program?

int marks=29;
if(marks > 29);
   System.out.print("PASS ");
System.out.println("RANK");	

A) RANK

B) PASS

C) PASS RANK

D) Compiler error

Answer [=] C

Explanation:

Notice the immediate Semicolon (;) after the IF. It ends the IF block. So whatever is next or below it will be executed always.

30) What is the output of the Java program below?

if(3>1)
{
  4;
}

A) 0

B) 4

C) Compiler error

D) None

Answer [=] C

Explanation:

4; is not a valid statement.

31) What is the output of the Java program with IF statement?

if(true)
{
   break;
   System.out.println("ELEPHANT");
}

A) No output

B) ELEPHANT

C) Compiler error

D) None

Answer [=] C

Explanation:

Error: break cannot be used outside of
 a loop or a switch

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.