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

Format Specifiers in C and Console IO Tutorial

Format Specifiers in C

Table of Contents

  • Format Specifiers in C and Console IO Functions
  • Escape Sequence Characters in C
    • Format Specifiers in C
    • Example 1:
  • Format Specifiers in C
    • Example 1
    • Format Specifiers
    • Example 2: Truncating part of String with Field Width Specifiers
    • Format Specifiers
    • Example 3: formatting string with float and double
  • Console IO Functions in C Language
    • 1. Formatted Input Output Functions
    • 2. Unformatted Input Output Functions
    • Format Specifiers in C examples
  • Format Specifiers in C MCQ
    • 1) What is an Escape Sequence in C language.?
    • 5) What is a format specifier in C language.?
    • 9) What does C format specifier %W.D represent.?
    • 10) Choose a C Formatted Input Output function below.
    • 11) Choose a C unformatted input output function below.
    • 18) What is the output of C program.?
    • 19) Choose a correct C statement.?

Learn Format Specifiers in C and Console IO MCQ Questions and Answers on Basics to attend job placement exams, interview questions, college viva and Lab Tests

C Programming language provides Format Specifiers and Console IO to help programmers Read and Write data.

The C programming language is a standardized programming language developed in the early 1970s by Ken Thompson and Dennis Ritchie for use on the UNIX operating system

Format Specifiers in C and Console IO Functions

There are two types of Input Output Functions.

  1. Console IO
  2. File IO

1. Console IO functions help to read data from Keyboard and Print / Display data to the Monitor.

2. File IO functions help to read data from Files on Disk and Write data to the Disk.

Format Specifiers in C are used in IO functions to display data in a specified format so that it can be read easily and printed for reports.

Escape Sequence Characters in C

Escape sequence characters in C language are not processed like normal characters. An Escape sequence starts with a BACK SLASH ( \ ) character. An immediate character next to Back Slash is also treated part of the Escape Sequence. Examples are Escape sequences are New Line Character, Line Feed, Form Feed etc.

SNOEscape SequenceMeaning
1\nNew Line – Cursor goes to next line beginning
2\rCarriage Return – Cursor goes to same line beginning
3\bBack Space – One character is deleted backwards
4\tHorizontal Tab – Cursor moves forward to 4 or 8 spaces
5\fForm Feed – Makes the printer to go to the beginning of next page
6\aAudible Alert – Plays a sound
7\’Single Quote – Prints a single quote
8\”Double Quote – Prints a double quote
9\\Back Slash – Prints a back slash

Format Specifiers in C

Example 1:

int main()
{
  printf("TOM\nCAT");
}
//OUTPUT
// \n produces new line
//TOM
//CAT

Format Specifiers in C

A Format Specifier specifies type of data to be Read from Keyboard or Printed on Screen. Types of data available are char, short, int, long, float, double and long double.

List of format specifiers is given below.


SNO
Format Specifiers in CData Type
1%d or %lshort signed
2%ushort unsigned
3%ldlong signed
4%lulong unsigned
5%xunsigned hexadecimal
6%ounsigned octal
7%ffloat
8%lfdouble
9%Lflong double
10%csigned or unsigned char
11%sstring

You can also specify Field Width and Precision as part of a format specifier. Filed Width (W) represents number of COLUMNS to be reserved. Precision (P)  represents Number of Digits after Decimal Point. It is used in the below format. Symbols ‘+’ or ‘-‘ or used to specify Right Alignment and Left Alignment of text respectively. Plus sign is applied by default. So there is no need to type or specify + symbol.

Precision is used along with float and double data types

Note: If less columns are occupied with data, blanks will be shown in place holders. Blanks will appear on right if the text is Left Justified. Blanks will appear on Left if the text is Right Justified.

%(+ or -)(W.P)(Type Specifier)
eg.
%10d Right Justification
%-10d Left Justification
%12.2f, %-12.2f
%16s, %-16s

Note: You can truncate right side of a String or Char Array using Field Width Specifiers as part of Format Specifiers. You can printf only first N character by using %(W.N)s notation with strings.

Example 1

int main()
{
 printf("123456 123456\n");
 printf("%6d %6d\n", 123, 45678);
 printf("%-6d %-6d", 4891, 78);

 return 0;
}
//OUTPUT
123456 123456                                                                           
   123  45678                                                                           
4891   78  

Format Specifiers

Example 2: Truncating part of String with Field Width Specifiers

Strings or char arrays can be truncated using %(W.P)s format specifier. W is the number of columns to be reserved and P is number of characters to be shown counting from Left.

