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

Type Casting in Java or Type Conversion or Type Promotions Tutorial and MCQ

Type Casting in Java

Table of Contents

    • Type Casting in Java
  • Type Promotions or Type Conversions in java
    • Compatible Data Types
    • Incompatible Data Types
    • Automatic Type Promotion Scenarios
    • 1 Example
    • 2 Example
    • 3 Example
  • Type Casting in Java
    • Syntax of Type Casting
    • 1.Example
    • 2. Example – Real World Example for Software Developers
  • Type Casting in JAVA MCQ (Important)
    • 1) What are the Type Conversions available in Java language?
    • 2) What is a higher data type in Java language?
    • 3) What is a Widening Type Conversion in Java?
    • 4) What is a Narrowing Type Conversion in Java?
    • 5) What is the result of a Narrowing type conversion?
    • 6) What is the result of a Widening Type Conversion in Java?
    • 7) Type promotion in Java usually refers to ____.
    • 8) Type Casting in Java usually refers to ____?
    • 9) Explicit Type Conversion in Java refers to ___?
    • 10) Implicit Type Conversion in Java is also called ___?
    • 11) Which are the compatible Data Types for Type Promotion or Type Casting?
    • 17) In a lossy Type Casting or Type Conversion, how is the number truncated to the target data type in Java?
    • 19) A boolean literal in Java can be type casted to which data type?
    • 20) Which data type is type promote to if a variable or operand in an expression is of type long?

Study and learn Type Casting in Java MCQ questions and answers on Type Casting or Type Promotions. To convert from one data type to the other either Implicit or Explicit Type Conversions are required. Attend job interviews easily with these MCQs.

Type Casting in Java

Java allows developers to work with different types of data.and Java allows conversion of numeric data of type byte, short, char, int, long, float and double from one type to another type.

Automatic Type Conversion refers to both Automatic Type Promotions and Type Casting. Type Promotion is a Widening Conversion while Type Casting is a Narrowing Conversion. A widening conversion is also called Upward Casting and Narrowing Conversion is also called a Downward Casting.

Type Promotions or Type Conversions in java

Implicit type conversion of a variable from one data type to another data type is called Type Promotion. Since it is a Type Promotion, the value of a variable is promoted to a compatible higher data type. This type of conversion is also called a Widening Conversion.

Note 1: Type Promotion is a Lossless Conversion. Data is not truncated.

Note 2: Some developers call this Automatic Type Conversion as Automatic Type Casting or Implicit Type Casting. Explicit Type casting or conversion is simply called Type Casting.

Numeric arithmetic expressions are automatically promoted to a higher data type provided the following two conditions or Rules are satisfied.

  1. Target data type should be compatible with the source data type.
  2. Target data type should be bigger in size than the source data type.

Compatible Data Types

All numeric data types are compatible for either Widening Conversion or Narrowing Conversion. The list is below.

  • byte
  • char
  • short
  • int
  • long
  • float
  • double

Incompatible Data Types

Numeric to Non-numeric data types are incompatible for either Widening Conversion or Narrowing Conversions. The list is below.

  • boolean
  • byte, char, short, int, long, float, double

Automatic Type Promotion Scenarios

If one of the operands is of type long, the whole arithmetic expression gives a long value. If one of the operands is of type float, the whole arithmetic expression gives a float value. Lastly, if one of the operands is of type double, the whole arithmetic expression gives a double value.

Here is the list of possible Scenarios of how a data type is promoted automatically.

  1. byte to int
  2. char to int
  3. short to int
  4. int to long
  5. byte to long
  6. char to long
  7. short to long
  8. byte to float
  9. char to float
  10. short to float
  11. int to float
  12. byte to double
  13. char to double
  14. short to double
  15. int to double
  16. float to double

1 Example

class TypePromotion1
{
  public static void main(String args[])
  {
    short a = 120;
    byte b = 50;
    //120*50 is promoted to int automatically
    int c = a*b;
    System.out.println(c);
    
    int a = 4;
    byte d = a * 5; //ERROR
    //a*5 is converted to int
    //int to byte conversion is not automatic
  }
}

2 Example

class TypePromotion2
{
  public static void main(String args[])
  {
    short a = 120;
    float b = 50.0f;
    //120*50.0f is promoted to float automatically
    float c = a*b;
    System.out.println(c);

    float d = 65;
    //65 is converted to float
  }
}

