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

C Programming Functions and Pointers Tutorial

Functions and Pointers in C

Table of Contents

  • Types of functions in C
  • Syntax of a Function
  • Functions and Pointers in C
  • Notes about Writing and Working of a Function in C
    • Example 1: Area of Rectangle Function
    • Functions and Pointers in C examples
    • Example 2: Using Library functions
  • Recursion or Recursive Functions
    • Functions and Pointers
    • Example 1:
  • Pointers in Functions
    • 1. Call By Value / Pass by Reference
    • C Programming Functions and Pointers
    • 2. Call By Reference / Pass by Reference
    • C Programming Functions and Pointers
  • Functions and Pointers in C MCQ
    • 1) What are the data type of variables that can be returned by a C Function.?
    • 15) A recursive function can be replaced with __ in c language.
    • 16) A recursive function is faster than __ loop.
    • 17) A recursive function without If and Else conditions will always lead to.?
    • 18) What is the C keyword that must be used to achieve expected result using Recursion.?

Learn Functions and Pointers in C Tutorial and MCQ Questions and Answers on Basics to attend job placement exams, interview questions, college viva and Lab Tests

C language is built up of a number of functions. A function is a group of statements or block of statements that servers a specific purpose.

Types of functions in C

There are two types of functions in a C language.

  1. Library Functions
  2. User Defined Functions

1. Library Functions

As the name suggests, Library functions are predefined functions written for specific purposes like printing, scanning input and more. To use library functions, you have to include the header files with the file name extension DOT-H (.h) in your C program using a Preprocessor Directive.

2. User Defined Functions

User defined functions are the functions defined or written by you in your C program. You can define any number of functions in a C program.

Syntax of a Function

RETURN-TYPE FUNCTION_NAME(PARAMERTER1, PARAMETER2,..)
{
  STATEMENTS; // FUNCTION LOGIC
  return SOME_VALUE;
}

Functions and Pointers in C

Notes about Writing and Working of a Function in C

  1. A function name should follow the same guidelines of choosing a Variable name
  2. A function name can not start with a number. It can start with an Underscore ( _ ) symbol.
  3. A function name can contain Alphabets, numbers and Special character like Underscore.
  4. Same function name should be repeated again in the same C program.
  5. Popular ‘return’ keyword is used most with functions.
  6. Default Return type of a function is a Garbage Integer value if not specified explicitly.
  7. A function can return only one value at a time.
  8. You can put any number of RETURN statements in a c program.
  9. You need not write a RETURN statement. It is not suggested.
  10. main() is also a function which is invoked or called or started automatically on execution.
  11. Any executable C program must contain main() function.
  12. Other programming languages call functions as methods.
  13. Arguments are nothing but Parameters a function accepts.

And Arguments received in a function are called FORMAL ARGUMENTS.

Arguments passed to a function are called ACTUAL ARGUMENTS.

  1. Variables defined in a C program are called Local Variables. Local variables die after execution of the function.
  2. Static Storage Class Variables in a function Retain their value among multiple calls.
  3. Functions accept all types of data i.e int, long, float, double, char and pointers.
  4. Arguments are values a function accepts from a calling function. Accepting arguments is not mandatory.
  5. If you call a function SOMEFUNCTION() from main() function, then the main function is called CALLING FUNCTION and SOMEFUNCTION() is called CALLED FUNCTION.
  6. There is no limit on the number of different functions being defined in a C program.
  7. A function may be called any number of times.
  8. Nesting of functions or defining a function inside another function is not allowed.
  9. Passing or arguments are processed from Right to Left in C Language.
  10. A function can call itself. This process is called Recursion.

Example 1: Area of Rectangle Function

int area(int,int);
int main()
{
  int x=5, y=6;
  int z = area(x,y);
  int p = area(2,6);
  printf("%d, %d", z, p);

  return 9;
}
int area(int a, int b)
{
  return (a*b);
}
//output
//30, 12

In the above program, we passes arguments x and y to the function area(). Function area() returned calculated area which is assigned to the variable Z. You can directly call a function with constants without using any variables like area(2,6).