int main()
{
 printf("123456 123456\n");
 printf("%6s %6s\n", "abc", "defgi");
 printf("%-6s %-6s\n", "abc", "dghi");
 printf("\n123456\n");
 //prints only first 2 of 6 characters
 printf("%6.2s\n", "abcdef");
 printf("%-6.3s\n", "abcdef"); 

 return 0;
}
//OUTPUT
123456 123456
   abc  defgi                                                                                   
abc    dghi                                                                                     
123456                                                                                          
    ab                                                                                          
abc

Format Specifiers

Example 3: formatting string with float and double

Float and Double numbers can be formatted specifying Precision or Number of Digits after decimal point to be shown. Total number of digits are represented by W and Precision digits are part of W number. So here in this example, %6.2f specifies a total of 6 digits out of which 2 digits will be used to show precision.

int main()
{
  printf("NAME=%s\n, Score=%6.2f", "TOMMY", 97.578963);
  return 9;
}
//
//  97.57
//double value is type casted to float

//97.5 is double. //double value is type casted to float

Console IO Functions in C Language

Console is a combination of Keyboard and Monitor. and Console IO functions are classified in to two types.

  1. Formatted Input Output Functions
  2. Unformatted Input Output Functions

1. Formatted Input Output Functions

Formatted IO is done in C using only two functions namely PRINTF and SCANF.and Formatted IO functions work with all types of data namely integers, real number and character data.

int main()
{
  char name[10]; int age;
  printf("Enter a name: ");
  scanf("%s, name);
  printf("Enter age: ");
  scanf("%d", &age);
  printf("Name=%s, age=%d", name, age);
  return 9;
}

There are functions like SPRINTF and SSCANF aimed at storing the formatted data to a CHAR Array or String. Functionality of a SPRINTF is similar to PRINTF. Functionality of SSCANF is similar to SCANF. In the below example, keyboard data is read into a temporary String str.

int main()
{
  char str[20];
  char name[10]; int age;
  sprintf(str, "Name=%s, age=%d", "JIMMY", 25);
  printf("%s", str);

  sscanf(str, "%s%d",name, &age); 
  printf("\n%s", str);
}

2. Unformatted Input Output Functions

Unformatted IO is done in C using only Four functions namely GETCHAR, PUTCHAR, GETS and PUTS. and Unformatted Input Output functions are meant only to deal with Character type data and String type data. You can not process numbers using these functions.

Note 1: GETCHAR and PUTCHAR functions work with only SINGLE Character.GETS and PUTS functions work with character array or string data

Note 2: GETS function can read a string of characters with SPACES and TABS. Scanf can not read a line of text with spaces and tabs.

Format Specifiers in C examples

Example 1: Using GETCHAR and PUTCHAR functions:

int main()
{
  char ch;
  printf("Enter a character: ");
  //Press enter after typing a character
  ch = getchar();
  //Now print using PUTCHAR
  printf("\nEntered=");
  putchar(ch);
  return 9;
}

Example 2: Using GETS and PUTS functions:

int main()
{
  char ch;
  printf("Enter a character: ");
  //Press enter after typing a character
  ch = getchar();
  //Now print using PUTCHAR
  printf("\nEntered=");
  putchar(ch);
  return 9;
}

[WpProQuiz 41]

Format Specifiers in C MCQ

1) What is an Escape Sequence in C language.?

A) An escape sequence is a combination of two characters starting with Back Slash always.

B) An escape sequence is usually part of a string to tell compiler to produce New Lines, New tabs, Single or Double quotes etc

C) An escape sequence is used to format the output to look in desired way.

D) All the above

Answer [=] D

Explanation:

eg. \n outputs new line. \t outputs tab i.e 4 or 8 white spaces.

2) Choose a correct statement about C Escape Sequences.

A) \n produces new line.

B) \t produces one tab space (white spaces)

C) \b produces one Backspace

D) All the above

Answer [=] D

3) Choose a correct statement about C Escape Sequences.

A) \r produces one Carriage Return. \r does not take you to the next line. It takes cursor to only the beginning of same line.

B) \f produces form feed

C) \a produces Alert Sound or Beep Sound from PC motherboard speaker

D) All the above

Answer [=] D

4) Choose a correct statement about C Escape Sequences.

A) \’ outputs one Single Quote. Right Single Quote.

B) \” outputs one Double Quote.

C) \\ produces one Visible Back Slash \.

D) All the above

Answer [=] D

5) What is a format specifier in C language.?

A) A format Specifier tells compiler to treat a variable value is predefined way.

B) Different format specifiers are used to print different type of data.

C) Format specifiers are used to write data to files in a formatted way.

D) All the above

Answer [=] D

6) Choose a valid C format specifier.?

A) %d prints integer constants

B) %u prints unsigned integer constants

