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

File Operations in C tutorial and MCQ Questions

File Operations in C

Table of Contents

  • File Operations in C
    • 1. File Opening
    • 2. A File Closing
    • 3. File Creation
    • 4. File Reading
    • File Operations in C
    • 5. File Writing
    • File Operations in C
    • 6. File Seeking
    • File Operations
  • File Opening Modes in C
  • File Operations in C MCQ
    • 1) What is the need for a File when you can store anything in memory.?
    • 2) What is the keyword used to declare a C file pointer.?
    • 3) What is a C FILE data type.?
    • 4) Where is a file temporarily stored before read or write operation in C language.?
    • 6) What is the need for closing a file in C language.?
    • 17) What are the C functions used to read or write a file in Text Mode.?
    • 18) What are the C functions used to read or write a file in Binary Mode.?

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

In a computer, information is organized into Files and Directories. C File Handling functions enable us to read files from hard disk and write files to the hard disk.

Note: There is a special data type namely FILE (in capital letters). You should create a Pointer Variable to FILE to handle files on disk. FILE is a struct structure type internally.

File Operations in C

Most common C File Operations IO are as below.

  1. File Opening
  2. File Closing
  3. and File Creation
  4. File Reading (fscanf, fgetc, fgets & fread)
  5. and File Writing / Editing (fprintf, fputc, fputs & fwrite)
  6. File Seeking

1. File Opening

The C language’s fopen() function is used to open files. A FILE pointer is the result of the fopen function.

Syntax:

  FILE *fp;
  fp = fopen("filename", "readmode");
  if(fp == NULL)
  {
    printf("Unable to Read / Write / Create File");
    exit(1);
  }
  //readmode = "r", "r+", "w", "w+", "a", "a+"

File Read Modes in C language are “r”, “r+”, “w”, “w+”, “a” and “a+”. R is for Read, W is for Write and A is for Append.

2. A File Closing

Every opened file needs to be closed after use in order to free up any memory or resources that it may have occupied. In C, the fclose() function is used to close a file.

Syntax:

  FILE *fp;
  fp = fopen("filename", "readmode");
  fclose(fp);

3. File Creation

File can be created simply by changing the File Opening Mode. There are no special functions in C language to create files. File opening modes “w”, “w+”, “a” and “a+” create a File if it is not existing on the disk.

Syntax:

  FILE *fp;
  fp = fopen("abc.txt", "w+");

4. File Reading

A file must first be opened in order to be read File Reading file contents is possible with opening modes like “r,” “r+,” “w+,” and “a+.” End of File is the term we use. A predefined constant called EOF indicates the END of a file.

File Operations in C

Example 1: File Reading using FGETC – character by character reading

#include <stdio.h>
int main()
{
  char ch;
  FILE *fp;
  fp = fopen("abc.txt", "w+");
  while( (ch=fgetc(fp)) != EOF )
  {
    printf("%c", ch);
  }
  fclose(fp);

  return 9;
}

Example 2: File Reading using FGETS – Line by line reading

#include <stdio.h>
int main()
{
  char str[80];
  FILE *fp;
  fp = fopen("abc.txt", "w+");
  while( (fgets(str, 79, fp)) != NULL )
  {
    printf("%s", str);
  }
  fclose(fp);

  return 9;
}

5. File Writing

To write a file on disk, it has to be opened in suitable File Opening Mode. File opening modes like “w”, “w+”, “a” and “a+” allow writing of content to files. 

Example 1: File Writing using FPUTC – Character by Character

#include <stdio.h>
int main()
{
  char str[]= "Tom and Jerry are Good Friends..";
  int i=0;
  FILE *fp;
  fp = fopen("abc.txt", "a");
  while( str[i] != '\0' )
  {
    fputc(str[i], fp);
    i++;
  }
  fclose(fp);

  return 9;
}

File Operations in C

Example 2: File Writing using FPUTS – Line by Line or String by String

#include <stdio.h>
int main()
{
  char str[]= "Tom and Jerry are Good Friends..";
  FILE *fp;
  fp = fopen("abc.txt", "a");
  fputs(str, fp);
  fclose(fp);

  return 9;
}

Example 3: File Reading and  Writing using FSCANF and FPRINTF

#include <stdio.h>
int main()
{
  char str[20], str2[20];
  int age;
  FILE *fp;
  fp = fopen("abc.txt", "a");
  printf("Enter name and age: ");
  scanf("%s%d", str, &age);

  //Printing to File or Writing to File
  fprintf(fp, "%s %d", str, age);
  fclose(fp);


  //Now reading or Scanning from FILE
  fp = fopen("abc.txt", "r");
  fscanf(fp, "%s %d", str2, &age);
  printf("Name=%s, Age=%d", str2, age);
  fclose(fp);

  return 9;
}

