Skip to the content

onlineexamguide

  • Home
  • Courses
  • Engineering Study Materials
    • 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
  • Engineering Study Materials
    • 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

Arrays and Pointers in C Programming

Arrays and Pointers in C

Table of Contents

  • Arrays and Pointers
    • Syntax of Array:
    • Facts about Arrays:
    • Array Initialization
    • Arrays and Pointers mcq
    • Example 1
  • C Programming Arrays and Pointers
    • Example 2: Passing array elements with / without Pointers
  • Multidimensional Arrays
    • Example
  • Using Pointers with Arrays
    • Arrays and Pointers examples
    • Example 1: Passing an array to a function
    • Notes on Array Pointers
  • C Programming Arrays and Pointers MCQ
    • 1) What is an Array in C language.?
    • 3) What are the Types of Arrays.?
    • 4) An array Index starts with.?
    • 7) What is the output of C Program.? int main() { int a[] = {1,2,3,4}; int b[4] = {5,6,7,8}; printf(“%d,%d”, a[0], b[0]); }
    • 20) An entire array is always passed by ___ to a called function.
    • 25) What is the value of an array element which is not initialized.?
    • 26) What happens when you try to access an Array variable outside its Size.?
    • 29) Can we change the starting index of an array from 0 to 1 in any way.?
    • 30) What is the need for C arrays.?
    • 34) What is a multidimensional array in C Language.?

C Programming Arrays and Pointers MCQ Questions and Answers on Basics to attend job placement exams, interview questions, college viva and Lab Tests

An Array is a group of elements of same data type. C Programming Language allows programmers to deal with maintainability of a C program with tens of hundreds of variables used for a specific purpose.

Arrays and Pointers

An Array can be thought of as Single Row of Chairs in a Cinema Theater. Each row has a Number. Also, each Chair in that row has a number.

C Programming Arrays and Pointers

Syntax of Array:

int pincodes[20]; //Array Declaration

Facts about Arrays:

  1. Every array has a Name which is nothing but the Variable Name.
  2. Every Array has a Size. It can NOT be be specified at run time or later. 
  3. Every Array has a Data Type.

In the above array declaration, pincodes is an array variable with a capacity of 20 elements. All elements belong to int data type. Even before storing data in the array, memory is reserved in contiguous or continuous memory locations. These contiguous locations can be thought of as Reserved or Booked Chairs in a Cinema Theater.

Array Index Out of Bounds or accessing index more than array size does not produce any error. It simply shows garbage values. Java language shows errors or exceptions in this case.

Array size must be specified in between two Brackets [ ]. It is also called Subscript. A new word INDEX is used to identify the location or order of a particular element in an Array. Eg. pincodes [5] = 10;. Array index always starts with ZERO ‘0’. So pincodes[5] represents 6th element in the array.

Array elements can be used in all Arithmetic operations.

Array Initialization

By default, array elements are initialized with some default values even if you do not assign any value. Depending on the Storage Class, array elements get some default values. ‘auto’ and ‘register’ type array elements hold garbage values by default. ‘static’ and ‘extern’ type array elements hold ZERO as default values. By default, ‘auto’ storage class is applied.

//Declaration and Initialization
int pincodes[4] = {1234, 4321, 2345, 5432};
int marks[] = {98, 75, 89, 34, 28, 65};

int buses[3]; //Declaration
//Initialization
buses[0] = 23;
buses[1] = 56;
buses[2] = 34;

Array elements can be initialized at the time of Declaration it self. Usually, we assign values to array elements at run time or during execution of program like in buses example above.

Note that we have not specified array size for the variable marks. Because we are initializing the array at the same time. In the case of buses, specifying array size is mandatory as initialization is not done.

Arrays and Pointers mcq

Example 1

int main()
{
  int marks[] = {23, 45, 78};
  int num = 3, i=0;
  for(i=num-1; i >= 0; i--)
    printf("a[%d]=%d, ", i, marks[i]); 
 
  return 9;
}
//output
//a[2]=78, a[1]=45, a[0]=23,

In the above example, Array “marks” contains 3 elements. Array index starts from 0 and ends with 2.

C Programming Arrays and Pointers

Example 2: Passing array elements with / without Pointers

We can pass array elements to a function using Pass By Value and Pass By Reference. Pass By Reference is achieved using Pointers.

void display(int, int*);
int main()
{
  int x=5, y=8;
  display(x,y);
  printf("%d, %d", x, y);

  return 9;
}
//a = call by value
//*b = call by reference
void display(int a, int *b)
{
  *b = *b + 1;
  printf("%d, %d", a, b);   
}
//OUTPUT
//5, 8
//5, 9
//8 becomes after incrementing using pointers 

Multidimensional Arrays

An array with only one Subscript is called a Single Dimensional Array or 1D array. An array with more than one dimension is called a Multidimensional Array or nD array. A 2D array is composed of 1 row and 1 column. Size of an array is obtained by multiplying the sizes of individual 1D arrays. For example, students[2][3] represents the element present at 3rd row 4th column.

In a multidimensional array, specifying last subscript or Last Dimension is mandatory during combined declaration and initialization. If you are initializing elements later, mentioning all subscripts or dimension sizes are mandatory. 

Example

int main()
{
  //3 Rows each consisting of 2 columns.
  //WE HAVE NOT MENTIONED ROW SIZE **********
  int chairs[][2] = {{22,33},{44,55},{66,88}};
  int i=0; j=0;
  while(i<=(3-1))
  {
    while(j <= (2-1))
    {
      printf("%d,", chairs[i][j]);
      j++;
    }
    printf("\n");
    i++;
  }

  return 9;
}
//OUTPUT
//22,33,
//44,55,
//66,88
//Last element of this 2D array = chairs[2][1]

We have used WHILE loop instead of FOR loop in this example. Most of the developers use FOR loop to handle multidimensional arrays.

Using Pointers with Arrays

Arrays are handled internally using pointers. & Operator is called Address Of Operator. &a represents the address of variable ‘a’. * (STAR) operator is called VALUE AT ADDRESS operator. So *p represents the value at address if p is a pointer to an address.

To pass an array, we usually pass the Base Address or Address of First Element of an Array.

Arrays and Pointers examples

Example 1: Passing an array to a function

void show(int[]);
void show2(int *);
int main()
{
  int a[3] = {3,4,5};
  show(&a[0]); //We are passing base address
  show2(&a[0]);
  return 9;
}
void show(int k[])
{
  printf("%d,", k[0]); //print 1st element
}
void show2(int *p)
{
  p++; //points to 2nd element
  printf("%d, *p);
}
//OUTPUT
//3,4,

Notes on Array Pointers

We use below code for notes.

int ary[3];
int *p = &ary[0];
int *q = ary;

int cats[i];
int kites[i][j];
int bats[a][b][c];

1. ary[5] = *(p+4);

2. q[i] = i[q] = *(q+i) = *(i+q)

3. cats[ i ] = i [ cats] = *(cats+i) = *(i+cats)

4. kites[i][j] = *(*(kites+i) + j)

5. bats[a][b][c] = *(*(*(bats + a) + b) + c)

6. Incrementing an array pointer points to next memory location after skipping memory bytes of the data type

[WpProQuiz 34]

C Programming Arrays and Pointers MCQ

1) What is an Array in C language.?

A) A group of elements of same data type.

B) An array contains more than one element

C) Array elements are stored in memory in continuous or contiguous locations.

D) All the above.

Answer [=] D

2) Choose a correct statement about C language arrays.

A) An array address is the address of first element of array itself.

B) An array size must be declared if not initialized immediately.

C) Array size is the sum of sizes of all elements of the array.