Functions and Pointers in C examples

Example 2: Using Library functions

#include<math.h>
int main()
{
  float x=1;
  float a = sin(x);
  printf("%f", a);

  return 9;
}

We have to INCLUDE the Header file of the Library we want to use. Different functions are included in different libraries. As we are dealing with Trigonometric functions, we have included MATH.H file.

Recursion or Recursive Functions

A function which calls itself is called a Recursive Function and the process is called Recursion.

  1. To create a recursive function, exit condition must be specified without which it becomes never ending recursion and the program crashes.
  2. Recursion is slow compared to normal WHILE, FOR and DO WHILE loops.
  3. Recursion logic by one developer is difficult to understand for other developers.
  4. Usually, IF or ELSE conditions are used to END recursion.

Functions and Pointers

Example 1:

int main()
{
  int a = 4335;
  int no_of_digits = func(a);
  printf("NO=%d", no_of_digits);

  return 9;
}
int func(int p)
{
  int k;
  if(p<10)
    return 1;
  else
    k = 1 + func(p/10);

  return k;
}
//output
//NO=4
//Analysis
//Step1: 1 + func(433)
//Step2: 1 + (1 + func(43))
//Step3: 1 + (1 + (1 + func(4)))
//Step4: 1 + (1 + (1 + 1) )

Above recursive function takes the input number a P. Using recursion, it counts number of digits present in the given number.

Pointers in Functions

Functions and pointers are both used to pass variables and variable addresses from one function to another.

There are two ways of calling a function with arguments.

  1. Call By Value
  2. Call By Reference

1. Call By Value / Pass by Reference

If you pass only variables or constants to a function, it is called Call By Value. Because you do not use any Pointers or Addresses. Advantage of Call By Value is that the original values of passing variables do not change when you make changes in the called function.

C Programming Functions and Pointers

Example

void show(int);
int main()
{
  int a=10;
  show(a); //CALL BY VALUE
  printf("%d", a);
}
void show(int x)
{
  x = x + 1; //Here it is not a.
  printf("%d,", x);
  return;
}
//output:
//11,10
//Value of a is not changed.

2. Call By Reference / Pass by Reference

Call By Reference passes addresses of variables to another function. So whatever changes you make to the variables in the CALLED function reflect in the CALLING function. It has side effects.

To pass addresses by call by reference, two operators are used: ADDRESS OF (&) and VALUE AT ADDRESS (*).

C Programming Functions and Pointers

Example

void show(int*);
int main()
{
  int a=10;
  show(&a); //CALL BY Reference
  printf("%d", a);
}
void show(int *x)
{
  *x = *x + 1; //Here it is A only.
  printf("%d,", *x);
  return;
}
//output:
//11,11
//Value of a is CHANGED.

&a is the address of the Variable ‘a’.  *x is the value at the address passed. So you are changing the original copy of data in memory location passed. This is called CALL BY REFERENCE.

[WpProQuiz 33]

Functions and Pointers in C MCQ

1) What are the data type of variables that can be returned by a C Function.?

A) int, float, double, char

B) struct, enum

C) Pointers to variables, arrays, functions, struct variables, enum variables etc

D) All the above

Answer [=] D

2) What is the output of a C Program with functions and pointers.?

void texas(int *,int *);
int main()
{
    int a=11, b=22;
    printf("Before=%d %d, ", a, b);
    texas(&a, &b);
    printf("After=%d %d", a, b);
    
    return 0;
}
void texas(int *i, int *j)
{
    *i = 55;
    *j = 65;
}

A) Before=11 22, After=11 22

B) Before=11 22, After=55 65

C) Before=11 22, After=0 0

D) Compiler error

Answer [=] B

Explanation:

Through the call by reference functions &a, &b, a and b are passed. Variables I and j thus gather the passed addresses. As a result, pointer-based modifications are kept even after the function has finished running.

3) What is the output of C Program with functions.?

