Skip to the content

onlineexamguide

  • Home
  • Courses
  • Engg. Interview
    • Placement Papers
    • Electrical Engineering
    • Mechanical Engineering
    • Automobile Engineering
    • Civil Engineering
    • Computer Science Engineering
    • Chemical Engineering
  • Online Exam
    • NTA UGC NET Exam
    • SSC Examination quiz
    • TET Examination Quiz
    • Banking Exam
    • Aptitude Tricks
    • Computer Knowledge
    • Logical Reasoning Tricks
    • English Language
    • Staff Nurse Exams
    • General Knowledge
    • Networking
  • Ghatna Chakra
  • Register
    • Instructor Registration
    • Student Registration
  • User Login
  • Home
  • Courses
  • Engg. Interview
    • Placement Papers
    • Electrical Engineering
    • Mechanical Engineering
    • Automobile Engineering
    • Civil Engineering
    • Computer Science Engineering
    • Chemical Engineering
  • Online Exam
    • NTA UGC NET Exam
    • SSC Examination quiz
    • TET Examination Quiz
    • Banking Exam
    • Aptitude Tricks
    • Computer Knowledge
    • Logical Reasoning Tricks
    • English Language
    • Staff Nurse Exams
    • General Knowledge
    • Networking
  • Ghatna Chakra
  • Register
    • Instructor Registration
    • Student Registration
  • User Login

C Programming MCQ on Data Types and Storage Classes in C

Storage Classes in C

Table of Contents

  • Data Types and Storage Classes in C
  • C Data Types
    • 1) C Int Data Type
    • 2) C Short Data Type
    • 3) C Long Data Type
    • 4) C Float Data Type
    • 5) C Double Data Type
    • 6) C Long Double Data Type
    • 7) C Char Data Type
  • Storage Classes in C
  • Storage Classes in C
    • 1. Auto Storage Class in c
    • 2. Register Storage Class in c
    • 3. Static Storage Class in c
    • 4. Extern Storage Class in c
  • Data Types and Storage Classes in c interview MCQ
    • 1) What is a C Storage Class.?
    • 2) Every C Variable must have.?
    • 4) What is the default C Storage Class for a variable.?
    • 7) Variables of type auto, static and extern are all stored in .?
    • 11) Which among the following is a Local Variable.?
    • 12) Which among the following is a Global Variable.?
    • 15) What is the difference between Declaration and Definition.?

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

Data Types and Storage Classes 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 and Storage Classes Tutorial

C Data Types

Basic C data types 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) C Int Data Type

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) C Short Data Type

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) C Long Data Type

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) C Float Data Type

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) C Double Data Type

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) C Long Double Data Type

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) C Char Data Type

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.

Storage Classes in C

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.

Storage Classes in C

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 in c

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 in c

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 in c

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.

Storage Classes in C 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.

Storage Classes in C 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 in c

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 22]

Data Types and Storage Classes in c interview MCQ

1) What is a C Storage Class.?

A) C Storage decides where to or which memory store the variable.

B) C Storage Class decides what is the default value of a variable.

C) C Storage Class decides what is the Scope and Life of a variable.

D) All the above.

Answer [=] D

2) Every C Variable must have.?

A) Type

B) Storage Class

C) Both Type and Storage Class

D) Either Type or Storage Class

Answer [=] C

Explanation:

Yes. A C Variable should have both Type and Storage Class.

Eg.

int a=5; //By default its Storage Class is auto.
auto int b=10;

3) Find a C Storage Class below.

A) static

B) auto

C) register & extern

D) All the above

Answer [=] D

4) What is the default C Storage Class for a variable.?

A) static

B) auto

C) register

D) extern

Answer [=] B

Explanation:

int a=5; // auto is by default
auto int b=10; // storage class auto is explicitly mentioned.

5) Choose a right answer.

A) auto variable is stored in ‘Memory’. static variable is stored in ‘Memory’. extern variable is stored in ‘Memory’. register variable is stored in ‘Memory’.

B) auto variable is stored in ‘Memory’. static variable is stored in ‘Memory’. extern variable is stored in ‘Memory’. register variable is stored in ‘Register’.

C) auto variable is stored in ‘Register’. static variable is stored in ‘Register’. extern variable is stored in ‘Register’. register variable is stored in ‘Memory’.

D) auto variable is stored in ‘Register’. static variable is stored in ‘Register’. extern variable is stored in ‘Register’. register variable is stored in ‘Register’.

Answer [=] B

Explanation:

Only a register variable is stored in CPU Memory called Registers. Other variables are stored in RAM.

6) A register variable is stored in a Register. Where does a Register Present in a Computer.?

A) RAM ( Random Access Memory )

B) ROM ( Read Only Memory )

C) CPU (Central Processing Unit )

D) DMA ( Direct Memory Access )

Answer [=] C

Explanation:

Yes. Registers are part of a CPU to store variable whose value changes frequently. Loop variables for example.

register int i=1;
while(i <= 10)
{
	printf("i=%d\n", i); 
}

7) Variables of type auto, static and extern are all stored in .?

A) ROM

B) RAM

C) CPU

D) Compiler

Answer [=] B

8) Find a right answer.

