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

Data Types in C and Storage Classes Tutorial and MCQ

Data Types in C

Table of Contents

  • Data Types in C
  • Data Types in C
    • 1) Int Data Type in c
    • 2) Short Data Type in c
    • 3) Long Data Type in c
    • 4) Float Data Type in c
    • 5) Double Data Type in c
    • 6) Long Double Data Type in c
    • 7) Char Data Type in c
  • C Programming Storage Classes Tutorial
  • C Storage Classes
    • 1. Auto Storage Class
    • 2. Register Storage Class
    • 3. Static Storage Class
    • 4. Extern Storage Class
  • Data Types in C MCQ

Learn Data Types in C Tutorial and MCQ Questions and Answers on Basics to attend job placement exams, interview questions, college viva and Lab Tests . C Programming Data Types Tutorial online test

Data Types in C

A programming language should deal with different types of data. The type of data can be a Whole number, Real number or Character string. C language comes with predefined data types like int, long, float, double and char. We use the word define when we are initializing or assigning a constant value to a variable.

Different Types of Buckets hold different types of Data. A bucket can be thought of like a memory location. C Programming Data Types Tutorial

Data Types in C

Basic Data Types in C are as follows.

  1. int – Integer data type
  2. short – Integer data type smaller than int
  3. long – Integer data type bigger than int
  4. float – Real number data type
  5. double – Real number data type bigger than float
  6. long double – Real number data type bigger than double
  7. char – Character data type

1) Int Data Type in c

Integers are whole numbers without any decimal points. Size of an int variable is 4 bytes maximum in a 32 bit compiler. In 16 bit old compilers, size of int is only 2 bytes. ‘u’ is appended to define unsigned int variable. To represent signed variables, keyword ‘signed’ is not required. You can use if you want. Compiler will not through error.

int range

Range of signed int variable is from -2147483648 to 2147483647.

Range of unsigned int variable is from 0 to 4294967295.

10, 35, 876, 001 are int type.

0.5, 10.7, 22.5, 123.456789 are not int type. These are float or double type.

Declaring an Int Variable

int k;

Defining an int Variable

int k=10;
int p;
p=25;
unsigned int a= 334u;

Format Specifier for Reading using Scanf

To read or scan signed int values, format Specifier ‘%d’ is used.

To scan unsigned in values, format specifier ‘%u’ is used.

Format Specifier for Printing using Printf

To print signed int values, format specifier ‘%d’ is used.

To print unsigned int values, format specifier ‘%u’ is used.

2) Short Data Type in c

Size of a short variable is 2 bytes which is half the size of an int variable.

short range

Range of signed short variable is from -32768 to 32767.

Range of unsigned short variable is from 0 to 65535.

Declaring and Defining Short Variable

short pp = 123;
short qq;
qq = 456;

Format Specifier for Reading using Scanf

To read or scan signed short values, format Specifier ‘%d’ is used.

To scan unsigned short values, format specifier ‘%u’ is used.

Format Specifier for Printing using Printf

To print signed short values, format specifier ‘%d’ is used.

To print unsigned short values, format specifier ‘%u’ is used.

3) Long Data Type in c

Size of a long variable is 4 bytes. Letter ‘l’ or ‘L’ is used to define signed long variable. Letters ‘lu’ or ‘ul’ is used to define unsigned long variable.

long range

Range of signed long variable is from -2147483648 to 2147483647.

Range of unsigned long variable is from 0 to 4294967295.

Declaring and Defining long variable

long ab = 45L;
unsigned long p = 5678912ul;

Format Specifier for Reading using Scanf

To read or scan signed long values, format Specifier ‘%ld’ is used.

To scan unsigned long values, format specifier ‘%lu’ is used.

Format Specifier for Printing using Printf

To print signed long values, format specifier ‘%ld’ is used.

To print unsigned long values, format specifier ‘%lu’ is used.

4) Float Data Type in c

Float numbers are simply real numbers with decimal points. You can append letter ‘f’ to define a floating point constant. Size of a float variable is 4 bytes.

3.1415 is a double data type constant.

