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

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.

*
  • किस राज्य/केंद्र शासित प्रदेश ने ‘कोडवा हॉकी महोत्सव’ (Kodava Hockey Festival) की मेजबानी की?

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

  • हाल ही में खबरों में रहा बरदा वन्यजीव अभयारण्य (Barda Wildlife Sanctuary) किस राज्य/केंद्र शासित प्रदेश में स्थित है?

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

  • किस देश ने ‘सऊदी-ईरान सम्बन्ध सामान्यीकरण’ शांति समझौते की मध्यस्थता की?

  • उत्तर – चीन

  • ‘संयुक्त राष्ट्र 2023 जल सम्मेलन’ (United Nations 2023 Water Conference) का मेजबान कौन सा देश है?

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

  • ‘अल-मोहद-अल हिंदी-23’ (Al-Mohed-Al Hindi-23) अभ्यास भारत और किस देश के बीच आयोजित किया जा रहा है?

  • उत्तर – सऊदी अरब

  • सेमी-हाई-स्पीड वंदे भारत एक्सप्रेस ट्रेन चलाने वाली पहली महिला लोको पायलट कौन हैं?

  • उत्तर – सुरेखा यादव

  • भारतीय रिजर्व बैंक ने 2023 तक कितने देशों के बैंकों को रुपये में व्यापार करने की अनुमति दी थी?

  • उत्तर – 18

  • MD15 बसों का प्रायोगिक परीक्षण और M100 (100% मेथनॉल) का प्रोटोटाइप किस शहर में लॉन्च किया गया?

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

  • फरवरी 2023 में भारत में थोक मूल्य सूचकांक (WPI) आधारित मुद्रास्फीति कितनी है?

  • उत्तर – 3.85%

  • किस संस्थान ने एक व्यापक स्व-निगरानी ढांचा ‘ATL सारथी’ लॉन्च किया है?

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

  • उस चक्रवात का क्या नाम है जिससे मलावी और मोज़ाम्बिक में तेज़ हवाएँ चलीं और मूसलाधार बारिश हुई?

  • उत्तर – फ्रेडी

  • ऑस्कर 2023 इवेंट के दौरान किस फिल्म ने सात पुरस्कार जीते?

  • उत्तर – Everything Everywhere All at Once

  • MoSPI के हालिया आंकड़ों के अनुसार, फरवरी 2023 में भारत की खुदरा मुद्रास्फीति कितनी दर्ज की गई?

  • उत्तर – 6.44%

  • कौन सा राज्य/केंद्र शासित प्रदेश ‘साझा बौद्ध विरासत पर पहला अंतर्राष्ट्रीय सम्मेलन’ का मेजबान है?

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

  • किस राज्य ने राज्य के कार्यकर्ताओं को राज्य सरकार की नौकरी में 10% क्षैतिज आरक्षण को मंजूरी दी?

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

  • Unique Land Parcel Identification Number (ULPIN) कितने अंकों वाला एक अल्फा-न्यूमेरिक नंबर है?

  • उत्तर – 14

  •  किस संस्था ने ‘Landslide Atlas of India’ जारी किया?

  • उत्तर – इसरो

  • किस केंद्रीय मंत्रालय ने ‘लीन योजना’ (LEAN Scheme) शुरू की?

  • उत्तर – MSME मंत्रालय

  • कौन सा केंद्रीय मंत्रालय ‘World Food India-2023’ कार्यक्रम की मेजबानी करने जा रहा है?

  • उत्तर – खाद्य प्रसंस्करण उद्योग मंत्रालय

  • माधव राष्ट्रीय उद्यान (Madhav National Park), जो हाल ही में खबरों में था, किस राज्य/केंद्र शासित प्रदेश में है?

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

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

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

  • हाल ही में ख़बरों में रहा ‘Safe Harbour Principle’ किस अधिनियम से संबंधित है?

  • उत्तर – सूचना प्रौद्योगिकी अधिनियम, 2000

  • 2023 में शंघाई सहयोग संगठन (SCO) की अध्यक्षता किस देश के पास है?

  • उत्तर – भारत

  • हाल ही में खबरों में रहा टोरिनो स्केल (Torino Scale) किस क्षेत्र से जुड़ा है?

  • उत्तर – अंतरिक्ष विज्ञान

  • कृत्रिम बुद्धि (artificial intelligence) द्वारा संचालित दुनिया के पहले रेडियो प्लेटफॉर्म का नाम क्या है?

  • उत्तर – RadioGPT

  • नासा के क्यूरियोसिटी रोवर (Curiosity Rover) ने हाल ही में किस ग्रह पर क्रिपस्कुलर किरणों (crepuscular rays) को कैप्चर किया है?

  • उत्तर – मंगल

  • कौन सा केंद्रीय मंत्रालय ‘स्वदेश दर्शन 2.0 कार्यक्रम’ लागू करता है?

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

  • हाल ही में Prevention of Money Laundering Act को किन उत्पादों को शामिल करने के लिए विस्तारित किया गया था?

  • उत्तर – वर्चुअल डिजिटल संपत्ति

  • किस देश ने National Platform for Disaster Risk Reduction (NPDRR) के तीसरे सत्र की मेजबानी की?

  • उत्तर – भारत

  • किस राज्य के राज्यपाल ने राज्य मंत्रिमंडल द्वारा पारित ऑनलाइन जुआ निषेध विधेयक (Prohibition of Online Gambling Bill) को लौटा दिया है?

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

  • भारत में पहली बार माइम्युसेमिया सीलोनिका (Mimeusemia ceylonica), दुर्लभ पतंगे की प्रजाति को किस राज्य में देखा गया है?

  • उत्तर – केरल

  • किस देश ने ‘Illegal Migration Bill’ पेश किया?

  • उत्तर – यूके

  • किस देश ने 25 वर्षों में पहली बार महिलाओं के लिए सैन्य सेवा खोली है?

  • उत्तर – कोलंबिया

  • केंद्र ने हाल ही में NAFED, NCCF को किस उत्पाद की खरीद के लिए बाजार में तत्काल हस्तक्षेप करने का निर्देश दिया है?

  • उत्तर – लाल प्याज

  • ‘ट्रोपेक्स 2023’ किस देश द्वारा आयोजित एक प्रमुख परिचालन स्तर का अभ्यास है?

  • उत्तर – भारत

  • किस संस्था ने ‘Global Greenhouse Gas Monitoring Infrastructure’ पेश किया?

  • उत्तर – WMO

  • किस केंद्रीय मंत्रालय ने ‘स्वच्छोत्सव’ महिलाओं के नेतृत्व में स्वच्छता अभियान शुरू किया?

  • उत्तर – आवास और शहरी मामलों के मंत्रालय

  • सल्हौतुओनुओ क्रूस (Salhoutuonuo Kruse) ने किस राज्य की पहली महिला कैबिनेट मंत्री बनकर इतिहास रचा है?

  • उत्तर – नागालैंड

  • कौन सा शहर वित्तीय समावेशन के लिए वैश्विक भागीदारी की दूसरी बैठक का मेजबान था?

  • उत्तर – हैदराबाद

  • डॉ माणिक साहा ने 2023 में किस भारतीय राज्य के मुख्यमंत्री के रूप में शपथ ली?

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

  • ‘डिजिटल इंडिया बिल’ किस केंद्रीय मंत्रालय से जुड़ा है?

  • उत्तर – इलेक्ट्रॉनिक्स और आईटी मंत्रालय

  • ड्राफ्ट केंद्रीय विद्युत प्राधिकरण विनियम (Draft Central Electricity Authority Regulations) हाल ही में किस प्रजाति की रक्षा के लिए जारी किया गया था?

  • उत्तर – ग्रेट इंडियन बस्टर्ड

  • किस देश ने ‘International Big Cat Alliance’ बनाने का प्रस्ताव दिया है?

  • उत्तर – भारत

  • ब्रह्मोस मिसाइल को रूस के NPO मशीनोस्ट्रोयेनिया और भारत के किस संगठन के बीच साझेदारी से विकसित किया गया है?

  • उत्तर – DRDO

  • दुनिया का पहला 200 मीटर लंबा बैंबू क्रैश बैरियर ‘बाहु बल्ली’ किस राज्य में स्थापित किया गया है?

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

  • किस देश ने लगभग 8.5 मिलियन मीट्रिक टन लिथियम अयस्क की खोज करने का दावा किया है?

  • उत्तर – ईरान

  • किस संस्था ने ‘Women, Business and the Law Index’ जारी किया?

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

  • 2021-22 के लिए आवधिक श्रम बल सर्वेक्षण (PLFS) रिपोर्ट के अनुसार, कृषि क्षेत्र में रोजगार का अंश कितना है?

  • उत्तर – 45.5%

  • किस संस्था ने ‘Advanced Towed Artillery Gun System (ATAGS)’ डिजाइन किया है?

  • उत्तर – DRDO

  • हाल ही में खबरों में रहा HUID नंबर किस तत्व/उत्पाद से जुड़ा है?

  • उत्तर – सोना

  • किन संस्थानों ने ‘More than a billion reasons: The urgent need to build universal social protection’ शीर्षक से रिपोर्ट जारी की?

  • उत्तर – UNICEF- ILO

  • केंद्रीय सिंचाई एवं विद्युत बोर्ड (CBIP) पुरस्कार किस संस्था को प्रदान किया गया?

  • उत्तर – NTPC

  • किस संस्था ने ‘Mind the Gender Gap’ रिपोर्ट जारी की?

  • उत्तर – CFA Institute

  • हाल ही में खबरों में रही ‘समर्थ योजना’ (SAMARTH scheme) किस मंत्रालय से जुड़ी है?

  • उत्तर – कपड़ा मंत्रालय

  • राष्ट्रीय सुरक्षा दिवस (National Safety Day) 2023 की थीम क्या है?

  • उत्तर – Our Aim – Zero Harm

  • कौन सा शहर ‘G20 विदेश मंत्रियों की बैठक (FMM)’ का मेजबान है?

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

  • किस देश ने इंडो-पैसिफिक टेक दूत (Indo-Pacific tech envoy) की घोषणा की?

  • उत्तर – यूके

  • किस बैंक ने सिटीग्रुप के भारतीय उपभोक्ता कारोबार का अधिग्रहण पूरा कर लिया है?

  • उत्तर – Axis Bank

  • किस केंद्रीय मंत्रालय ने ‘Grievance Appellate Committee (GAC)’ लॉन्च की?

  • उत्तर – इलेक्ट्रॉनिक्स और आईटी मंत्रालय

  • ‘Indian States’ Energy Transition’ रिपोर्ट के अनुसार, किन राज्यों ने स्वच्छ बिजली में परिवर्तन में सबसे अधिक प्रगति की है?

  • उत्तर – कर्नाटक और गुजरात

  • धरोई आर्द्रभूमि (Dharoi wetland), जहाँ हाल ही में एक पक्षी सर्वेक्षण किया गया था, किस राज्य में स्थित है?

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

  • IMF के अनुसार, किस देश में 2023 में वैश्विक विकास में 15% योगदान देने की क्षमता है?

  • उत्तर – भारत

  • भारत के किस पड़ोसी देश ने सौर ऊर्जा के उपयोग को बढ़ाने के लिए ISA के साथ समझौता ज्ञापन पर हस्ताक्षर किए?

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

  • अंतर्राष्ट्रीय बौद्धिक संपदा सूचकांक 2023 में भारत का रैंक क्या है?

  • उत्तर – 42

  • कौन सा राज्य ‘वैश्विक उत्तरदायी पर्यटन शिखर सम्मेलन’ (Global Responsible Tourism Summit) का मेजबान है?

  • उत्तर – केरल

  • ‘UPI LITE पेमेंट्स’ लॉन्च करने वाला पहला प्लेटफॉर्म कौन सा है?

  • उत्तर – पेटीएम पेमेंट्स बैंक

  • किस संस्था ने भारत का पहला म्यूनिसिपल बॉन्ड इंडेक्स लॉन्च किया?

  • उत्तर – NSE

  • किस शहर का नाम बदलकर ‘छत्रपति संभाजीनगर’ कर दिया गया है?

  • उत्तर – औरंगाबाद

  • भारत की G-20 अध्यक्षता के तहत W20 इंसेप्शन मीटिंग की मेजबानी कौन सा शहर कर रहा है?

  • उत्तर – औरंगाबाद

  • कौन सा शहर ‘International Bio-resource Conclave & Ethno-pharmacology Congress 2023’ का मेजबान है?

  • उत्तर – इंफाल

  • फेंटानिल और पशु ट्रैंक्विलाइज़र का मिश्रण जिसे ज़ाइलाज़ीन कहा जाता है, जिसे ‘ट्रांक डोप’ के रूप में जाना जाता है, किस देश में चिंता पैदा कर रहा है?

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

  • किस राज्य को ‘Foundational Literacy and Numeracy Index 2022’ में शीर्ष प्रदर्शन करने वाला स्थान मिला?

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

  • किस देश ने ‘National Green Fiscal Incentives Policy Framework’ लॉन्च किया?

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

  • काजीरंगा राष्ट्रीय उद्यान किस राज्य में स्थित है?

  • उत्तर – असम

  • ‘राष्ट्रीय स्वास्थ्य प्राधिकरण की स्कैन एंड शेयर सर्विस’ किस योजना के तहत शुरू की गई थी?

  • उत्तर – आयुष्मान भारत डिजिटल मिशन

  • किस देश ने ‘कमर्शियल आर्म्स ट्रांसफर (CAT) पॉलिसी’ लॉन्च की है?

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

  • हाल ही में खबरों में रही ‘INS सिंधुकेसरी’ क्या है?

  • उत्तर – पनडुब्बी

  • 2022 में किस देश की प्रजनन दर दुनिया में सबसे कम 0.78 है?

  • उत्तर – दक्षिण कोरिया

  • हाल ही में खबरों में रहा रिड्यू कैनाल स्केटवे (Rideau Canal Skateway) किस देश में है?

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

