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 Arithmetic Operators Tutorial

Arithmetic Operators

Table of Contents

  • Arithmetic operators in c
    • Arithmetic Operators in C
    • Integer and Float Conversions
  • Arithmetic Operators
  • C Operator Precedence or Priority or Hierarchy
    • Arithmetic operators in c Precedence Chart
  • C Operator Associativity
  • Arithmetic operators in c Syntax Basics Part 1
  • Structure of a C Program
    • Output
    • Observations
  • Keywords in C Language (Arithmetic operators in c)
  • Arithmetic Operators in C MCQ
    • 2) Operator % in C Language is called.?
    • 3) Output of an arithmetic expression with integers and real numbers is ___ by default.?
    • 18) What is the priority of operators *, / and % in C language.?
    • 19) In C language, which Operator group has more priority between (*, / and %) and (+, -) groups.?
    • 20) Associativity of C Operators *, /, %, +, – and = is.?

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

C language comes with Arithmetic Operators like Plus, Minus, Multiplication, Division and Modulo Division. One more operator ‘=’, also called Assignment operator is also present.

C Programming Arithmetic Operators are used to work with integers and real numbers.

Study C basics and keywords before this tutorial.

Arithmetic operators in c

SNOOperatorDescription
1+Addition Operator
2–Subtraction Operator
3*Multiplication Operator
4/Multiplication Operator
5%Modulo Division Operator

Arithmetic Operators in C

Example 1:

int main()
{
  int a=5, b=10;
  int c;
  // = is Assignment operator
  c = a + b;
  printf("%d ", c);
  
  c = a - b;
  printf("%d ", c);
  
  c = a*b;
  printf("%d ", c);
  
  c = b/a;
  printf("%d ",c);

  c = a%b; //modulo division or remainder operator
  printf("%d", c);
  
  return 0;
}
//output:  15  -5  50  2  5

Assignment Operator allows only right side value to be assigned to the left side variable. In the above program, left side variable ‘C’ gets the value of right side operation like addition, subtraction etc.

Note: Modulo division operator works only with whole numbers like integers.

Note: Arithmetic operators can also be applied on char variables as characters are converted to their respective ASCII codes before arithmetic operation.

Integer and Float Conversions

When you are working with integers and float (Real) numbers, some number conversions are applied.

  1. Result of int and int is integer only. Use %d format specifier. Use an int variable to hold data.
  2. Result of float and float is float only. Use %f format specifier. Use a float variable to hold data.
  3. Result of int and float is float only. Use %f format specifier. Use a float variable to hold data.
  4. If you use %d instead of %f, precision data will be lost.
  5. If you are working with long, double and long double data types, result of an arithmetic operation contains higher data type value. For example, arithmetic operation with short and int is always int.

Arithmetic operators in c Example 1:

int main()
{
  int a=5, b=10;
  float c = 12.5f, d = 10.5f;
  
  //int + int
  printf("%d, ", a+b);
  
  //float + float
  printf("%f, ", c+d);
  
  //int + float
  printf("%f, ", a + c);
  
  //int + float
  printf("%d", a + c);
  //%d truncates extra data i.e precision
  
  return 0;
}
//output: 15, 23, 17.500000, 17

Arithmetic Operators

Example 2:

SNOArithmetic OperationResult
1.9/24
2.9/2.04.5
3.9.0/24.5
4.9.0/2.04.5
5.2/90
6.2/9.00.22
7.2.0/90.22
8. 2.0/9.00.22

Note: To avoid losing of precision data with division operator, multiply the numerator or denominator with 1.0f or 1.0 double value. Use parantheses ( ) operator to group all numerator or denominator expressions.

int main()
{
  int a=10, b=4;
  float c = (1.0f * a) / b;
  //multiply with 1.0f or 1.0
  printf("%f", c);
    
  return 0;
}
//output: 2.500000

C Operator Precedence or Priority or Hierarchy

Each operator in C has a precedence or priority or hierarchy. Operator precedence is useful to evaluate arithmetic expressions with operators of different priority. Operator priority decides which operator and operands should be evaluated first.

Note: Constants on the left and right side of operator are called Operands.

Example 1:

int main()
{
  int a=2, b=3, c=8;
  int d=0;
  d = a + b * c;
  printf("%d", d);
  
  return 9;
}
//output:
// 2 + (3*8)
// 2 + 24
// 26 is the output
//'*' operator has higher priority
// wrong = (a+b)*c

Arithmetic operators in c Precedence Chart

PriorityOperatorDescription
1st*, /, %Multiplication, Division, Modulo Division
2nd+, –Addition, Subtraction
3rd=Assignment

Example 2:

int main()
{
  float abc = 5 + 10 / 2 * 5 - 2 % 5;
  printf("Result=%f", abc);
  
  return 0;
}
//Evaluation steps
//10 / 2 * 5 left to right processing
//5 + 25 - 2 left to right processing
// START
// 5 + (10 / 2) * 5 - 2 % 5
// 5 + 5 * 5 - 2 % 5
// 5 + 25 - 2 % 5
// 5 + 25 - 2
// 30 - 2
// 28
//END

C Operator Associativity

C operator associativity deals with the problem of associating an operand to either left operator or right operator. When two equal priority operators are encountered in an expression, this Operator associativity is used to solve deadlock. Usually arithmetic operators follow Left to Right Associativity. Equals to ‘=’ operator follows Right to Left Associativity.

Example 1:

int d = 3 + 4 + 5;

Now as per Left to Associativity of arithmetic operators, 4 belongs to the left side + or first + operator. So the expression becomes (3+4) + 5. Next, the result of expression is added to 5 like (7)+5.

Now as per Right to Left Associativity of Equals to Operator, right side value is assigned to left side variable. So the variable d now holds a value of 12.

Example 2: 

float fd = 3 + 12 / 5;

In the code above, there are two operators + and /. As Division / operator has higher priority, operand 12 is associated with /.  instead of + on the left side. So 12/5 evaluates to 2. fd = 3 + 2 = 5 now.

learn C Programming Syntax Basics in this multipart tutorial which are useful for students in the last minute before exam. C Programming Language was invented by Dennis Ritchie in Bell Laboratories. Now Nokia owns Bell Laboratories and experiments are still going on.

Arithmetic operators in c Syntax Basics Part 1

We shall learn about basic structure of a C Program and predefined Keywords in this C Programming Syntax Basics Tutorial Part 1. You can set up a Turbo C Compiler on your Windows Machine easily.

Structure of a C Program

Every C program contains a function or method called main(). All functions end with Round Brackets or Paranthesis ( ). Inside Paratheses, arguments can be received or passed. Code of a Function is surrounded by Curly Brackets or Braces { }.

#include <stdio.h>
void main()
{
  /*This is a multi-line comment.
     It is not compiled or checked for Syntax*/
  printf("Hello C..");
}

Output

Hello C..

Observations

  1. VOID is a return type. VOID means nothing is being returned.
  2. main() { } is a compulsory function in any C Program.
  3. void and main should be typed in lowercase completely.
  4. / symbol is called Forward Slash or simply Slash.
  5. * symbol is called STAR.
  6. /* */ is a multiline comment. Comments are useful for analysing code logic flow in very big projects. Comments make others easily understand your program or project.
  7. printf() is a function which is passing one argument “Helllo C”.
  8. “Hello C” is a string literal here.
  9. Code statements or lines end with Semicolon ;
  10. Putting a return type before a function name is not mandatory in a C Compiler. If you use a C++ Compiler to compile c programs, you must specify a return type.
  11. #include includes an already written header file stdio.h which contains code for printf function. Without predefined functions, life becomes difficult to write everything every time on our own. Also the code without including files becomes clumsy to maintain and understand.

Keywords in C Language (Arithmetic operators in c)

There are a total of 32 keywords in C Language which can not be used for the names of variables and functions. Find the C Programming Keyword list below. Students need to remember these keywords just like that to attempt questions asked in their exams.