3.1415f is a float data type constant. Use an explicit ‘f’ letter.

Declaring and Defining float variable

float ab = 3.14f;
float p = (float)5678.1234;
float q;
q = 45.678f;

float range

Range of floating point variable can be from -3.4e38 to +3.4e38.

Format Specifier for Reading using Scanf

To read or scan float values, format Specifier ‘%f’ is used.

Format Specifier for Printing using Printf

To print float values, format specifier ‘%f’ is used.

5) Double Data Type in c

C double data type is two times the size of a float variable. It can hold a real number with 8 bytes memory. Any real number without any appending letter is a double data type constant.

3.14 is a double data type constant.

Declaring and Defining double variable

double score= 98.12345678;

double range

Range of double variable can be from -1.7e308 to +1.7e308.

Format Specifier for Reading using Scanf

To read or scan double values, format Specifier ‘%lf’ is used.

Format Specifier for Printing using Printf

To print double values, format specifier ‘%lf’ is used.

6) Long Double Data Type in c

C long double data type is two times the size of a double variable. It can hold a real number with 10 bytes memory. Any real number with an appending letter ‘l’ or ‘L’ is a long double constant.

3.14L is a long double data type constant.

Declaring and Defining double variable

long double score= 98.12345678L;

long double range

Range of long double variable can be from -1.7e4932 to +1.7e4932.

Format Specifier for Reading using Scanf

To read or scan long double values, format Specifier ‘%Lf’ is used.

Format Specifier for Printing using Printf

To print long double values, format specifier ‘%Lf’ is used.

7) Char Data Type in c

C char data type is used to represent or store letters and symbols. Its size is only 1 byte.

ASCII – American Standard Code for Information Interchange defined integer codes for each letter, number and symbol.

Declaring and Defining char variable

char group= 'M';

char range

Range of signed char variable can be from -128 to + 127.

Range of unsigned char variable can be from 0 to + 255.

Format Specifier for Reading using Scanf

To read or scan character values, format Specifier ‘%c’ is used.

Format Specifier for Printing using Printf

To print character values, format specifier ‘%c’ is used.

C Programming Storage Classes Tutorial

A Storage Class in C language decides the following.

  • Where to store a variable in memory
  • Default value to be assigned to the variable at the time of creation.
  • Scope of a variable within which the variable can store value and outside which the variable is not accessible.
  • Life of the variable or the amount of time variable is kept for use.

Each and every variable in C language requires both Data Type and Storage Class. By default, ‘auto’ storage class is applied to a variable.

C Storage Classes

There are four types of Storage Classes in C language. Keywords used to declare or define C storage classes are auto, register, static and extern.

  1. Auto Storage Class or Automatic Storage Class
  2. Register Storage Class
  3. Static Storage Class
  4. Extern Storage Class

1. Auto Storage Class

An ‘auto’ storage variable is stored in memory. This memory is called Stack Memory.

Default value of an auto storage variable is garbage value or random value.

Scope of an auto variable is local to the block where it is defined.

Life of an auto variable is till the execution control stays within the block where it is defined.

In the below example, variable ‘a’ is declared without ‘auto’ keyword. But the compiler treats variable like auto variable only. There is no need to explicitly mention ‘auto’ storage class. It is applied to variables by default.

int main()
{
   int a; //same as auto int a;
   auto int b;
   printf("%d %d", a, b);
   return 0;
}

As there is no value assigned to variables, output of the above program is just garbage values. A garbage value is simply a random number of declared type. Here the random value is int type.

int main()
{
  auto int a=20;
  {
    int a=10;
    printf("%d",a);
  }
  printf("%d",a);

  return 0;
}
//output = 10 20

In the above example, outer a=20 is different from inner a=10. Curly braces define a block in C language. So, a=10 is cleared from memory after the block. So after printing a=10, execution control goes to outer printf to print a=20. After completion of the block, scope and life of an ‘auto’ variable dies.

In the above infographic image, an auto variable is compared with an AUTO CLOSE BOOK. For each new person, page number of the book is new and random. There is no stored value between function calls.