6. File Seeking

Simply moving the virtual cursor within the file so that a Read or Write operation can be carried out at that cursor position is what file seeking entails. The fseek() function in the C language lets you move the cursor within a file.

File Operations

Note: File Seeking is usually done in Binary File Opening Modes “rb” and “wb”.

There are two types of File Opening Modes.

  1. Binary Mode
  2. Text Mode 

1. Binary Mode

A Binary mode saves disk space by consuming only required amount of bytes to store data like text, numbers, video data, audio data and more. Binary mode is difficult to handle. Functions used in Binary mode are fread, fwrite and fseek().

2. Text Mode

Text mode can not save disk space. An integer 24 occupies same space as for storing a big number like 1234. Binary mode takes exactly same amount of bytes required to store in memory. Functions used in Text Mode are fprintf and fscanf. Text mode is easy to handle for humans.

File Opening Modes in C

There are Six file opening modes in C. Two more File opening modes for Binary Data “rb” and “wb” are also present. Letter “b” is added at the end to indicate Binary Mode. Letter “t” is added at the end of mode to indicate Text Mode. So, “rt” represents Read Mode for Text. are also present.

SNOModeExplanation
1rRead:1. Reading of file2. File is not created.
2r+Read Plus:1. Reading2. Writing3. File is not created.
3wWrite: Overwrites (modify) existing.1. Writing2. File is created
4w+Write Plus: Overwrites (modify) existing.1. Writing2. Reading3. File is created.
5aAppend: Appends text at the end.1. Writing2. File is created
6a+Append Plus: Appends text at the end.1. Writing2. Reading3. File is created
[WpProQuiz 46]

File Operations in C MCQ

1) What is the need for a File when you can store anything in memory.?

A) Memory (RAM) is limited in any computer.

B) A file is stored on Hard Disk which can store Gigabytes of data.

C) File stored on Hard Disk is safe even if PC is switched off. But Memory or RAM contents are cleared when PC is off.

D) All the above

Answer [=] D

2) What is the keyword used to declare a C file pointer.?

A) file

B) FILE

C) FILEFP

D) filefp

Answer [=] B

Explanation:

FILE *fp;

3) What is a C FILE data type.?

A) FILE is like a Structure only

B) FILE is like a Union only

C) FILE is like a user define int data type

D) None of the above

Answer [=] A

Explanation:

Yes. FILE type pointer eg. FILE *fp holds an address of a C Structure that can store type of file operation, memory location of current read and next read and other useful information.

4) Where is a file temporarily stored before read or write operation in C language.?

A) Notepad

B) RAM

C) Hard disk

D) Buffer

Answer [=] D

Explanation:

Yes. A Buffer is like an empty bucket that is filled with information so that direct read write operation on hard disk is avoided for better performance.

5) Choose a correct statement about C file operation program.?

int main()
{
    FILE *fp;
    char ch;
    fp=fopen("readme.txt","r");
    while((ch=fgetc(fp)) != EOF)
    {
        printf("%c",ch);
    }
}

A) FOPEN opens a file named readme.txt in Read Mode (“r).

B) EOF is End Of File. ch==EOF checks for end of file and while loop stops or exits.

C) FGETC(fp) is a function that returns one character and cursor goes to next character.

D) All the above

Answer [=] D

Explanation:

Inside while loop, we have not done any increment operations like i++. Because fget() function takes care of returning one by one character from file.

6) What is the need for closing a file in C language.?

A) fclose(fp) closes a file to release the memory used in opening a file.

B) Closing a file clears Buffer contents from RAM or memory.

C) Unclosed files occupy memory and PC hangs when on low memory.

D) All the above

Answer [=] D

7) If a FILE pointer is NULL what does it mean.?

FILE *fp;
fp=fopen("abc.txt","w");

A) Unable to open a file named abc.txt

B) abc.txt is not available on disk

C) Hard disk has hard ware problems.

D) All the above

Answer [=] D

8) Choose a correct statement about FGETS in C program.?

int main()
{
    FILE *fp;
    char str[80];
    fp=fopen("readme.txt","r");
    while(fgets(str,80,fp) != NULL)
    {
        printf("%s",str);
    }
    fclose(fp);
}

A) str in fgets() is a like a user buffer that can store 80 characters each time

B) FGETS returns null if no characters are left

C) fgets() reads content from File. FPUS writes content back to File.