C) %ld prints signed long and %lu prints unsigned long constants

D) All the above

Answer [=] D

7) Choose a correct statement about C format Specifiers.

A) %c prints unsigned or signed character constants.

B) %s prints string constants

C) %l or %L prints long constants.

D) All the above

Answer [=] D

8) Choose a correct statement about format specifiers.

A) %f prints float constants with 6 digits of precision

B) %lf prints double constants

C) %Lf prints long double constants

D) All the above

Answer [=] D

9) What does C format specifier %W.D represent.?

A) W represents total number of columns including precision digits.

B) D represents number of precision digits out of W columns.

C) Plus(+) before W.D is for Right Alignment. Minus(-) before W.D is for Left Alignment

D) All the above

Answer [=] D

10) Choose a C Formatted Input Output function below.

A) printf(), scanf()

B) sprintf(), sscanf()

C) fprintf(), fscanf()

D) All the above

Answer [=] D

11) Choose a C unformatted input output function below.

A) gets(), puts()

B) getchar(), putchar()

C) A & B

D) None of the above

Answer [=] C

12) What is the output of C program.?

int main()
{
    int a=123;
    printf("*%06d*",a);
    return 0;
}

A) *123*

B) *6123*

C) *000123*

D) *006123*

Answer [=] C

Explanation:

%6d reservers 6 columns. %Zero6d causes Remaining columns will be filled with Zero.

13) What is the output of C program.?

int main()
{
    int a=123456;
    printf("*%03d*",a);
    return 0;
}

A) *123*

B) *6123*

C) *123456*

D) *012345*

Answer [=] C

Explanation:

%3d reserves three columns. But 123456 is more than 3 columns. So width 3 will be ignored.

14) What is the output of C program.?

int main()
{
    int a=6543;
    printf("*%5d,*%-5d*",a,a);
    return 0;
}

A) *56543,*56543*

B) * 6543,*6543 *

C) *6543 ,* 6543*

D) *6543,*6543*

Answer [=] B

Explanation:

%5d reserves 5 columns. 6543 is aligned right. So One Space is filled in the first column. %-5d aligns 6543 left. So right side one Space is filled as 6543 is only a 4 digit number.

15) What is the output of C program.?

int main()
{
    float a=654.123456f;
    printf("%3.3f,%3.2f",a,a);
    return 0;
}

A) 654,654

B) 654.123456,654.123456

C) 654.123,654.12

D) 654.000,654.00

Answer [=] C

Explanation:

%3.3 reserves 3 columns. But the 654.123456 is a 9 column number. So only .3 will be treated as important to print 3 digit precision number. .2 prints number with 2 digit precision.

16) What is the output of C program.?

int main()
{
    char str[]="123";
    printf("*%4s*%-4s*",str,str);
    return 0;
}

A) *4123*4123*

B) * 123*123 *

C) *123 * 123*

D) *123*123*

Answer [=] B

Explanation:

%4s reserves 4 columns. If the string length is less you can see spaces on the left side. %-4s also reserves 4 columns but aligns content on the right side.

17) Choose a correct statement about sprintf and sscanf functions.?

char str[20];

A) sprintf(str,”formatstring”,variables) prints output to console. sscanf(str,”formatstring”,&variables) scans keyboard input and copies to str.

B) sprintf(str,”formatstring”,variables) prints output to string str. sscanf(str,”formatstring”,&variables) scans keyboard input and prints to console

C) sprintf(str,”formatstring”,variables) prints output to string str. sscanf(str,”formatstring”,&variables) scans input from str itself and assigns data to &variables.

D) None of the above

Answer [=] C

Explanation:

Both functions SSCANF or SPRINTF avoid getting input from keyboard or displaying on Console / Screen.

18) What is the output of C program.?

int main()
{
    char ch='A';
    ch=getchar();
    putchar(ch);
    return 0;
}//input= S

A) A

B) B

C) S

D) Compiler error

Answer [=] C

Explanation:

getchar() reads one character from keyboard. putchar(ch) prints one character.

19) Choose a correct C statement.?

A) SCANF can accept all types of data from keyboard including numbers and strings

B) GETS can accept only one String of any length and any number of words. GETCHAR can accept only one character constant from keyboard.

C) SCANF can accept only single word Strings

D) All the above

Answer [=] D

20) What is the output of c program with %* operator.?

int main()
{
    char kh;
    scanf("%*c %c",&kh);
    putchar(kh);
    return 0;
}//input=G H

A) G

B) H

C) A

D) Compiler error

Answer [=] B

Explanation:

%* ignores the entered argument. So here G is ignored. 2nd argument, H is accepted by variable kh. Remember, You have to enter all arguments corresponding to each % symbol.

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.