2. Register Storage Class

A Register storage variable is similar to ‘auto’ storage variable. Only difference between an auto variable and register variable is the memory location where the variable is stored. Register variables are stored in CPU Registers. These registers are extra memory locations along with RAM memory locations. CPU registers allow fast reading and writing of data. So processor need not ask RAM to read and write data, thus saving time.

Default value of a Register storage variable is garbage value.

Scope of a Register storage variable is local to the block where it is defined.

Life of a Register variable is till the execution control stays within the block where it is defined.

int main()
{
   register int a=1;
   while(a<10)
   {
	 printf("%d ", a);
	 a++;
   }
}

Register storage class variables are often used with loop counters or iteration variables to reduce execution time on repetitive works. Also, if a variable is used at many places in a program, then it is better to declare that variable under Register storage class to save time.

The number of CPU registers are always limited. So there is no guarantee that the storage class ‘register’ ensures storing the variable in CPU registers. You do not get any error. CPU treats the variable like an auto storage class variable and uses stack memory without any warning.

Also note that the size of a CPU register may be 16 bit or 32 bit. If the variable size is more than the size of the register, CPU automatically places the variables in auto storage class. Suppose you want to store a float variable in Register storage class of 16 bit register CPU. Even if you declare explicitly like register float abc=1.2f;, it is treated like an automatic storage class variable.

3. Static Storage Class

A static storage class variable retains its value between function calls. This is called persistence. These static variables die only with the program execution. In case of auto storage variable and register storage variable, value is reset to default after the block or function execution ends. So these auto and register variables can not retain value between function calls.

Static variables are stored in Data Segment Memory instead of Stack Memory.

Default value of a static variable is Zero.

Scope of a static variable is with in the block or function where it is declared.

Life of a static variable exists till the program execution ends.

Example 1:

In the image above with a computer and books on a table, a static variable is like a book with a pen. You can keep pen to maintain page number. Even if you close the book (function or block ends), pen maintains the book number. Next time you open the book (subsequent function or block calls), last page number is maintained.

Example 2:

If you open many windows in a computer and press sleep button, the computer goes to sleep. Once you wake the PC again, all programs are restored with the previous state. Similarly, the value of a static variable persists between function calls. Once you shutdown (program execution ends) the computer, all programs (variables) are removed from memory.:

Example Program:

int main()
{
  display();
  display();
}
void display()
{
  //invoked only for very first function call
  static int a=10;
  
  static int c;
  //executed everytime fresh as it is just an assignment
  c=30;

  //invoked fresh every time
  auto int b=20;

  a++; b++; c++;
  printf("%d %d %d\n", a, b, c);
}
//output
//11 21 31
//12 21 31

4. Extern Storage Class

Extern or External storage class variables are called global variables. These variables are available to all functions of that C Program. These variables are defined outside of all functions. Variables that are declared inside a function or block are called local variables.

Extern variables are stored in Memory or RAM.

Default value of an extern storage class variable is Zero like static variable.

Scope of an extern variable is global or the entire program.

Life of an extern variable is until the program execution ends.

When to use external variables?

Declare and define an extern variable when you want to make the variable available to all functions of the C program. Also, if you want to make the variable available to functions outside the C program where you defined it.

To use external variables in your program, you need to do two things.

  1. Use include<> statement to import the C files into your program.
  2. Declare the extern variable in other C files with an ‘extern’ keyword.

Example 1:

int stock=5;
int main()
{
  display();
  stock++;
  display();
}
void display()
{
  printf("Stock=%d\n",stock);
}
//output
//Stock=5;
//Stock=6;
//variable stock is available to both main() and display() functions.

Example 2:

To use a variable that is not defined until the execution point use ‘extern’ keyword.

int main()
{
  extern int stock;
  printf("Stock=%d\n",stock);
}
extern int stock=5;

In other programming languages, the order of definition of global variables is not important.

Example 3:

You can make your program variable available to included C Files using the extern keyword.

#include<display.c>
void showme();

int stock=10;
int main()
{
  printf("Stock=%d\n",stock);
  showme();
}