D) All the above

Answer [=] D

Explanation:

Here “r” is File open mode. eg. “w” is used for writing a file.

9) Choose a correct statement about C file “R” mode operation using fopen.

fopen("abc.txt","r");

A) If the file abc.txt is found, fopen returns a FILE pointer.

B) If the file abc.txt is not found, fopen returns NULL or 0.

C) File abc.txt is only opened in Read Mode. Now write operation is performed.

D) All the above

Answer [=] D

10) Choose a correct statement about File Write Mode “w”.

File *fp;
fp=fopen("abc.txt","w");

A) If the file abc.txt is not found File abc.txt is created on disk.

B) If the file abc.txt is found, fopen() returns a FILE pointer as usual. Every time, contents of abt.txt are overwritten in “w” mode.

C) Read operation is not allowed in “w” mode.

D) All the above

Answer [=] D

Explanation:

All the above

11) Choose a correct statement about C File Mode “w+”.

FILE *p;
p=fopen("abc.txt","r+");

A) r+ mode allows reading of existing contents of file abc.txt only if file is found.

B) If file is not found, NULL is returned by fopen().

C) You can read existing contents, edit existing content and add new content.

D) All the above

Answer [=] D

12) Choose a correct statement about C file mode “w+”.

FILE *fp;
fp=fopen("abc.txt","w+");

A) Like “w” mode, “w+” mode creates a new file abc.txt if not found. NULL is only returned if some other problems in PC exist in opening a file.

B) w+ mode allows you to read the file also. Only after writing, you can read contents if any written. Before writing existing contents are emptied.

C) w+ mode always makes a file contents empty like w mode.

D) All the above

Answer [=] D

13) Choose a correct statement about C file mode “a”.

FILE *fp;
fp=fopen("abc.txt","a");

A) “a” is for append operation. You can append or add new content to the existing contents.

B) If file is not found, new file is created.

C) You can not write read file contents.

D) All the above

Answer [=] D

14) Choose a correct statement about C file mode “a+”.

FILE *fp;
fp=fopen("abc.txt","a+);

A) a+ mode always appends new data to the end of existing content

B) a+ mode creates a new file if not found or existing.

C) a+ mode allows reading also. mode “a” allows only appending not reading.

D) All the above

Answer [=] D

15) Choose a correct statement about opening a file in binary mode for reading.

FILE *fp;
fp=fopen("abc.txt","rb");

A) rb mode opens the file in binary mode

B) Binary mode is just reading or writing in bytes instead of integers, characters or strings.

C) Binary mode saves memory occupied by contents.

D) All the above

Answer [=] D

16) What is the syntax for writing a file in C using binary mode.?

FILE *fp;

A)

fp=fopen("abc.txt","wr");

B)

fp=fopen("abc.txt","wb");

C)

fp=fopen("abc.txt","wbin");

D)

fp=fopen("abc.txt","b");

Answer [=] B

17) What are the C functions used to read or write a file in Text Mode.?

A) fprintf(), fscanf()

B) fread(), fwrite()

C) fprint(), fscan()

D) read(), write()

Answer [=] A

Explanation:

You can even use fputs(). Only strings can read or write instead of integers, float or characters.

18) What are the C functions used to read or write a file in Binary Mode.?

A) fprintf(), fscanf()

B) fread(), rwrite()

C) readf(), writef()

D) printf(), scanf()

Answer [=] B

Explanation:

fwrite(pointer, size, count , filepointer); count=1 usually

fwrite(pointer, size, count , filepointer); 

19) What is the C function used to move current pointer to the beginning of file.?

FILE *fp;

A) rev(fp)

B) rewind(fp)

C) rew(fp)

D) wind(fp)

Answer [=] B

Explanation:

ftell(fp) returns current position of pointer inside FILE.

fseek(fp,0,SEEK_END);
long num=ftell(fp);
//num contains the file size in bytes.

20) Choose a correct syntax for FSCANF and FPRINTF in c language.?

A) fprintf(“format specifier”,variables, fp); fscanf(“format specifier”,variables, fp);

B) fprintf(fp,count,”format specifier”,variables); fscanf(fp,count,”format specifier”,variables);

C) fprintf(fp,”format specifier”,variables); fscanf(fp,”format specifier”,variables);

D) None of the above

Answer [=] C

Explanation:

You can check for end of file contents using EOF.

fscanf()!= EOF
fread() != EOF
fgetc() != EOF
fgets() != NULL
fseek(fp,bytescount,SEEK_SET)
moves pointer to that count location.
Example a binary file is mp3, jpg etc.

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.