A) Default value of auto variable = Garbage Value Default value of static = Garbage Value Default value of extern = Garbage Value Default value of register = Garbage Value

B) Default value of auto variable = zero Default value of static = zero Default value of extern = zero Default value of register = zero

C) Default value of auto variable = Garbage Default value of static = zero Default value of extern = zero Default value of register = Garbage

D) Default value of auto variable = zero Default value of static = Garbage Default value of extern = Garbage Default value of register = zero

Answer [=] C

9) Find a correct statement.

A) Scope of auto variable = local to block or function Scope of register variable = local to block or function Scope of static variable = local to block or function Scope of extern variable = global or available to all functions and blocks

B) Scope of auto variable = global or available to all functions and blocks Scope of register variable = global or available to all functions and blocks Scope of static variable = global or available to all functions and blocks Scope of extern variable = local to block or function

C) Scope of auto variable = global or available to all functions and blocks Scope of register variable =  local to block or function Scope of static variable = global or available to all functions and blocks Scope of extern variable = local to block or function

D) Scope of auto variable = local to block or function Scope of register variable = global or available to all functions and blocks Scope of static variable = local to block or function Scope of extern variable = global or available to all functions and blocks

Answer [=] A

10) Choose a correct statement.

A) Life of an auto variable = persists between function calls Life of an register variable = with in the block or function Life of an static variable = persists between function calls Life of an extern variable = until program ends

B) Life of an auto variable = persists between function calls Life of an register variable = until program ends Life of an static variable = persists between function calls Life of an extern variable = with in the block or function

C) Life of an auto variable = until program ends Life of an register variable = until program ends Life of an static variable = until program ends Life of an extern variable = until program ends

D) Life of an auto variable = with in the block or function Life of an register variable = with in the block or function Life of an static variable = persists between function calls Life of an extern variable = until program ends

Answer [=] D

11) Which among the following is a Local Variable.?

A) register

B) auto

C) static

D) extern

Answer [=] B

12) Which among the following is a Global Variable.?

A) auto

B) register

C) static 

D) extern

Answer [=] D

Explanation:

#include<stdio.h>

#include<myutils.c>

void myshow();
int a=10; // a is a global variable.
//Notice that there is no 'extern' keyword.
void main()
{
	printf("a=%d ", a);
	a = a + 1;
	myshow();
	show();

}

void show()
{
	printf("a=%d ", a);
}

//myutils.c file
//here we used extern to inform compiler
//about possible definition somewhere
extern int a;
void myshow()
{
	printf("a=%d ", a);
	a++;

}

//Output is 10 11 12

13) Choose a correct statement about static variable.

A) A static global variable can be accessed in other files.

B) A static global variable can be used only in a file in which it is declared.

C) A static global variable can not be declared without extern keyword.

D) Default value of a static variable is -1.

Answer [=] B

Explanation:

#include<stdio.h>
static int a=15;
void myshow();
int main()
{
	printf("%d", a);
	myshow();
	return 0;
}


//myutils.c file
extern int a;
void myshow()
{
	printf("%d", a);
}


//Compiler error.
//You can not use static global varible outside of file

14)

register float a = 3.14f;

Choose right statement.

A) Variable a is stored in CPU registers for fast access.

B) Variable a is converted to int and then stored in a CPU register.

C) register Storage Class is ignored and treated as

auto float a = 3.14f;

D) You get a compiler error as you can not store non integer value in a CPU register.

Answer [=] C

Explanation:

Yes. CPU register can not store anything more than 16 bits or 2 bytes. You will not any compiler errors. It will be treated just like an auto Storage Class variable.

15) What is the difference between Declaration and Definition.?

A) Declaration does allocate memory for a variable. Definition does allocate memory for a variable.

B) Declaration does allocate memory for a variable. Definition does not allocate memory for a variable.

C) Declaration does not allocate memory for a variable. Definition does allocate memory for a variable.

D) Declaration does not allocate memory for a variable. Definition does not allocate memory for a variable.

Answer [=] C

Explanation:

int a; //Definition. Allocates memory.

extern int b; //Does not allocate memory.

16) Choose a right statement.

A) A non static global variable can not be used in included files.

B) A non static global variable can be used or referred to inside included files.

C) A non static global variable does not live till the end of program execution.

D) None of the above

Answer [=] B

17) Choose a right statement.

A) Redeclaration of a variable is Ok.

B) Redefinition of a variable is not Ok.

C) Definition of a variable uses memory blocks.

D) All the above.

Answer [=] D

18) Choose a correct statement.

A) Register variables are usually fast retrieving variables.

B) Static variables are usually maintain their values between function calls.

C) Auto variables release their memory after the block or function where they are declared.

D) All the above.

Answer [=] D

19) Choose a right statement.

A) Variables of type auto are stored in Stack memory.

B) Variable of type Static are stored in Segmented Memory.

C) Variables of type register are stored in Micro Processor Memory.

D) All the above.

Answer [=] D

20) Choose a right statement.

A) Variables of type auto are initialized fresh for each block or function call.

B) Variables of type static are initialized only first time the block or function is called.

C) Variables of type register are initialized each time the block or function is executed.

D) All the above.

Answer [=] D

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

  • 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
  • Armature Reaction in Alternator

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.