int main()
{
    int a = 66;
    printf("%d %d %d,\n", a, ++a, a++);
    a = 66;
    printf("%d %d %d,\n", ++a, a++, a);
    a = 66;
    printf("%d %d %d", ++a, a, a++);
    return 0;
}

A)

68 68 66,
68 66 66,
68 68 66

B)

68 68 66,
66 66 68,
68 68 66

C)

68 68 66,
68 66 68,
68 68 66

D)

68 68 66,
68 66 68,
68 68 68

Answer [=] C

Explanation:

Order of processing arguments is right to left. First keep 3 placeholder buckets. Right to left check for higher priority of variables like ++a or a++ etc. Always process higher priority variables first. At last, fill the value of low priority variable a.

4) What is the output of a C program.?

int main()
{
    int a = 1;
    printf("%d %d %d,\n", a, ++a, a++);
    a = 1;
    printf("%d %d %d,\n", ++a, a++, a);
    a = 1;
    printf("%d %d %d", ++a, a, a++);
    return 0;
}

A)

3 3 1,
3 3 3,
3 3 1

B)

3 1 1,
3 1 3,
3 3 1

C)

3 3 1,
3 1 3,
3 1 1

D)

3 3 1,
3 1 3,
3 3 1

Answer [=] D

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

void show(int,int,int);
int main()
{
    int a = 1;
    show(++a, a++, a);
    return 0;
}
void show(int i, int j, int k)
{
    printf("%d %d %d,\n", i, j, k);
}

A)

1 1 3,

B)

3 1 3,

C)

3 1 1,

D)

3 3 3,

Answer [=] B

Explanation:

1) ++a, 2) a++ 3) a. Second and third arguments have higher priority than third parameter A. Second is therefore handled. Then, processing begins. Finally, the third-place finisher receives the actual value of at that time.

6) What is the output of C Program with pointers.?

int main()
{
    int a = 4;
    int *p;
    p=&a;
    while(*p > 0)
    {
        printf("%d ", *p);
        (*p)--;
    }
    return 0;
}

A) 0 0 0 0

B) 4 4 4 4

C) 4 3 2 1

D) Compiler error

Answer [=] C

Explanation:

Notice the decrement operation on variable “a” using (*p)–. If there are no parantheses, the variable is not decremented, but the memory location pointed to is decremented and has a garbage value.

7) What is the output of C Program with functions.?

void show();
int show();
int main()
{
    printf("ANT\n");
    return 0;
}
void show()
{
     printf("Integer") ;
}
int show()
{
    printf("Void");
}

A) ANT

B) Integer

C) Void

D) Compiler error

Answer [=] D

Explanation:

You can not declare same function with different return types. Here both void show() and int show() can not be written.

8) What is the output of C Program with functions.?

void show(int);
void show(float);
int main()
{
    printf("ANT\n");
    return 0;
}
void show(int a)
{
     printf("Integer") ;
}
void show(float b)
{
    printf("Void");
}

A) Integer Void

B) ANT Integer Void

C) ANT

D) Compiler error

Answer [=] D

Explanation:

You can not re declare and redefine the a function with same name and different arguments. Function name can not be duplicate in any combination.

9) What is the output of C Program with pointers.?

int main()
{
    int a=10;
    int *p, **q;
    p=&a;
    q=&p;
    printf("%d ", a);
    *p=15;
    printf("%d ", a);
    **q=20;
    printf("%d ", a);
    return 0;
}

A) 10 10 10

B) 10 0 0

C) 10 15 20

D) Compiler error

Answer [=] C

Explanation:

Here p is pointer to an integer. q is a pointer to pointer. That is why you should use two STARs **.

10) What is the output of C Program with pointers.?

int main()
{
    int a=20;
    int *p, *q;
    p=&a;
    q=p;
    printf("%d ", a);
    *p=30;
    printf("%d ", a);
    *q=40;
    printf("%d ", a);
    return 0;
}

A) 20 0 0

B) 20 20 20

C) 20 30 40

D) Compiler error

Answer [=] C