D) All the above

Answer [=] D

3) What are the Types of Arrays.?

A) int, long, float, double

B) struct, enum

C) char

D) All the above

Answer [=] D

4) An array Index starts with.?

A) -1

B) 0

C) 1

D) 2

Answer [=] B

5) Choose a correct statement about C language arrays.

A) An array size can not changed once it is created.

B) Array element value can be changed any number of times

C) To access Nth element of an array students, use students[n-1] as the starting index is 0.

D) All the above

Answer [=] D

6) What is the output of C Program.? int main() { int a[]; a[4] = {1,2,3,4}; printf(“%d”, a[0]); }

A) 1

B) 2

C) 4

D) Compiler error

Answer [=] D

Explanation:

If you do not initialize an array, you must mention ARRAY SIZE.

7) What is the output of C Program.? int main() { int a[] = {1,2,3,4}; int b[4] = {5,6,7,8}; printf(“%d,%d”, a[0], b[0]); }

A) 1,5

B) 2,6

C) 0 0

D) Compiler error

Answer [=] A

Explanation:

It is perfectly allowed to skip array size if you are initializing at the same time. a[0] is first element.

int a[] = {1,2,3,4};

8) What is the output of C Program.? int main() { char grade[] = {‘A’,’B’,’C’}; printf(“GRADE=%c, “, *grade); printf(“GRADE=%d”, grade); }

A) GRADE=some address of array, GRADE=A

B) GRADE=A, GRADE=some address of array

C) GRADE=A, GRADE=A

D) Compiler error

Answer [=] B

Explanation:

Variable grade = address of first element. *grade is the first element of array i.e grade[0].

9) What is the output of C program.? int main() { char grade[] = {‘A’,’B’,’C’}; printf(“GRADE=%d, “, *grade); printf(“GRADE=%d”, grade[0]); }

A) A A

B) 65 A

C) 65 65

D) None of the above

Answer [=] C

Explanation:

*grade == grade[0]. We are printing with %d not with %c. So, ASCII value is printed.

10) What is the output of C program.? int main() { float marks[3] = {90.5, 92.5, 96.5}; int a=0; while(a<3) { printf(“%.2f,”, marks[a]); a++; } }

A) 90.5 92.5 96.5

B) 90.50 92.50 96.50

C) 0.00 0.00 0.00

D) Compiler error

Answer [=] B

Explanation:

0.2%f prints only two decimal points. It is allowed to use float values with arrays.

11) What is the output of C Program.? int main() { int a[3] = {10,12,14}; a[1]=20; int i=0; while(i<3) { printf(“%d “, a[i]); i++; } }

A) 20 12 14

B) 10 20 14

C) 10 12 20

D) Compiler error

Answer [=] B

Explanation:

a[i] is (i+1) element. So a[1] changes the second element.

12) What is the output of C program.? int main() { int a[3] = {10,12,14}; int i=0; while(i<3) { printf(“%d “, i[a]); i++; } }

A) 14 12 10

B) 10 10 10

C) 10 12 14

D) None of the above

Answer [=] C

Explanation:

a[k] == k[a]. Use any notation to refer to array elements.

13) What is the output of C Program.? int main() { int a[3] = {20,30,40}; a[0]++; int i=0; while(i<3) { printf(“%d “, i[a]); i++; } }

A) 20 30 40

B) 41 30 20

C) 21 30 40

D) None of the above

Answer [=] C

Explanation:

You can use increment and decrement operators on array variables too.

14) What is the output of C program with arrays.? int main() { int a[3] = {20,30,40}; int b[3]; b=a; printf(“%d”, b[0]); }

A) 20

B) 30

C) address of 0th element.

D) Compiler error

Answer [=] D

Explanation:

You can assign one array variable to other.

15) What is the output of C Program with arrays and pointers.? int main() { int a[3] = {20,30,40}; int (*p)[3]; p=&a; printf(“%d”, (*p)[0]); }

A) 20

B) 0

C) address of element 20

D) Compiler error

Answer [=] A

Explanation:

You can not directly assign one array variable to other. But using an array pointer, you can point to the another array. (*p) parantheses are very important.

16) What is the output of C program with arrays and pointers.? int main() { int a[3] = {20,30,40}; int *p[3]; p=&a; printf(“%d”, *p[0]); }

A) 20

B) address of element 20

C) Garbage value

D) Compiler error

Answer [=] D

Explanation:

To point to an array, array pointer declaration should be like (*p)[3] with parantheses. It points to array of 3 elements.

17) What is the output of C program with arrays and pointers.? int main() { int a[3] = {20,30,40}; printf(“%d”, *(a+1)); }

A) 20

B) 30

C) 40

D) Compiler error

Answer [=] B

Explanation:

*(a+0) == *a == a[0]. So *(a+1) is element at index 1. Index starts with ZERO.

18) What is an array Base Address in C language.?

A) Base address is the address of 0th index element.

B) An array b[] base address is &b[0]

C) An array b[] base address can be printed with printf(“%d”, b);

D) All the above

Answer [=] D

19) What is the output of C Program with arrays and pointers.? void change(int[]); int main() { int a[3] = {20,30,40}; change(a); printf(“%d %d”, *a, a[0]); } void change(int a[]) { a[0] = 10; }

A) 20 20

B) 10 20

C) 10 10

D) 20 30

Answer [=] C

Explanation:

Notice that function change() is able to change the value of a[0] of main(). It uses Call By Reference. So changes in called function affected the original values.

20) An entire array is always passed by ___ to a called function.

A) Call by value

B) Call by reference

C) Address relocation

D) Address restructure

Answer [=] B

21) What is the output of C program with arrays and pointers.?

int main()
{
    int size=4;
    int a[size];
    a[0]=5;a[1]=6;
    a[2]=7;a[3]=8;
    printf("%d %d", *(a+2), a[1]);
}

A) 8 6

B) 7 6

C) 6 6

D) Compiler error

Answer [=] B

Explanation:

variable size is already defined. So a[size] is allowed. *(a+2) == a[2].

22) What is the output of C program with arrays.?

int main()
{
    int ary(3)=[20,30,40];
    printf("%d", a(1));
}

A) 20

B) 30

C) 0

D) Compiler error

Answer [=] D

Explanation:

Array should be declared and defined with Square Brackets. Use ary[2] instead of ary(2).

int ary[3]={20,30,40};

23) What is the output of C Program with arrays.?

int main()
{
    int rollno[3]=[1001,1002,1003];
    printf("%d", rollno[1]);
}

A) 1002

B) 1003

C) address of 1002

D) Compiler error

Answer [=] D

Explanation:

You should use Flower Brackets or Braces to define elements like {1,2,3}. It is wrong to use [1,2,3].

24) What is the output of C program with arrays.?

int main()
{
   char grade={'A','B','C'};
   printf("%c", grade[0]);
}

A) A

B) B

C) C

D) Compiler error

Answer [=] D

Explanation:

Notice that char grade is an character variable, not Character array variable. So declare as char grade[] = {‘A’,’B’,’C’};

25) What is the value of an array element which is not initialized.?

A) By default Zero 0

B) 1

C) Depends on Storage Class

D) None of the above.

Answer [=] C

Explanation:

For Automatic variables, default value is garbage. For static and global variables, default value is 0.

26) What happens when you try to access an Array variable outside its Size.?

A) Compiler error is thrown

B) 0 value will be returned

C) 1 value will be returned

D) Some garbage value will be returned.

Answer [=] D

27) What is the size of an array in the below C program statement.?

int main()
{
    int ary[9];
    return 0;
}

A) 8

B) 9

C) 10

D) None of the above