3 Example

class TypePromotion3
{
  public static void main(String args[])
  {
    short a = 120;
    int b = 50;
    double c = 1.0;
    //120*50*1.0 is promoted to double automatically
    //short * int * 1.0 == double
    double e = a*b*c;
    System.out.println(c);

    double f = 35*1.0;
    //35*1.0 => int * double == double
    System.out.println(f);

    double g = 40;
    //40 is converted to double
  }
}

Type Casting in Java

Type Casting is nothing but manually casting or converting an operand or constant or the value of an expression from one data type to another. java Type Casting is explicit in nature and it is a Narrowing Type Conversion.

Note: Type Casting is a Lossy Conversion. Data is TRUNCATED

You should check compatibility before casting the data (constant, value of expression) to another data type. Check the above list of Compatible and Incompatible data types under Type Promotions.

Numeric arithmetic expressions are manually demoted to a lower data type provided the following two conditions or Rules are satisfied.

  1. The target data type is compatible with the source data type.
  2. The target data type is smaller in size than the source data type.

Syntax of Type Casting

Syntax for explicit type casting includes Parentheses surrounding a Target Data Type and an immediately following Source Data Type.

(Target Data Type)Source Data Type

Example:
float a = 34.56;
int b = (int)a;

1.Example

Type casting from int to short, int to byte, int to char and char to int are shown below.

class TypeCasting1
{
  public static void main(String args[])
  {
    int a = 30;
    //int to short type casting
    short b = (short)a;

    //int to byte
    byte c = (byte)a;

    //short to byte
    byte d = (byte)b;

    //int to char
    int num = 65;
    char ch = (char)num;
    System.out.println(ch); //prints A

    //char to int
    char ch2 = 'B';
    int num2 = ch2;
    System.out.println(num2); //prints 66;
  }
}

2. Example – Real World Example for Software Developers

Below example demonstrates how to retain only 2 digits of precision. You can use Format Specifiers to print only 2 digits after precision. But, the variable holds all the digits.

class TypeCasting2
{
  public static void main(String args[])
  {
    //GOAL : PRINT : 21.42
    int a = 150;
    int b = 7;
    //150/7 = 21.428572
    float c = a/b;
    printf(c);
    //Unfortunately Output: 21.0

    //TYPE PROMOTION
    //1.0f promotes int a to float value
    float d = (1.0f * a)/b; // 150.0/7
    d = d* 100; //2142.8572
    //TYPE CASTING
    d = (int)d; //lossy conversion
    d = 1.0f * d / 100; // 2142.0/100
    System.out.println(d);
    //varible d holds only two precision digits
    //Output: 21.42
  }
}

This is how Java language implements Type Casting or Type Conversions which are essential to handle different types of input data

[WpProQuiz 55]

Type Casting in JAVA MCQ (Important)

1) What are the Type Conversions available in Java language?

A) Narrowing Type Conversion

B) Widening Type Conversion

C) A and B

D) None of the above

Answer [=] C

2) What is a higher data type in Java language?

A) A data type which holds more data than other data types

B) A data type whose size is more than other data types

C) A data type which can hold more precision digits than other data types

D) All the above

Answer [=] D

Explanation:

Float is bigger than short

double is bigger than float

3) What is a Widening Type Conversion in Java?

A) Conversion of data from higher data type to lower data type

B) Conversion of data from lower data type to higher data type

C) Conversion of data from any data type to any data type

D) None of the above

Answer [=] B

4) What is a Narrowing Type Conversion in Java?

A) Conversion of data from lower data type to higher data type

B) Conversion data from a higher data type to a lower data type

C) Conversion of data from any data type to any data type

D) None of the above

Answer [=] B

5) What is the result of a Narrowing type conversion?

A) Loss of data

B) Addition of data

C) Corruption of data

D) None of the above

Answer [=] A

Explanation:

int a =(int)1.2f;
//a holds 1

6) What is the result of a Widening Type Conversion in Java?

A) Loss of data

B) Gain of data

C) No change

D) None of the above

Answer [=] C

Explanation:

int a=456;
float b = a; //No change of data
//b holds 456.0;