KeywordMeaning
auto Defines local life time for a variable
break Breaks a current loop in general
case Defines branch control point
char Basic data type, character literal
const Defines a Constant, unmodified variable
continue control goes to the loop beginning
default control point used in switch construct in general
do do while loop
double Floating point data type bigger than float type
else Usually followed by if construct. If conditon fails, branch to else block
enum Used to define a  group of int constants like array
extern Used to define a variable or function with type and the definition may exist some where 
float Floating point data type
for For Loop
goto Transfers execution control to defined Label
if A conditional statement
int Basic integer data type
long Integer data type bigger than int
register Tells to store the variable in RAM register
returnends execution immediately
short Type Modifier
signed Type Modifier
sizeofused to get the size of a variable. Eg. sizeof(integerType)
staticused to create a variable with broad scope
struct Used to define a custom data type kind of thing
switch switch branch control
typedef used to create new type
unionused in grouping of variables of same type
unsignedModifiere used to increase positive max value
void empty data type or return type
volatileUsed to create a variable with a value changed by any external process
whilewhile loop with a condition
[WpProQuiz 24]

Arithmetic Operators in C MCQ

1) Choose a correct statement.

int a = 12 + 3 * 5 / 4 - 10

A) 12, 3, 5, 4 and 10 are Operators.  +, -, * and / are Operands.  = is an increment operator.

B) 12, 3, 5, 4 and 10 are Operands.  +, -, * and / are Operators.  = is decrement operator.

C) 12, 3, 5, 4 and 10 are Operands.  +, -, * and / are Operators.  = is an assignment operator.

D) 12, 3, 5, 4 and 10 are Operands.  +, -, * and / are Logical Operators.  = is an assignment operator.

Answer [=] C

2) Operator % in C Language is called.?

A) Percentage Operator

B) Quotient Operator

C) Modulus

D) Division

Answer [=] C

Explanation:

Operator % is called Modulus or Modular or Modulo Division operator in C. It gives the reminder of the division.

int a = 11%4;

Now a holds only 3 which is the reminder.

3) Output of an arithmetic expression with integers and real numbers is ___ by default.?

A) Integer

B) Real number

C) Depends on the numbers used in the expression.

D) None of the above

Answer [=] B

Explanation:

Any arithmetic operation with both integers and real numbers yield output as Real number only.

5 + 10.56 = 15.560000 which is a real number.

5 + 10.0 = 15.000000 is also a real number.

4) Choose a right statement.

int a = 10 + 4.867;

A) a = 10

B) a = 14.867

C) a = 14

D) compiler error.

Answer [=] C

Explanation:

a is an int variable. So 10+4.867 = 14.867 is truncated to 14 and assigned to a.

5) Choose a right statement.

int a = 3.5 + 4.5;

A) a = 0

B) a = 7

C) a = 8

D) a = 8.0

Answer [=] C

Explanation:

3.5 + 4.5 = 8.0 is a real number. So it is converted to downgraded to int value. So a = 8.

6) Choose a right statement.

float var = 3.5 + 4.5;

A) var = 8.0

B) var = 8

C) var = 7

D) var = 0.0

Answer [=] A

Explanation:

A float variable can hold a real number.

7) Choose right statement.

int main()
{
    float c = 3.5 + 4.5;
    printf("%f", c);

    return 0;
}

A) 8.0

B) 8.000000

C) 8

D) 7

Answer [=] B

Explanation:

Float can print precision up to 6 digits. So 6 zeros will be shown if there are no digits after decimal point.

8) Choose a right statement.

int main()
{
    float c = 3.5 + 4.5;
    printf("%d", (int)c);

    return 0;
}

A) 8.0

B) 8.000000

C) 7

D) 8

Answer [=] D

Explanation:

You are printing a float variable by type casting to int. So integer is printed. 

int c = 3.5 + 4.5 also holds and prints 8.

9) Choose a right statement.

int a = 5/2;
int b = 5.0/2;
int c = 5 / 2.0;
int d = 5.0/2.0;

A) a = 2, b = 2, c = 2, d= 2

B) a = 2, b = 2.0, c = 2, d= 2.0

C) a = 2, b = 2.5, c = 2.5, d= 2.5

D) a = 2.5, b = 2.5, c = 2.5, d= 2.5

Answer [=] A

Explanation:

Irrespective of numbers after decimal point, an int variable holds only integer value i.e 2.

10) Choose a right statement.