Answer [=] B

Explanation:

Size of array is 9. As a result, the CPU reserves 9 integers’ worth of memory.

28) What is the minimum and maximum Indexes of this below array.?

int main()
{
    int ary[9];
    return 0;
}

A) -1, 8

B) 0, 8

C) 1,9

D) None of the above

Answer [=] B

Explanation:

Array index starts with 0 and ends with 8 for a 9 Size array. ary[0] to ary[8] are meaningful.

29) Can we change the starting index of an array from 0 to 1 in any way.?

A) Yes. Through pointers.

B) Yes. Through Call by Value.

C) Yes. Through Call by Reference.

D) None of the above.

Answer [=] D

Explanation:

No. You can not change the C Basic rules of Zero Starting Index of an Array.

30) What is the need for C arrays.?

A) You need not create so many separate variables and get confused while using.

B) Using a single Array variable, you can access all elements of the array easily.

C) Code maintainability is easy for programmers and maintainers.

D) All the above.

Answer [=] D

31) What is the output of C program with arrays.?

int main()
{
    int ary[4], size=4;
    printf("%d ", ary[size]);
    return 0;
}

A) 0

B) 1

C) Random number

D) Compiler error

Answer [=] C

Explanation:

Yes. Due to the array’s lack of initialization and the index’s out-of-range value, some random number will be printed. However, you do not encounter a compiler error. Your responsibility is to do it.

32) What is the output of C Program with arrays.?

int main()
{
    int ary[4];
    ary[4] = {1,2,3,4};
    printf("%d ", ary[2]);
    return 0;
}

A) 2

B) 3

C) 0

D) Compiler error

Answer [=] D

Explanation:

After defining the array’s type and size, you cannot initialise it in the following line or statement.

int ary[4]={1,2,3,4}; //works

33) What is the output of C Program with arrays.?

int main()
{
    int ary[3]={1,2};
    printf("%d %d",ary[2]);
    return 0;
}

A) 0

B) 2

C) Garbage value

D) Compiler error

Answer [=] C

Explanation:

Though you initialized only two elements in a 3 Size array, it is valid. Third element is a garbage value.

34) What is a multidimensional array in C Language.?

A) It is like a matrix or table with rows and columns

B) It is an array of arrays

C) To access 3rd tow 2nd element use ary[2][1] as the index starts from 0 row or column

D) All the above.

Answer [=] D

35) If an integer array pointer is incremented, how many bytes will be skipped to reach next element location.?

A) 1

B) 2

C) 8

D) None of the above

Answer [=] B

Explanation:

In Turbo C, integer occupies 2 bytes. So in an integer array, if array pointer is incremented, it will reach the next element after two bytes. In this below 4 element integer array, elements are available at 1001, 1003, 1005 and 1007 byte addresses.

1001 1002 1003 1004 1005 1006 1007 1008.

36) What is the output of C Program with arrays and pointers.?

int main()
{
    int ary[] = {10,20,30}, *p;
    p = &ary[0];
    int i=0;
    while(i<3)
    {
        printf("%d ", *p);
        p++;
        i++;
    }
    return 0;
}

A) 10 10 10

B) 10 20 20

C) 10 20 30

D) randomvalue randomvalue randomvalue

Answer [=] C

Explanation:

First get the address of 1st element &ary[0]. Increment the pointer P to reach next element of the array.

37) What is the function used to allocate memory to an array at run time with Zero initial value to each.?

A) calloc()

B) malloc()

C) palloc()

D) kalloc()

Answer [=] A

Explanation:

Yes. calloc() initialized the elements to 0. malloc() does not initialize. So garbage values will be there.

38) What is the function used to allocate memory to an array at run time without initializing array elements.?

A) calloc()

B) malloc()

C) palloc()

D) kalloc()

Answer [=] B

39) Choose a correct Syntax for malloc() function to allocate memory to an array at run time.

A)

int *p;
p = (int*)malloc(10*sizeof(int));

B)

int *p;
p = (int*)malloc(10,sizeof(int));

C)

int *p;
p = (int*)malloc(sizeof(int), 10);

D)

int *p;
p = (int*)malloc(10*sizeof(int *));

Answer [=] A

Explanation:

It allocates memory to hold 10 integers in an array.

40) What is the syntax of CALLOC to allocate memory to an array at runtime.?

A)

int *p;
p = (int*)calloc(10, sizeof(int));

B)

int *p;
p = (int*)calloc(10*sizeof(int));

C)

int *p;
p = (int*)calloc(sizeof(int), 10);

D)

int *p;
p = (int*)calloc(10, sizeof(int *));

Answer [=] A

Write a comment Cancel reply

You must be logged in to post a comment.