7) Type promotion in Java usually refers to ____.

A) Narrowing Type Conversion

B) Widening Type Conversion

C) No Type Conversion

D) None of the above

Answer [=] B

Explanation:

All integers are promoted to int or long.

And All characters are promoted to int from char or long from char.

All float numbers are promoted to double.

8) Type Casting in Java usually refers to ____?

A) Narrowing Type Conversion

B) Widening Type Conversion

C) No Type Conversion

D) None of the above

Answer [=] A

9) Explicit Type Conversion in Java refers to ___?

A) Narrowing Type Conversion

B) Widening Type Conversion

C) No Type Conversion

D) None of the above

Answer [=] A

10) Implicit Type Conversion in Java is also called ___?

A) Narrowing Type Conversion

B) Widening Type Conversion

C) No Type Conversion

D) None of the above

Answer [=] B

Explanation:

Implicit type conversion is an Automatic Type Promotion from a lower data type to a higher data type.

11) Which are the compatible Data Types for Type Promotion or Type Casting?

A) byte, char, short

B) char, int, float

C) float, long, double

D) All the above

Answer [=] D

Explanation:

Number to Number conversions are possible with or without a data loss.

12)

What is the output of the following Java Code?
int a=9;
float b = a/2;
System.out.println(b);

A) 4.0

B) 4.5

C) 5.0

D) None of the above

Answer [=] A

Explanation:

You need to type cast at least one number in that expression to float or double to do real number division.

float b = 9*1f/2;
//4.5

13)

What is the output of the below Java code snippet?
char ch = 'A';//ASCII 65
int a = ch + 1;
ch = (char)a;
System.out.println(ch);

A) 66

B) A

C) B

D) 65

Answer [=] C

Explanation:

ch is promoted to int and 1 is added. int value 66 is again type casted to char type. So out will be the next character of A i.e B.

14)

What is the output of the below Java code snippet?
float a = 8.2/2;
System.out.println(a);

A) 4.1

B) 8.1

C) 4

D) Compiler error

Answer [=] D

Explanation:

Add a suffix f or F 
float a = 8.2f/2;
(or)
explicit typecast
float a = (float)8.2/2;
System.out.println(a);

15)

What is the output of the Java code snippet?
byte b = 25;
b++;
b = b+1;
System.out.println(b);

A) 25

B) 26

C) 27

D) Compiler error

Answer [=] D

Explanation:

Explicit type casting is required.
Expression b+1 gives int value
byte b = 25;
b++;
b = (byte)(b+1);
System.out.println(b);
//OUTPUT = 27

16)

What is the output of the Java code snippet?
int a = 260;
byte b= (byte)a;
System.out.println(b);

A) 0

B) 4

C) 255

D) 260

Answer [=] B

Explanation:

If a number is too big for a data type, it applies Modulo Division by the highest number possible of that data type. Byte range is -128 to +127. 260 > 127. So, modulo division is applied.

260%256 = 4

17) In a lossy Type Casting or Type Conversion, how is the number truncated to the target data type in Java?

A) That big number is divided by the target data type highest possible number say 2^N.

B) That big number is Modulo Divided by the target data type highest possible number say 2^N and the Remainder is taken.

C) That big number is Modulo Divided by the target data type highest possible number say 2^N and the Quotient is taken.

D) None of the above

Answer [=] B

Explanation:

byte Maximum = 256 = (*2^8)
short maximum = 2^16 = 65536
int maximum = 2^32
long maximum = 2^64

18)

What is the output of the Java code snippet?
short a = (short)65540;
System.out.println(a);

A) 0

B) 4

C) 65536

D) 65540

Answer [=] B

Explanation:

65540 is bigger than short range -32768 to +32767.
So, 65540 % 2^32 = 65540%65536 = 4

19) A boolean literal in Java can be type casted to which data type?

A) byte

B) short

C) int

D) None of the above

Answer [=] D

Explanation:

A boolean literal or variable takes only true or false. So, it does not accept numbers for type conversion.

20) Which data type is type promote to if a variable or operand in an expression is of type long?

A) int

B) long

C) float

D) double

Answer [=] B

Explanation:

All other operands are type promote to the highest data type available in that expression. If the highest data type is double in an expression, the final result will also be a double value.

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.