Recent Posts

  • Synchronous Motors – Important Questions and Answers
  • Starting Methods of Synchronous Motor
  • Torque and Power Relation
  • Phasor Diagram for Synchronous Motor
  • Synchronous Motor: Applications, Starting Methods & Working Principle
  • Prime mover
  • Parallel Operation of Alternators
  • Slip Test on Synchronous Machine
  • Salient Pole and Non Salient Pole Synchronous Generator
  • Power Angle Curve of Synchronous Machine
  • Methods of finding Voltage Regulation in Synchronous Generator
  • Voltage Regulation of Alternator or Synchronous Generator
  • Potier Reactance – Synchronous Generator
  • Short Circuit Ratio of a Synchronous Machine (SCR)
  • Synchronous Reactance and Synchronous Impedance

onlineexamguide

onlineexamguide.com is the ultimate guide that will keep you updated about almost every Exam & Interviews . We aim to provide our readers with an informative details that have been occurring in Examination . Here at onlineexamguide.com , we focus on delivering our readers with the latest exam Pattern Mock test

We Provide Free online test to practice for Competitive exams , Online Exam, Entrance and Interview. Learn and Practice online test for Free and Prepare for your exam online with us

Quick links

  • About us
  • Privacy Policy
  • Instructor Registration
  • Student Registration
  • Java Programming
  • C programming
  • C++ programming
  • Aptitude Tricks

Follow us

Free Online Mock Test

  • UPTET PRIMARY Online Test Series
  • Super TET Mock Test in Hindi 2023
  • CTET Mock Test 2022 Paper 1
  • SSC CHSL Online Mock Test
  • SSC MTS Mock Test 2023
  • SSC CGL Mock Test
  • SSC GD Mock Test
  • ccc online test

Search

Learn and Earn

Register as Instructor - Create and sell online courses and coaching services with the best online platform onlineexamguide.com . Build a course, build a brand, earn money

Contact us

For any queries

Email us on - admin@onlineexamguide.com

We will response fast as much as we can
Copyright © 2023 onlineexamguide.com - All Rights Reserved.
error: Content is protected !!

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.