Explanation:

P is already a pointer to an integer a. Q copied P. So Q is also a pointer to the same integer a.

11) What is the output of C Program with pointers.?

int main()
{
    int a=20;
    //a memory location=1234
    printf("%d %d %d", a, &a, *(&a));
    return 0;
}

A) 20 20 20

B) 20 1234 1234

C) 20 1234 20

D) 20 20 20

Answer [=] C

Explanation:

The immediate use of the VALUEAT operator * and the ADDRESSOF operator & results in the same result as the variable itself. So *(&a) == a.

12) What is the output of C Program with functions.?

int main()
{
    int a=20;
    printf("CINEMA ");
    return 1;
    printf("DINOSAUR");
    return 1;
}

A) CINEMA DINOSAUR

B) CINEMA

C) DINOSAUR

D) Compiler error

Answer [=] B

Explanation:

There are two return statements in main() function. Only first return is executed. All the statements or lines of code below first return is not reachable and hence not executed.

13) What is the output of C Program with recursive function.?

int sum(int);
int main()
{
    int b;
    b = sum(4);
    printf("%d", b);
    
}
int sum(int x)
{
    int k=1;
    if(x<=1)
     return 1;
    k = x + sum(x-1);
    return k;
}

A) 10

B) 11

C) 12

D) 15

Answer [=] A

Explanation:

4 + 3 + 2 + 1 = 10.

14) What is the output of C Program with Recursive Function.?

int mul(int);
int main()
{
    int b;
    b = mul(3);
    printf("%d", b);
}
int mul(int x)
{
    if(x<=1)
     return 1;
    return (x * mul(x-1));
}

A) 2

B) 3

C) 6

D) 1

Answer [=] C

Explanation:

3*2*1 = 6.

15) A recursive function can be replaced with __ in c language.

A) for loop

B) while loop

C) do while loop

D) All the above

Answer [=] D

16) A recursive function is faster than __ loop.

A) for

B) while

C) do while

D) None of the above

Answer [=] D

Explanation:

Yes. It takes time to recur. Multiple times, variables are kept and removed from STACK memory.

17) A recursive function without If and Else conditions will always lead to.?

A) Finite loop

B) Infinite loop

C) Incorrect result

D) Correct result

Answer [=] B

Explanation:

Yes. To come out of recursion, you must use IF or ELSE blocks.

18) What is the C keyword that must be used to achieve expected result using Recursion.?

A) printf

B) scanf

C) void

D) return

Answer [=] D

Explanation:

Recursion is entirely based on RETURN value; statement.

19) How many functions are required to create a recursive functionality.?

A) One

B) Two

C) More than two

D) None of the above

Answer [=] A

Explanation:

To achieve recursion, only one function is needed. The same function is invoked repeatedly. There must be at least one main() function in order to use the results of all recursive calls.

20) Choose a correct statement about Recursive Function in C language.

A) Each recursion creates new variables at different memory locations

B) There is no limit on the number of Recursive calls

C) The use of pointers with recursion is also possible, but challenging.

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

  • Phasor Diagram of 3 Phase Induction Motor
  • बौद्ध कालीन शिक्षा
  • Rotating Magnetic Field in 3 Phase Induction Motor
  • Squirrel Cage Induction Motor
  • वैदिक कालीन शिक्षा
  • Slip Ring Induction Motor
  • 3 phase induction motor Definition & Working Principle
  • Synchronous Motors – Important Questions and Answers
  • Starting Methods of Synchronous Motor
  • Torque and Power Relation
  • Phasor Diagram for Synchronous Motor
  • Synchronous Motor: Applications, Starting Methods & Working Principle
  • Prime mover
  • Parallel Operation of Alternators
  • Slip Test on Synchronous Machine

onlineexamguide

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

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

Quick links

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

Follow us

Free Online Mock Test

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

Search

Learn and Earn

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

Contact us

For any queries

Email us on - admin@onlineexamguide.com

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

Insert/edit link

Enter the destination URL

Or link to existing content

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