float a = 5/2;
float b = 5/2.0;
float c = 5.0/2;
float d = 5.0/2.0;

A) a=2.5, b=2.5, c=2.5, d=2.5

B) a=2, b=2.5, c=2.5, d=2.5

C) a=2.0, b=2.5, c=2.5, d=2.5

D) a=2.0, b=2.0, c=2.0, d=2.0

Answer [=] C

Explanation:

In division, to get the actual real value, you should specify at least one real number.

Variable a holds only 2. But variables b,c and d contain real numbers as either numerator or denominator is a real number.

11) If both numerator and denominator of a division operation in C language are integers, then we get.?

A) Expected algebraic real value

B) Unexpected integer value

C) Compiler error.

D) None of the above

Answer [=] B

Explanation:

int a = 5/2 stores only 2.

12) Choose a right statement.

int var = 3.5;

A) a = 3.5

B) a = 3

C) a = 0

D) Compiler error

Answer [=] B

Explanation:

a stores only integer value. So, 3.5 is truncated to 3.

13) Choose a right statement.

int main()
{
    int var = 3.5;;
    printf("%f", var);

    return 0;
}

A) 3.500000

B) 3

C) 3.5

D) 0.000000

Answer [=] D

Explanation:

As the variable type is an integer, you have to use %d as a format specifier. If you specify wrong format specifier, you will not get expected output.

14) What is the output of the program.?

int main()
{
    int a = 25%10;
    printf("%d", a);

    return 0;
}

A) 2.5

B) 2

C) 5

D) Compiler error.

Answer [=] C

Explanation:

Modulo division operator returns the reminder of division of 25 by 10. 10×2 + 5 = 25. So reminder is 5.

15) Can you use C Modulo Division operator % with float and int?

A) Only int variables = Okay

B) Only float variables = Okay

C) int or float combination = Okay

D) Numerator int variable, Denominator any variable = Okay

Answer [=] A

Explanation:

Modulo Division operator % in C language can be used only with integer variables or constants.

16) What is the output of the C program with Modulo Division operator with – or Negative numbers.?

int main()
{
    int a = -25%-10;
    int b = -25%10;
    int c = 25%-10;
    
    printf("%d %d %d", a, b, c);

    return 0;
}

A) 5 -5  -5

B) 5 -5 5

C) -5 -5 5

D) 5 5 5

Answer [=] C

Explanation:

Sign of a modulo division operation is same as the sign of Numerator. So sign of 25 is taken always.

17) What is the output of the program.?

int main()
{
    float a = 45;
    printf("%f", a);

    return 0;
}

A) 45

B) 45.0

C) 45.000000

D) 0.000000

Answer [=] C

Explanation:

Integer value 45 is promoted to float i.e 45.0 and printed with all 6 decimal numbers.

18) What is the priority of operators *, / and % in C language.?

A) * > / > %

B) % > * > /

C) Both % = / ,  *  are same

D) All three operators *, / and % are same.

Answer [=] D

Explanation:

Operators Multiplication *, Division / and Modulo Division % are all having the same Priority.

19) In C language, which Operator group has more priority between (*, / and %) and (+, -) groups.?

A) Both groups share equal priority.

B) (+, -) > (*, / and %)

C) (+, -) < (*, / and %)

D) None of the above.

Answer [=] C

Explanation:

+ and – has same priority. *, / and % has equal priority. But (+, -) has less priority than (*, / and %).

20) Associativity of C Operators *, /, %, +, – and = is.?

A) Operators *, / and % have Left to Right Associativity. Operators + and – have Left to Right Associativity. Operator = has Right to Left Associativitiy.

B) Operators *, / and % have Right to Left Associativity. Operators + and – have Left to Right Associativity. Operator = has Right to Left Associativitiy.

C) Operators *, / and % have Right to Left Associativity. Operators + and – have Right to Left Associativity. Operator = has Right to Left Associativitiy.

D) Operators *, / and % have Right to Left Associativity. Operators + and – have Right to Left Associativity. Operator = has Left to Right Associativitiy.

Answer [=] A

Explanation:

Operators *, / and % have Left to Right Associativity. Operators + and – have Left to Right Associativity. Operator = has Right to Left Associativitiy.

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.