//display.c file
extern int stock;
void showme()
{
  stock++;
  printf("Stock=%d", stock);
}

//output
// Stock=10
// Stock=11

In other programming languages, the order of definition of global variables is not important.

[WpProQuiz 23]

Data Types in C MCQ

1) Choose a correct statement regarding automatic variables.

A) #include<stdio.h>

main()

{
	auto int a;

	printf("%d", a);
}

//output is compiler error. a is not initialized.

B) #include<stdio.h>

main()

{
	auto int a;

	printf("%d", a);
}

//output = 0

C) #include<stdio.h>

main()

{
	auto int a;

	printf("%d", a);
}

//output = null

D) #include<stdio.h>

main()

{
	auto int a;

	printf("%d", a);
}

//output = some random number

Answer [=] D

Explanation:

Yes. If an integer is not initialized, some random number in integer range will be displayed.

2) What is the output of the program.? #include<stdio.h>

int main()
{
	printf("Hello Boss.");
}

A) Hello Boss.

B) hello boss

C) No output

D) Compiler error

Answer [=] D

Explanation:

Notice the return type int before main() method. So main should maintain a return 0; or return somenumber; statement.

3) What is the output of the program.?

int main()
{
	auto int a=10;
	{
		auto int a = 15;
		printf("%d ", a);
	}
	printf("%d ", a);
	return 1;
}

A) 10 10

B) 10 15

C) 15 10

D) Compiler error

Answer [=] C

Explanation:

Automatic or Register variables have block scope and life. Most recent definition takes precedence. {…} is a block.

4) What is the output of the program.?

int main()
{
	register a=10;
	{
		register a = 15;
		printf("%d ", a);
	}
	printf("%d ", a);
	
	return 20;
}

A) 15 20

B) 15 10

C) 10 15

D) 15 15

Answer [=] B

Explanation:

Automatic and Register variables have only Block Scope. Always local definition takes precedence.

5) What is the output of the C Program statement.?

register int b;
prinf("%d", b);

A) null

B) 0

C) random integer number

D) random real number

Answer [=] C

Explanation:

auto and register variables hold garbage values by default.

6) What is the output the program.?

int main()
{
	register a=80;
	auto int b;
	b=a;
	printf("%d ", a);
	printf("%d ", b);
	
	return -1;
}

A) Compiler error. You can not assign register value to int variable.

B) 80 80

C) 80 0 Register value can not be copied.

D) Compiles, but output is none.

Answer [=] B

7) What is the output of the program.?

void myshow();

int main()
{
	myshow();
	myshow();
	myshow();
}

void myshow()
{
	static int k = 20;
	printf("%d ", k);
	k++;
}

A) 20 20 20

B) 20 21 21

C) 20 21 22

D) Compiler error.

Answer [=] C

Explanation:

Variable of type static holds its value until the end of program execution. Static variables do not initialize again and again with function calls.

8) What is the output of the program.? #include<stdio.h>

static int k;

int main()
{
	printf("%d", k);
	
	return 90;
}

A) -1

B) 0

C) 90

D) Compiler error

Answer [=] B

Explanation:

Default value of a static variable is zero by default.

9) What is the output of the program.?

int main()
{
	register k = 25;
	printf("%d", &k);
	
	return 90;
}

A) prints of address of variable k.

B) 25

C) 0

D) Compiler error

Answer [=] D

Explanation:

You can not use Ampersand & operator with a Register variable. Register is part of CPU and accessing it is not authorized.

10) The statement below is …..a

extern int p;

A) Declaration

B) Definition

C) Initialization

D) None of the above

Answer [=] A

Explanation:

Usually, most of the C statements with extern keyword are Declarations.

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

  • Phasor Diagram of 3 Phase Induction Motor
  • बौद्ध कालीन शिक्षा
  • Rotating Magnetic Field in 3 Phase Induction Motor
  • Squirrel Cage Induction Motor
  • वैदिक कालीन शिक्षा
  • Slip Ring Induction Motor
  • 3 phase induction motor Definition & Working Principle
  • 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

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.