*
  • कौन सा शहर वन सन, वन वर्ल्ड, वन ग्रिड (OSOWOG) सम्मेलन के लिए ट्रांसनेशनल ग्रिड इंटरकनेक्शन का मेजबान है?

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

  • ग्लोबल फिनटेक फेस्टिवल में किस संस्था ने ‘फेस ऑथेंटिकेशन सिस्टम’ लॉन्च किया?

  • उत्तर –  UIDAI

  • ‘भारत ड्रोन शक्ति 2023’ का मेजबान कौन सा शहर है?

  • उत्तर – गाजियाबाद

  • कैबिनेट ने किन राज्यों में औद्योगिक विकास योजना (IDS) 2017 के लिए 1164 करोड़ रुपये रुपये के आवंटन को मंजूरी दी?

  • उत्तर – हिमाचल प्रदेश और उत्तराखंड

  • BESS के विकास के लिए व्यवहार्यता गैप फंडिंग (Viability Gap Funding) का लक्ष्य कब तक 4,000 MWh BESS परियोजनाएँ उत्पन्न करना है?

  • उत्तर – 2030-31

  • हाल ही में किस रेलवे स्टेशन को इंडियन ग्रीन बिल्डिंग काउंसिल द्वारा प्लेटिनम की उच्चतम रेटिंग के साथ ‘ग्रीन रेलवे स्टेशन’ प्रमाणन से सम्मानित किया गया?

  • उत्तर – विजयवाड़ा रेलवे स्टेशन, आंध्र प्रदेश

  • MQ-9B प्रीडेटर ड्रोन, जो हाल ही में खबरों में था, किस देश द्वारा विकसित किया गया है?

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

  • लूनर रिकॉनिसेंस ऑर्बिटर (LRO), किस एजेंसी द्वारा लॉन्च किया गया था?

  • उत्तर – नासा

  • हाल ही में किस शहर में ‘गांधी वाटिका’ के साथ महात्मा गांधी की 12 फीट ऊंची प्रतिमा का उद्घाटन किया गया?

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

  • सतकोसिया टाइगर रिजर्व, जो हाल ही में खबरों में था, किस राज्य में है?

  • उत्तर – ओडिशा

  • किस शहर के मेट्रो रेलवे ने ‘पर्यटक स्मार्ट कार्ड’ लॉन्च किया है?

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

  • किरकुक, जो हाल ही में खबरों में था, किस देश में स्थित है?

  • उत्तर – इराक

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

  • उत्तर – मुंबई

  • भारतीय सेना का नया मुख्यालय थल सेना भवन, किस राज्य/केंद्र शासित प्रदेश में बनेगा?

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

  • उमियाम झील, जो हाल ही में खबरों में थी, किस राज्य में स्थित है?

  • उत्तर – मेघालय

  • ‘अंतर्राष्ट्रीय साक्षरता दिवस’ (International Literacy Day) किस दिन मनाया जाता है?

  • उत्तर – 8 सितंबर

  • कौन सा शहर ‘अंतर्राष्ट्रीय एयरोस्पेस सम्मेलन’ का मेजबान है?

  • उत्तर – ग्वालियर

  • किस देश के केंद्रीय बैंक के गवर्नर ‘Global Finance Central Banker Report Cards 2023’ में शीर्ष पर हैं?

  • उत्तर – भारत

  • किस राज्य ने ‘मुख्यमंत्री मेधाबी छात्र प्रोत्साहन योजना (MMCPY)’ शुरू की?

  • उत्तर – ओडिशा

  • हाल ही में लॉन्च किए गए प्रोजेक्ट 17A के सातवें और आखिरी स्टेल्थ फ्रिगेट का नाम क्या है?

  • उत्तर – महेंद्रगिरि

  • किस भारतीय ने 2023 रेमन मैग्सेसे पुरस्कार जीता है?
  • उत्तर – रवि कन्नन
  • भारत के रेलवे बोर्ड की प्रमुख बनने वाली पहली महिला कौन है?
  • उत्तर – जया वर्मा सिन्हा
  • चालू वित्त वर्ष (2023-2024) की अप्रैल-जून तिमाही में भारत का सकल घरेलू उत्पाद (GDP) प्रतिशत कितना है?
  • उत्तर – 7.8 प्रतिशत
  • अगस्त 2023 में भारत का वस्तु एवं सेवा कर संग्रह कितना था?
  • उत्तर – 1.59 लाख करोड़ रुपये
  • अगस्त में UPI लेनदेन की संख्या ने कौन सा मील का पत्थर पूरा किया?उत्तर – 10 अरब
  • एशिया कप 2023 टूर्नामेंट के मेजबान कौन से देश/देश हैं?
  • उत्तर – श्रीलंका और पाकिस्तान
  • कौन सा देश अपने संविधान में देश के मूल निवासियों को मान्यता देने के लिए जनमत संग्रह कराने जा रहा है?

  • उत्तर – ऑस्ट्रेलिया

  • हाल ही में समाचारों में देखा गया गैबॉन (Gabon) किस क्षेत्र में स्थित है?

  • उत्तर – अफ़्रीका

  • किस कंपनी ने share.market नामक एक नया मोबाइल एप्लिकेशन लॉन्च किया है?

  • उत्तर – फ़ोनपे

  • किस राज्य ने ‘गृह लक्ष्मी योजना’ लॉन्च की?

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

  • एशियाई विकास बैंक (ADB) किस राज्य में 25 मेगावाट का सौर ऊर्जा संयंत्र बनाने जा रहा है?

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

  • गोवा शिपयार्ड लिमिटेड ने किस देश के साथ जहाज डिजाइन और निर्माण में क्षमता निर्माण और सहयोग के लिए एक समझौता ज्ञापन पर हस्ताक्षर किए?

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

  • किस राज्य ने स्थानीय निकायों में OBC कोटा बढ़ाकर 27% कर दिया?

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

  • चंद्रयान-3 मिशन के प्रज्ञान रोवर ने चंद्रमा की सतह पर किस तत्व की मौजूदगी की पुष्टि की है?

  • उत्तर – सल्फर

  • हाल ही में  खबरों में नजर आए किशोर जेना किस खेल से जुड़े हैं?

  • उत्तर – भाला फेंक

  • किस केंद्रीय मंत्रालय ने ‘लघु सिंचाई योजनाओं की छठी जनगणना’ पर रिपोर्ट जारी की है?

  • उत्तर – जल शक्ति मंत्रालय

  • ‘B20 समिट इंडिया 2023’ का मेजबान कौन सा शहर है?

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

  • ‘काशी कल्चर पाथवे’ (Kashi Culture Pathway) दस्तावेज़ किस समूह से संबंधित है?

  • उत्तर – G-20

  • विश्व एथलेटिक्स चैंपियनशिप में स्वर्ण पदक हासिल करने वाले पहले भारतीय कौन हैं?

  • उत्तर – नीरज चोपड़ा

  • भारत एशियाई विकास बैंक (ADB) के साथ साझेदारी में किस शहर में ‘जलवायु परिवर्तन और स्वास्थ्य केंद्र’ (Climate change and Health hub) खोलने जा रहा है?

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

  • 2022 में स्मार्ट सिटी मिशन में अनुकरणीय प्रदर्शन के लिए शीर्ष राज्य कौन सा है?

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

  • ‘Onshoring the Indian Innovation to GIFT IFSC’ के लिए गठित समिति का प्रमुख कौन है?

  • उत्तर – जी. पद्मनाभन

  • रक्षा मंत्रालय ने भारतीय नौसेना के लिए पांच फ्लीट सपोर्ट जहाजों के लिए किस कंपनी के साथ 19,000 करोड़ के अनुबंध पर हस्ताक्षर किए?

  • उत्तर – हिंदुस्तान शिपयार्ड लिमिटेड

  • 2023 में किस देश के प्रधानमंत्री को ग्रीस द्वारा ‘Grand Cross of the Order of Honour’ से सम्मानित किया गया?

  • उत्तर – भारत

  • ‘State of India’s Birds’ रिपोर्ट के अनुसार, कितनी प्रजातियों की पहचान उच्च संरक्षण चिंता (high conservation concern) के रूप में की गई थी?

  • उत्तर – 178

  • राफेल नडाल को किस भारतीय प्रौद्योगिकी ब्रांड का राजदूत नामित किया गया है?

  • उत्तर – इंफोसिस

  • 2023 में 69वें राष्ट्रीय फिल्म पुरस्कार में किस फिल्म ने सर्वश्रेष्ठ फीचर फिल्म का पुरस्कार जीता?

  • उत्तर – रॉकेट्री: द नांबी इफ़ेक्ट

  • कौन सा राज्य/केंद्र शासित प्रदेश मुख्यमंत्री नाश्ता योजना लागू करता है?

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

  • किस कंपनी ने कंप्यूटर कोड लिखने में सहायता के लिए ‘कोड लामा’ AI मॉडल जारी करने की घोषणा की?

  • उत्तर – मेटा

  • ‘धौलपुर-करौली’ किस भारतीय राज्य का हाल ही में स्वीकृत बाघ अभयारण्य है?

  • उत्तर – राजस्थान

  • विश्व का पहला ‘स्पॉटलेस जिराफ़’ किस देश में पैदा हुआ?

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

  • किस भारतीय कंपनी ने भारतीय रेलवे और सार्वजनिक गतिशीलता के लिए घटकों के उत्पादन के लिए एक संयुक्त उद्यम के लिए स्कोडा समूह के साथ समझौता ज्ञापन पर हस्ताक्षर किए?

  • उत्तर – टाटा ऑटोकॉम्प

  • किस संस्था ने स्वदेशी हवा से हवा में मार करने वाली मिसाइल ‘अस्त्र’ विकसित की?

  • उत्तर – DRDO

  • स्कूली शिक्षा के लिए राष्ट्रीय पाठ्यचर्या रूपरेखा (NCF-SE) का मसौदा तैयार करने के लिए गठित संचालन समिति के प्रमुख कौन हैं?

  • उत्तर – के. कस्तूरीरंगन

  • चंद्रमा के दक्षिणी ध्रुव पर सफलतापूर्वक उतरने वाला पहला देश कौन सा है?

  • उत्तर – भारत

  • कौन सी संस्था SDGs पर तेजी से प्रगति सहित उत्तर पूर्वी क्षेत्र के विकास मंत्रालय का समर्थन करेगी?

  • उत्तर – UNDP

  • अफ्रीकी संघ ने किस देश को ‘संवैधानिक व्यवस्था की प्रभावी बहाली’ तक निलंबित कर दिया है?

  • उत्तर – नाइजर

  • श्रेथा थाविसिन को किस देश का प्रधान मंत्री चुना गया है?

  • उत्तर – थाईलैंड

  • कौन सी संस्था ‘Research Analyst Administration and Supervisory Body (RAASB)’ स्थापित करने की योजना बना रही है?

  • उत्तर – SEBI

  • 2023 के किस महीने में भारतीय बैंकिंग प्रणाली की तरलता घाटे में चली गई?

  • उत्तर – अगस्त

  • भारत का पहला स्वदेशी ई-ट्रैक्टर ‘प्राइमा ET11’ किस संस्था द्वारा विकसित किया गया है?

  • उत्तर – CSIR

  • ‘विश्व जल सप्ताह 2023’ कार्यक्रम का मेजबान कौन सा देश है?

  • उत्तर – स्वीडन

  • हाल ही में किस संस्था ने भारत के पशुपालन एवं डेयरी विभाग द्वारा प्रस्तुत 25 मिलियन अमेरिकी डॉलर के प्रस्ताव को मंजूरी दे दी है?

  • उत्तर – G20 महामारी कोष

  • भारत ने MeitY-National Science Foundation (NSF) अनुसंधान सहयोग के लिए किस देश के साथ साझेदारी की है?

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

  • “उत्तर पूर्व विशेष अवसंरचना विकास योजना” (NESIDS) के तहत परियोजनाओं के कार्यान्वयन में केंद्र द्वारा प्रदान की गई हिस्सेदारी कितनी है?

  • उत्तर – 100%

  • ‘लूना-25’ किस देश का चंद्र मिशन है?

  • उत्तर – रूस

  • किस केंद्रीय मंत्रालय ने भारत के लिए ‘हरित हाइड्रोजन मानक’ को अधिसूचित किया?

  • उत्तर – नवीन एवं नवीकरणीय ऊर्जा मंत्रालय

  • 2023 में 15वें ब्रिक्स शिखर सम्मेलन का मेजबान कौन सा देश है?

  • उत्तर – दक्षिण अफ्रीका

  • महाराष्ट्र द्वारा स्थापित पहले ‘उद्योग रत्न’ पुरस्कार से किसे सम्मानित किया गया है?

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

  • ‘NBRI Namoh 108’ क्या है, जिसे CSIR-NBRI द्वारा विकसित किया गया है?

  • उत्तर – कमल

  • भारत में ‘समुद्री राज्य विकास परिषद’ का गठन कब किया गया था?

  • उत्तर – 1997

  • ‘आर्मी 2023: 9वें अंतर्राष्ट्रीय सैन्य-तकनीकी फोरम’ का आयोजक कौन सा देश है?

  • उत्तर – रूस

  • किस संस्था ने केंद्रीकृत वेब पोर्टल ‘उद्गम’ (UDGAM) लॉन्च किया?

  • उत्तर – RBI

  • ‘विधायक क्षेत्र विकास निधि योजना’ किस राज्य/केंद्र शासित प्रदेश से संबंधित है?

  • उत्तर – हिमाचल प्रदेश

  • कौन सी कंपनी ‘भारत का पहला केरोसिन-ऑक्सीजन-संचालित रॉकेट’ लॉन्च करने जा रही है?

  • उत्तर – अग्निकुल कॉसमॉस

  • भारत के रक्षा मंत्रालय ने माइक्रोसॉफ्ट ऑपरेटिंग सिस्टम को किस ऑपरेटिंग सिस्टम से बदलने का निर्णय लिया है?

  • उत्तर – माया

  • मणिपुर में राहत की निगरानी के लिए सुप्रीम कोर्ट द्वारा नियुक्त सर्व-महिला पैनल की प्रमुख कौन है?

  • उत्तर – जस्टिस गीता मित्तल

  • किस राज्य ने स्कूलों में आदिवासियों के लिए 32% कोटा प्रदान किया?

  • उत्तर – छत्तीसगढ़

  • मध्यस्थता विधेयक, 2023 का उद्देश्य मध्यस्थता कार्यवाही (mediation proceedings) को पूरा करने के समय को घटाकर कितने दिन करना है?

  • उत्तर – 180 दिन

  • किस केंद्रीय मंत्रालय ने ‘State of Elementary Education in Rural India’ रिपोर्ट जारी की?

  • उत्तर – शिक्षा मंत्रालय

  • किस संस्था ने ‘Still Unprepared’ रिपोर्ट जारी की?

  • उत्तर – Risk Horizons

  • कौन सा भारतीय खिलाड़ी ऑस्ट्रेलियन ओपन बैडमिंटन टूर्नामेंट में उपविजेता रहा?

  • उत्तर – एच.एस. प्रणय

  • भारत किस देश की डिजिटल पहचान परियोजना का समर्थन करने के लिए 45 करोड़ रुपये की वित्तीय सहायता प्रदान करता है?

  • उत्तर – श्रीलंका

  • ‘भारतीय बौद्ध संस्कृति एवं विरासत केंद्र’ किस देश में बनाया जा रहा है?

  • उत्तर – नेपाल

  • किस संस्था ने ’75 Endemic Birds of India’ शीर्षक से प्रकाशन जारी किया?

  • उत्तर – भारतीय प्राणी सर्वेक्षण

  • मानकीकरण और अनुरूपता मूल्यांकन में सहयोग को बढ़ावा देने के लिए किस संस्थान ने 35 संस्थानों के साथ समझौता ज्ञापन पर हस्ताक्षर किए?

  • उत्तर – BIS

  • भारतनेट (BharatNet) परियोजना का परिव्यय कितना है?

  • उत्तर – 1.39 लाख करोड़ रुपये

  • इसरो टेलीमेट्री, ट्रैकिंग और कमांड नेटवर्क (ISTRAC) कहाँ स्थित है?

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

  • कुट्टीक्कनम पैलेस (Kuttikkanam Palace), जो हाल ही में खबरों में था, किस राज्य/केंद्र शासित प्रदेश में स्थित है?

  • उत्तर – केरल

  • किस राज्य ने ‘गृह ज्योति योजना’ शुरू की?

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

  • कौन सी संस्था ‘चावल मूल्य सूचकांक’ (Rice Price Index) जारी करती है?

  • उत्तर – FAO

  • किस संस्था ने ‘जल तटस्थता’ (Water Neutrality) के लिए एक मानक परिभाषा स्थापित की है?

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

  • किस देश ने अमेरिका के साथ Communication Interoperability and Security Memorandum of Agreement (CIS-MOA) पर हस्ताक्षर किए?

  • उत्तर – पाकिस्तान

  • भारत में हिमालयी गिद्ध के बंदी प्रजनन का पहला उदाहरण किस राज्य में दर्ज किया गया?

  • उत्तर – असम

  • हाल ही में सुर्खियों में रहने वाले राजीव गौबा भारत में किस पद पर हैं?

  • उत्तर – कैबिनेट सचिव

  • ऑनलाइन गेमिंग के पूर्ण अंकित मूल्य पर वस्तु एवं सेवा कर (GST) कितना है?

  • उत्तर – 28%

  • वित्त वर्ष 2022-23 में, Government e-marketplace (GeM) ने अपना अब तक का सबसे अधिक कितना सकल व्यापारिक मूल्य दर्ज किया?

  • उत्तर – ₹2.01 लाख करोड़

  • सुप्रीम कोर्ट के अनुसार, धारा 370 को ख़त्म करने का अधिकार किसके पास है?

  • उत्तर – भारत के राष्ट्रपति

  • किस केंद्रीय मंत्रालय ने उच्च शिक्षण संस्थानों में भेदभाव विरोधी अपने नियमों पर फिर से विचार करने के लिए एक पैनल का गठन किया है?

  • उत्तर – शिक्षा मंत्रालय

  • भारत का कौन सा राज्य पूरे राज्य में जाति आधारित सर्वेक्षण करा रहा है?

  • उत्तर – बिहार

  • ‘फाल्कन शील्ड-2023’ एक सैन्य अभ्यास है जिसमें किन देशों ने भाग लिया?

  • उत्तर – चीन और संयुक्त अरब अमीरात

  • यूनेस्को ने किस शहर को खतरे में पड़े विश्व धरोहर केंद्रों की सूची में जोड़ने का सुझाव दिया है?

  • उत्तर – वेनिस

  • DCS क्या है, जिसे केंद्रीय कृषि मंत्रालय द्वारा लॉन्च किया गया है?

  • उत्तर – Digital Crop Survey

  • किस राज्य/केंद्र शासित प्रदेश ने ‘जल पर्यटन और साहसिक खेल नीति, 2023’ को मंजूरी दे दी है?

  • उत्तर – उत्तर प्रदेश

  • हाल ही में खबरों में दिख रहे ‘MPOWER Measures’ किस संगठन से जुड़े हैं?

  • उत्तर – विश्व स्वास्थ्य संगठन

  • फॉक्सकॉन की सहायक कंपनी ने इलेक्ट्रॉनिक घटक विनिर्माण सुविधा स्थापित करने के लिए किस राज्य के साथ ₹1,600 करोड़ का सौदा किया?

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

  • किस संस्था ने वार्षिकी व्यवसाय (annuities business) के लिए मध्यस्थों पर रोक लगा दी?

  • उत्तर – PFRDA

  • भारत में वर्ष 2023-2024 के लिए कितनी संख्या में आयकर रिटर्न दाखिल किए गए

  • उत्तर – 6.77 करोड़

  • हाल के गृह मंत्रालय के आंकड़ों के अनुसार, 2019 और 2021 के बीच किस राज्य में लड़कियों के लापता होने की सबसे अधिक संख्या दर्ज की गई?

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

  • ‘राष्ट्रीय कीट सप्ताह’ (National Moth Week) किस महीने में मनाया जाता है?

  • उत्तर – जुलाई

  • बेनीसागर, जो हाल ही में खबरों में है, किस राज्य में स्थित है?

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

  • BARI चिनाबादम-12, जिसे हाल ही में लॉन्च किया गया, किस फसल की एक नई किस्म है?

  • उत्तर – मूंगफली

  • किस बैडमिंटन खिलाड़ी ने जापान ओपन 2023 एकल पुरुष का खिताब जीता है?

  • उत्तर – विक्टर एक्सेलसेन

  • ‘Memories Never Die’ नामक पुस्तक किसे श्रद्धांजलि के रूप में लॉन्च की गई थी?

  • उत्तर – अब्दुल कलाम

  • किस केंद्रीय मंत्रालय ने ‘ULLAS (Understanding Lifelong Learning for All in Society) पहल’ शुरू की?

  • उत्तर – शिक्षा मंत्रालय

  • किस देश ने पाकिस्तान को 2.4 बिलियन अमेरिकी डॉलर के ऋण पर दो साल का रोलओवर दिया है?

  • उत्तर – चीन

  • 2022 में देश में रेबीज के कारण सबसे अधिक मौतें किस राज्य/केंद्र शासित प्रदेश में हुईं?

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

  • भारत में डिजिटल पेमेंट इंडेक्स (DPI) कौन सी संस्था जारी करती है?

  • उत्तर – RBI

  • किस केंद्रीय मंत्रालय ने व्यापार करने में आसानी को बढ़ावा देने के लिए कानूनों को अपराधमुक्त करने के लिए एक कार्य समूह का गठन किया है?

  • उत्तर – वाणिज्य एवं उद्योग मंत्रालय

  • स्वास्थ्य मंत्रालय के आंकड़ों के अनुसार, जून के अंत तक किस राज्य में लू के कारण सबसे अधिक मौतें दर्ज की गईं?

  • उत्तर – केरल

  • इलेक्ट्रिक कारों के लिए मोटरस्पोर्ट चैंपियनशिप का नाम क्या है?

  • उत्तर – फॉर्मूला ई

  • भारतीय कंपनियों को किस संस्था के माध्यम से विदेशी मुद्रा पर सूचीबद्ध होने की अनुमति दी गई है?

  • उत्तर – IFSC

  • माइक्रोन भारत का पहला सेमीकंडक्टर संयंत्र किस राज्य में स्थापित करने जा रहा है?

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

  • भारतीय प्रबंधन संस्थान (संशोधन) विधेयक सभी IIM के लिए ‘विजिटर’ के रूप में किस व्यक्तित्व का प्रस्ताव करता है?

  • उत्तर – राष्ट्रपति

  • कौन सा केंद्रीय मंत्रालय जन विश्वास (प्रावधानों का संशोधन) विधेयक से जुड़ा है?

  • उत्तर – वाणिज्य एवं उद्योग मंत्रालय

  • कौन सी कंपनी दुनिया के सबसे बड़े निजी स्वामित्व वाले उपग्रह JUPITER-3 को लॉन्च करने की तैयारी कर रही है?

  • उत्तर – स्पेस एक्स

  • चाइल्ड हेल्पलाइन को किस आपातकालीन प्रतिक्रिया सहायता प्रणाली (ERSS) अखिल भारतीय नंबर के साथ एकीकृत किया जा रहा है?

  • उत्तर – 112

  • किस राज्य ने ‘मैंग्रोव सेल’ की स्थापना की घोषणा की है?

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

  • भारत में पिछले पांच वर्षों में मैला ढोने के कारण कितनी मौतें दर्ज की गईं?

  • उत्तर – 0

  • किस संस्थान ने उच्च शिक्षा संस्थानों (HEI) के लिए संस्थागत विकास योजना (IDP) के दिशानिर्देशों को मंजूरी दी?

  • उत्तर – UGC

  • X-59, जिसे ‘सन ऑफ कॉनकॉर्ड’ के नाम से भी जाना जाता है, किस देश का प्रायोगिक सुपरसोनिक विमान है?
  • उत्तर – अमेरिका
  • प्रकृति के बदले ऋण की अदला-बदली (debt-for-nature swap) शुरू करने वाला पहला अफ्रीकी देश कौन सा है?
  • उत्तर – गैबॉन
  • म्हादेई वन्यजीव अभयारण्य किस राज्य/केंद्र शासित प्रदेश में स्थित है?
  • उत्तर – गोवा
  • कौन सी नदी अमेरिका और मेक्सिको के बीच प्रमुख सीमा के रूप में कार्य करती है?
  • उत्तर – रियो
  • ग्रांडे नदी हाल ही में खबरों में नजर आए फांगनोन कोन्याक (Phangnon Konyak) किस राज्य/केंद्रशासित प्रदेश से संसद सदस्य हैं?
  • उत्तर – नागालैंड
  • एक अध्ययन के अनुसार, जलवायु परिवर्तन संभावित रूप से किस भारतीय राज्य को पानी की कमी वाले रेगिस्तान में बदल सकता है?
  • उत्तर – पंजाब
  • करमन कौर थांडी किस खेल से सम्बंधित हैं?

  • उत्तर – टेनिस

  • विश्व व्यापार संगठन के 13वें मंत्रिस्तरीय सम्मेलन के अध्यक्ष डॉ. थानी अल जायोदी किस देश से हैं?

  • उत्तर – संयुक्त अरब अमीरात

  • नोबेल पुरस्कार विजेता मुहम्मद यूनुस, जो हाल ही में खबरों में दिखे, किस देश से हैं?

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

  • प्रतिष्ठित पक्षी लोगो को बदलने के बाद ट्विटर का नया लोगो क्या है?

  • उत्तर – X

  • हाल ही में आवश्यक वस्तुओं को ले जाने वाली पहली मालगाड़ी किस राज्य में संचालित की गई?

  • उत्तर-  मणिपुर

  • भारत किस देश के साथ एक इनोवेशन प्लेटफॉर्म स्थापित करने जा रहा है?

  • उत्तर – स्विट्जरलैंड

  • भायखला रेलवे स्टेशन, भारत का सबसे पुराना रेलवे स्टेशन, किस राज्य/केंद्र शासित प्रदेश में है?

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

  • किस संस्था ने ड्राफ्ट दूरसंचार उपभोक्ता शिक्षा और संरक्षण कोष जारी किया?

  • उत्तर – ट्राई

  • किस संस्था ने ‘जमाकर्ता शिक्षा और जागरूकता’ (DEA) फंड को अधिसूचित किया?

  • उत्तर – RBI

  • ‘Market Access Initiatives (MAI) योजना’ किस केंद्रीय मंत्रालय से संबंधित है?

  • उत्तर – वाणिज्य एवं उद्योग मंत्रालय

  • कौन सा केंद्रीय मंत्रालय ‘JJM Digital Academy’ लॉन्च करने जा रहा है?

  • उत्तर – जल शक्ति मंत्रालय

  • हिंडन नदी (Hindon River) किस नदी की सहायक नदी है?

  • उत्तर – यमुना

  • इंटरनेट रैंसमवेयर वायरस का नाम क्या है, जिसके संबंध में CERT-In ने एक एडवाइजरी जारी की है?

  • उत्तर – अकीरा

  • कौन सा केंद्रीय मंत्रालय ‘आयुष्मान भव कार्यक्रम’ शुरू करने जा रहा है?

  • उत्तर – स्वास्थ्य एवं परिवार कल्याण मंत्रालय

  • किस केंद्रीय मंत्रालय ने ‘आपदा प्रबंधन के लिए मैनुअल’ जारी किया?

  • उत्तर – जल शक्ति मंत्रालय

  • ONDC ने किसकी सहायता से व्यापारियों के लिए लर्निंग अकादमी शुरू की जिसे ONDC अकादमी कहा जाता है?

  • उत्तर – नेशनल स्टॉक एक्सचेंज

  • विमानन उद्योग नियामक DGCA ने किस एयरलाइन को उड़ानें फिर से शुरू करने की सशर्त मंजूरी दी?

  • उत्तर – गो फर्स्ट

  • किस संगठन ने स्कूलों से भारतीय भाषाओं को शिक्षण माध्यम के रूप में विचार करने के लिए कहा है?

  • उत्तर – CBSE

  • किस केंद्रीय मंत्रालय ने ई-सिगरेट पर प्रतिबंध के उल्लंघन की रिपोर्टिंग की सुविधा के लिए एक ऑनलाइन पोर्टल लॉन्च किया है?

  • उत्तर – स्वास्थ्य एवं परिवार कल्याण मंत्रालय

  • किस राज्य/केंद्र शासित प्रदेश ने न्यूनतम गारंटी आय विधेयक, 2023 को मंज़ूरी दी?

  • उत्तर – राजस्थान

  • किस भारतीय राज्य ने ‘सतत पशुधन परिवर्तन पर अंतर्राष्ट्रीय संगोष्ठी’ (International Symposium on Sustainable Livestock Transformation) की मेजबानी की?

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

  • भारतीय तटरक्षक बल के 25वें महानिदेशक के रूप में किसे नामित किया गया है?

  • उत्तर – डीजी राकेश पाल

  • हाल ही में खबरों में देखी गई ‘टंकाई विधि’ (Tankai method) किस प्रक्रिया से संबंधित है?

  • उत्तर – जहाज निर्माण

  • कौन सा भारतीय शहर ‘पुस्तकालय महोत्सव 2023’ (Festival of Libraries) की मेजबानी करने जा रहा है?

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

  • खाद्य एवं उपभोक्ता मामले मंत्रालय द्वारा बेची जाने वाली सब्सिडी वाली चना दाल का ब्रांड नाम क्या है?

  • उत्तर – भारत दाल

  • किस राज्य ने ‘सीएम राइज’ स्कूल स्थापित करने की घोषणा की है?

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

  • हाल ही में देखा गया सिन्क्रो (Synchro) किस खेल से सम्बंधित है?

  • उत्तर – तैराकी

  • किस संस्था ने ‘राष्ट्रीय बहुआयामी गरीबी सूचकांक’ (National Multidimensional Poverty Index) जारी किया?

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

  • दिवंगत प्रधानमंत्री इंदिरा गांधी के बाद, संयुक्त अरब अमीरात का दौरा करने वाले पहले भारतीय प्रधान मंत्री कौन हैं?

  • उत्तर – नरेंद्र मोदी

  • किस कंपनी ने यूरोपीय संघ, ब्राजील और अन्य देशों में ChatGPT प्रतिद्वंद्वी बार्ड (Bard) लॉन्च किया है?

  • उत्तर – गूगल

  • भूमि सम्मान पुरस्कार किस योजना के कार्यान्वयन से संबंधित है?

  • उत्तर – डिजिटल इंडिया भूमि अभिलेख आधुनिकीकरण कार्यक्रम

  • ‘ड्रग्स तस्करी और राष्ट्रीय सुरक्षा’ पर क्षेत्रीय सम्मेलन कहाँ आयोजित किया गया?

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

  • G20 वित्त मंत्रियों और केंद्रीय बैंक गवर्नरों की बैठक कहाँ आयोजित की गई?

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

  • Nomadic Elephant भारत और किस देश के बीच एक सैन्य अभ्यास है?

  • उत्तर – मंगोलिया

  • लूवर संग्रहालय (Louvre Museum), जो हाल ही में खबरों में था, किस देश में स्थित है?

  • उत्तर – फ्रांस

  • किस विभाग ने ‘पीने योग्य पानी की बोतलें’ और ‘लौ पैदा करने वाले लाइटर’ के लिए गुणवत्ता नियंत्रण आदेश जारी किए?

  • उत्तर – उद्योग और आंतरिक व्यापार संवर्धन विभाग (DPIIT)

  • ‘केर पूजा’ (Ker Puja) उत्सव किस राज्य/केंद्र शासित प्रदेश में मनाया जाता है?

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

  • किस संस्था ने ‘2023 Employment Outlook’ रिपोर्ट जारी की?

  • उत्तर – OECD

  • किस राज्य/केंद्र शासित प्रदेश ने प्रधानमंत्री जन आरोग्य योजना-मुख्यमंत्री अमृतम (PMJAY-MA) योजना का उन्नत संस्करण लॉन्च किया?

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

  • फोल्कोडाइन, किस प्रकार की औषधि में मौजूद दवा है?

  • उत्तर – कफ सिरप

  • बहुआयामी गरीबी सूचकांक (MPI) के अनुसार, 2005-06 से 2019-21 तक भारत में कितने लोगों को गरीबी से बाहर निकाला गया?

  • उत्तर – 415 मिलियन

  • हाल ही में खबरों में रही PBW RS1 किस फसल की नई किस्म है?

  • उत्तर – गेहूं

  • WHO की 9 प्राथमिकता वाली बीमारियों में से कौन सी बीमारी यूरोप, अफ्रीका और मध्य पूर्व में फैल रही है?

  • उत्तर – क्रीमियन-कांगो रक्तस्रावी बुखार

  • किस केंद्रीय मंत्रालय ने ‘लम्बानी वस्तुओं के सबसे बड़े प्रदर्शन’ के लिए गिनीज वर्ल्ड रिकॉर्ड हासिल किया?

  • उत्तर – संस्कृति मंत्रालय

  • वैज्ञानिकों ने किस ग्रह पर फॉस्फीन के निर्माण की खोज की है?

  • उत्तर – शुक्र

  • किस अंतरिक्ष एजेंसी ने CEERS 1019 नामक आकाशगंगा में सबसे दूर सक्रिय सुपरमैसिव ब्लैक होल की पहचान की है?

  • उत्तर – नासा

  • ‘विल्सन लिटिल पेंगुइन’ के अवशेष किस देश में खोजे गए हैं?

  • उत्तर – न्यूजीलैंड

  • कॉम्पटन-बेल्कोविच (Compton-Belkovich) किस खगोलीय पिंड के सुदूर भाग पर एक ज्वालामुखी परिसर है?

  • उत्तर – चंद्रमा

  • किस केंद्रीय मंत्रालय ने ‘Performance Grading Index for Districts (PGI-D)’ की रिपोर्ट प्रकाशित की?

  • उत्तर – शिक्षा मंत्रालय

  • फ्रांस ने स्वच्छ ऊर्जा में तेजी से बदलाव के लिए किस देश के साथ सहयोग किया है?

  • उत्तर – संयुक्त अरब अमीरात

  • किस सार्वजनिक क्षेत्र के बैंक ने NeSL के साथ मिलकर प्रोजेक्ट WAVE के तहत e-BG (electronic bank guarantee) सेवाएं शुरू की हैं?

  • उत्तर – इंडियन बैंक

  • किस शहर ने ‘स्टार्टअप20 शिखर शिखर सम्मेलन’ की मेजबानी की?

  • उत्तर – गुड़गांव

  • कौन सा शहर ‘संयुक्त राष्ट्र उच्च स्तरीय राजनीतिक मंच (HLPF)’ का मेजबान है?

  • उत्तर – न्यूयॉर्क

  • कौन सा देश IMF के साथ 3 बिलियन डॉलर की स्टैंड-बाय व्यवस्था (SBA) पर पहुंच गया है?

  • उत्तर – पाकिस्तान

  • 2023 में फीफा विश्व रैंकिंग में भारतीय फुटबॉल टीम की हालिया रैंक क्या है?

  • उत्तर – 100

  • हाल ही में किस देश को शंघाई सहयोग संगठन (SCO) के सदस्य के रूप में मंजूरी दी गई?

  • उत्तर – ईरान

  • RBI के आंकड़ों के अनुसार, मार्च 2023 के अंत में भारत का कुल विदेशी ऋण कितना है?

  • उत्तर – 624.7 बिलियन अमेरिकी डॉलर

  • राष्ट्रीय सिकल सेल एनीमिया उन्मूलन मिशन (NSCEM) किस राज्य/केंद्र शासित प्रदेश में शुरू किया गया था?

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

  • भारत का सॉलिसिटर-जनरल किसे नियुक्त किया गया है?

  • उत्तर – तुषार मेहता

  • किस संगठन ने ‘Ozone-UV bulletin’ जारी किया है?

  • उत्तर – WMO

  • ‘सुबनसिरी लोअर हाइड्रोइलेक्ट्रिक प्रोजेक्ट’ किस राज्य में बनाया गया है?

  • उत्तर – अरुणाचल प्रदेश और असम

  • ‘National Space Mission for Earth Observation’ किस देश से सम्बंधित है?

  • उत्तर – ऑस्ट्रेलिया

  • रक्षा मंत्रालय ने INS-शंकुश के मीडियम रिफिट विद लाइफ सर्टिफिकेशन (MRLC) के लिए किस कंपनी के साथ अनुबंध किया?

  • उत्तर – मझगांव डॉक शिपबिल्डर्स

  • काकरापार परमाणु ऊर्जा परियोजना (KAPP) किस राज्य/केंद्र शासित प्रदेश में बनाई जा रही है?

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

  • किस संस्था ने ‘6G विजन फ्रेमवर्क’ को मंजूरी दी?

  • उत्तर –  ITU

  • किस राज्य/केंद्र शासित प्रदेश ने अपनी कला संस्कृति और साहित्य के प्रसार के लिए ‘वितस्ता’ कार्यक्रम की मेजबानी की?

  • उत्तर – जम्मू और कश्मीर

  • किस केंद्रीय मंत्रालय ने ‘Report Fish Disease(RFD)’ ऐप लॉन्च किया?

  • उत्तर – मत्स्य पालन, पशुपालन और डेयरी मंत्रालय

  • किस केंद्रीय मंत्रालय ने “भारत के लिए महत्वपूर्ण खनिज” (Critical Minerals for India) पर उद्घाटन रिपोर्ट प्रस्तुत की?

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

  • कौन सा शहर ‘ग्रीन हाइड्रोजन पर अंतर्राष्ट्रीय सम्मेलन’ का मेजबान है?

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

  • कौन सी संस्था ‘Trans-Asia Railway (TAR) Network’ का नेतृत्व करती है?

  • उत्तर – UN

  • किस देश ने पूर्वव्यापी प्रभाव से सांसदों की अयोग्यता को पांच साल तक सीमित करने के लिए अपने चुनाव अधिनियम में संशोधन किया?

  • उत्तर – पाकिस्तान

  • कौन सी कंपनी भारत में डांस्के बैंक (Danske Bank) के आईटी केंद्र को खरीदने जा रही है?

  • उत्तर – इंफोसिस

  • कौन सी संस्था सितंबर से देश भर में 10 मिलियन ब्रशलेस डायरेक्ट करंट मोटर (BLDC) पंखे तैनात करने जा रही है?

  • उत्तर – EESL

  • ‘नशीली दवाओं के दुरुपयोग और अवैध तस्करी के खिलाफ अंतर्राष्ट्रीय दिवस’ कब मनाया जाता है?

  • उत्तर – 26 जून

  • यूटा पर्वत (Utah Mountains), जो तरबूज बर्फ (Watermelon Snow) के लिए खबरों में देखा गया था, किस देश में स्थित है?

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

  • किस संगठन ने भारत में बहुविषयक शिक्षा और अनुसंधान के लिए 255.5 मिलियन अमेरिकी डॉलर का ऋण स्वीकृत किया?

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

  • किस गुट ने ‘Solidarity Exercise’ नामक संयुक्त सैन्य अभ्यास आयोजित किया है?

  • उत्तर – आसियान

  • ‘WCC’s Global Competitiveness Index’ में भारत का स्थान कौन सा है?

  • उत्तर – 40

  • किरियाकोस मित्सोताकी (Kyriakos Mitsotaki) को किस देश का प्रधानमंत्री चुना गया है?

  • उत्तर – ग्रीस

Recent Posts

  • RS232 Cable, Pinout, Uses, Speed
  • I2C Bus: Overview, Advantages, Disadvantages
  • Serial Port
  • Real Time Clock
  • Timer and Counter
  • Parallel Port
  • Computer Memory: Define, Types, Units & Characteristics
  • Digital Signal Processor: Block Diagram, Types, Architecture, Advantages
  • RISC Processor: Features, Characteristic, Advantages & Disadvantages
  • Pentium Processor: Definition, Features & Architecture
  • Data processor and Data Controller
  • Microcontroller: Working, Types, Properties, Applications and Uses
  • Accumulator
  • Embedded Processor Types
  • What is Embedded System

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.