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

Strings in C and Char Arrays Tutorial and MCQ

Strings in C

Table of Contents

  • Strings Char Arrays in C
    • Strings in C
    • Example 1: Printing a String with %C
  • Strings in C examples
    • Example 2: Printing a String with %S
  • Strings in C examples
    • Example 3: Reading a String with %S
  • Strings in C
    • Example 4: Reading a String with Spaces with GETS() function & PUTS() to print
    • String Assignments in c
  • String Arrays or Multidimensional Arrays in C
    • Example 1: String Array – Fixed Length Strings
    • Example 2: String Array – Variable Length Strings
  • C String Library Functions Overview
  • Strings in C MCQ
    • 1) What is a String in C Language.?
    • 10) What is the maximum length of a C String.?

Learn Strings in C and Char Arrays Tutorial on Basics to attend job placement exams, interview questions, college viva and Lab Tests

String is just like an array of elements of character (char) data type. Every valid string in c programming language must end with a NULL character or ‘\0’. ASCII value of a NULL character is 48. Without null character at the end, array is just an array of characters but not STRING.

Strings Char Arrays in C

C language provide ‘char’ data type to hold Alphabets and Special characters. Size of a single character is 1 Byte.

Let us examine a character array and see how to turn it in to a string. ‘string’ is not a keyword.

char names[] = {'a','b','c','d'};

we shall turn this character array to string by adding a NULL character at the end. NULL character is also called SLASH ZERO. You can use DOUBLE QUOTES to create a STRING.

char names[] = {'a','b','c','d', '\0'}; //SLASH ZERO
          (or)
char names[] = "abcd";
C Programming Strings Char Arrays Tutorial

What is the need to add SLASH ZERO at the end ?

In practice, you will be using String Library Functions to know Length of a String, Copy Strings, Concatenate Strings and more. All these functions want to know after what character string ends in memory. This NULL character tells these string functions about end of a string.

Note: SIZEOF() function always gives the Size of a STRING including ‘\0’. STELEN() function gives the Length of a string counting number of characters. So the size of a string is one more than the length of that string.

Strings in C

Example 1: Printing a String with %C

int main()
{
  char name[] = {'j','e','r','r','y','\0'};
  int i=0;
  while(name[i] != '\0')
  {
    printf("%c", name[i]);
    i++;
  }
  return 9;
}

We check each character against a NULL character. It it is not NULL we print it using “%c” format specifier.

Strings in C examples

Example 2: Printing a String with %S

int main()
{
  char name[] = {'j','e','r','r','y','\0'};
  printf("%s", name);
  return 9;
}

“%S” format specifier prints the whole string in one go. It will not print NULL character.

Strings in C examples

Example 3: Reading a String with %S

int main()
{
  char name[10];
  printf("ENTER a name..\n");
  scanf("%s", name);
  printf("Entered=%s", name);
  return 9;
}
//INPUT > Enter a name..
//TOMCAT
//OUTPUT: TOMCAT

Strings in C

Example 4: Reading a String with Spaces with GETS() function & PUTS() to print

You can not read a string with spaces using %S format specifier. So we use predefined Library function GETS() to read a Line of Text With Spaces.

#include<string.h>
int main()
{
  char name[10];
  printf("ENTER a name..\n");
  gets(name);
  puts(name);
  return 9;
}
//INPUT: > ENTER a name..
//TOM CAT
//Entered=TOM CAT

String Assignments in c

Just like assigning the value of one variable to another variable, you can not assign one String Variable to another.

Why do you want to assign one variable to another ?

Answer is that you want to copy the value of 1st variable to the second variable.

So use STRCPY() string library function to copy string value and assign to the second variable.

#include<string.h>
int main()
{
  char str1[] = "Hello";
  char str2[10];
  char str3[10];
  str2 = str1; //Compiler error;

  strcpy(str3, str1); //works

  return 9;
}

You can not change the value of whole string to another string constant. You can only change individual characters of a string. If you use a char pointer, you can change the string pointed by it. Let us try changing the value of a string variable in below example.

int main()
{
  char str1[] = "Hello";
  str1[1] = 'a'; // You can change individual characters
  str1 = "AFRICA"; //Error. You can not change
  char *p;
  p = "JIMMY";
  p = "TOMMY"; //works. You are using pointers.
  return 8;
}

String Arrays or Multidimensional Arrays in C

C language allows us to create Array of Strings or String Multidimensional Arrays. What developers use are just 2D String arrays that hold a number of 1D Char Array Strings.

Example 1: String Array – Fixed Length Strings

If you use plain String array without pointers, you can not change the maximum length of strings inside Array of Strings.

int main()
{
  char names[5][10] = { "ARICA", "JAPAN", "SEA", "EGGS", "RIVERS" };
  printf("%s", names[0]);
  printf(" %s, names[1]);
  names[0] = "PENCIL"; //ERROR. CAN NOT CHANGE.
  return 9;
}

Example 2: String Array – Variable Length Strings

You change maximum length of Strings if you use CHARACTER POINTER to hold address of STRINGS. These STRINGS can be stored anywhere in memory. There is no need to allocate contiguous memory locations to store strings or char arrays in this pointer concept. Also you can reinitialize strings with other strings.

int main()
{
  char *names[5] = { "ARICA", "JAPAN", "SEA", "EGGS", "RIVERS" };
  printf("%s", names[0]);
  name[0] = "PEN AFRICA"; // CAN CHANGE
  printf(" %s, names[0]);

  return 9;
}

Note: You can not use SCANF() function to scan strings using a CHAR POINTER like *name[0].

C String Library Functions Overview

C strings help us do some most common string operations like COPY, CONCATENATION, UPPERCASE, LOWERCASE and more. Here is a list of STRING function we most use.

SNOFunctionsDescription
1strlen(source)Returns length of a string without counting NULL character
2strcpy(target, source)Copies contents of one string to the other. Return type is void.
3strcat(target, source)Appends new string to the end of SOURCE string. Return type is void.
4strcmp(string1, string2)Compares string1 with string 2 and returns a number. >0 if greater, 0 for equal and <0  if string1 is less than string2.
5strrevv(string)Reverses a string and returns.
6strupr(string)Converts a string to uppercase and returns
7strlwr(string)Converts a string to lowercase and returns
8toupr(char)Converts a character to uppercase and returns
9tolwr(char)Converts a character to lowercase and returns
10strchr(string, char1)Finds first occurrence of a character in the given string
11strstr(string, str1)Finds first occurrence of a string str1 in a given string.
12strrchr(string, char1)Finds last occurrence of a character in a given string.
13strrstr(string, str1)Finds last occurrence of a string str1 , in a given string.
[WpProQuiz 37]

Strings in C MCQ

1) What is a String in C Language.?

A) String is a new Data Type in C

B) String is an array of Characters with null character as the last element of array.

C) String is an array of Characters with null character as the first element of array

D) String is an array of Integers with 0 as the last element of array.

Answer [=] B

2) Choose a correct statement about C String.

char ary[]="Hello..!";

A) Character array, ary is a string.

B) ary has no Null character at the end

C) String size is not mentioned

D) String can not contain special characters.

Answer [=] A

Explanation:

It is a simple way of creating a C String. You can also define it like the below. \0 is mandatory in this version. char ary[] = {‘h’,’e’,’l’,’l’,’o’,’\0′};

3) What is the Format specifier used to print a String or Character array in C Printf or Scanf function.?

A) %c

B) %C

C) %s

D) %w

Answer [=] C

Explanation:

char ary[]="Hello..!";
printf("%s",ary);

4) What is the output of C Program with Strings.?

int main()
{
    char ary[]="Discovery Channel";
    printf("%s",ary);
    return 0;
}

A) D

B) Discovery Channel

C) Discovery

D) Compiler error

Answer [=] B

Explanation:

%s prints the while character array in one go.

5) What is the output of C Program with Strings.?

int main()
{
    char str[]={'g','l','o','b','e'};
    printf("%s",str);
    return 0;
}

A) g

B) globe

C) globe\0

D) None of the above

Answer [=] D

Explanation:

Notice that you have not added the last character \0 in the char array. So it is not a string. It can not know the end of string. So it may print string with some garbage values at the end.

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

int main()
{
    char str[]={'g','l','o','b','y','\0'};
    printf("%s",str);
    return 0;
}

A) g

B) globe

C) globe\0

D) Compiler error

Answer [=] B

Explanation:

Adding a NULL or \0 at the end is a correct way of representing a C string. You can simple use char str[]=”globy”. It is same as above.

7) How do you convert this char array to string.?

char str[]={'g','l','o','b','y'};

A) str[5] = 0;

B) str[5] = ‘\0’

C) str[]={‘g’,’l’,’o’,’b’,’y’,’\0′};

D) All the above

Answer [=] D

8) What is the output of C Program.?

int main()
{
    int str[]={'g','l','o','b','y'};
    printf("A%c ",str);
    printf("A%s ",str);
    printf("A%c ",str[0]);
    return 0;
}

A) A A A

B) A Ag Ag

C) A*randomchar* Ag Ag

D) Compiler error

Answer [=] C

Explanation:

Notice that STR is not a string as it is not a char array with null at the end. So STR is the address of array which is converted to Char by %c. If you use %s, it prints the first number converted to char.

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

int main()
{
    char str[]={"C","A","T","\0"};
    printf("%s",str);
    return 0;
}

A) C

B) CAT

C) CAT\0

D) Compiler error

Answer [=] D

Explanation:

Yes. You can not use Double Quotes ” to represent a single character. Correct way is ‘C‘ not “C“. You should use Single Quotes around a single character constant.

10) What is the maximum length of a C String.?

A) 32 characters

B) 64 characters

C) 256 characters

D) None of the above

Answer [=] D

Explanation:

Maximum size of a C String is dependent on implemented PC memory. C does not restrict C array size or String Length.

11) What is the output of C program with strings.?

int main()
{
    char str1[]="JOHN";
    char str2[20];
    str2= str1;
    printf("%s",str2);
    return 0;
}

A) JOHN

B) J

C) JOHN\0

D) Compiler error

Answer [=] D

Explanation:

You can not assign one string to the other. It is an error. “

error: assignment to expression with array type

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

int main()
{
    char str[25];
    scanf("%s", str);
    printf("%s",str);
    return 0;
}
//input: South Africa

A) South

B) South Africa

C) S

D) Compiler error

Answer [=] A

Explanation:

SCANF can not accept a string with spaces or tabs. So SCANF takes only South into STR.

13) What is the output of C program with strings.?

int main()
{
    char str[2];
    scanf("%s", str);
    printf("%s",str);
    return 0;
}
//Input: South

A) So

B) South

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

In C Arrays, Overflow or Out of Bounds is not checked properly. It is your responsibility to check.

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

int main()
{
    char str[2];
    int i=0;
    scanf("%s", str);
    while(str[i] != '\0')
    {
        printf("%c", str[i]);
        i++;
    }
    return 0;
}
//Input: KLMN

A) KL

B) KLMN

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

It always overwrites the next memory locations of the array. It is your responsibility to check bounds. Scanf automatically adds a ‘\0’ at the end of entered string.

15) What is the output of C Program with String Pointer.?

int main()
{
    char country[]="BRAZIL";
    char *ptr;
    ptr=country;
    while(*ptr != '\0')
    {
        printf("%c", *ptr);
        ptr++;
    }
    return 0;
}

A) B

B) BRAZIL

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

*ptr != ‘\0’ is the main part of traversing a C String.

16) How do you accept a Multi Word Input in C Language.?

A) SCANF

B) GETS

C) GETC

D) FINDS

Answer [=] B

Explanation:

Yes. gets(str) fills the array str with the input given by the user.

17) Choose a correct C Statement about Strings.

A) PRINTF is capable of printing a multi word string.

B) PUTS is capable of printing a multi word string.

C) GETS is capable of accepting a multi word string from console or command prompt

D) All the above

Answer [=] D

18) What is the output of C Program with String Pointers.?

int main()
{
    char *p1 = "GOAT";
    char *p2;
    p2 = p1;
    printf("%s", p2);
}

A) G

B) GOAT

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

Yes. You can assign one String pointer to another. But you can not assign a normal character array variable to other like STR2 = STR1. It is an error.

19) What is the output of C Program with String arrays.?

int main()
{
    char *p1 = "GOAT";
    char *p2;
    p2 = p1;
    p2="ANT";
    printf("%s", p1);
}

A) ANT

B) GOAT

C) G

D) A

Answer [=] B

Explanation:

*p1 and *p2 are completely pointing different memory locations. So, p1 value is not touched.

20) What is the output of C Program with String Arrays.?

int main()
{
    char p[] = "GODZILLA";
    int i=0;
    while(p[i] != '\0')
    {
        printf("%c",*(p+i));
        i++;
    }
}

A) G

B) GODZILLA

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

Notice the usage of *(p+i). Remember that, p[i] == *(p+i) == *(i+p) == i[p]

Write a comment Cancel reply

You must be logged in to post a comment.

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

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

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

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

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

  • उत्तर – चीन

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

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

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

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

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

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

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

  • उत्तर – 18

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

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

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

  • उत्तर – 3.85%

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

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

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

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

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

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

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

  • उत्तर – 6.44%

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

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

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

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

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

  • उत्तर – 14

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

  • उत्तर – इसरो

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

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

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

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

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

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

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

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

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

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

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

  • उत्तर – भारत

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

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

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

  • उत्तर – RadioGPT

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

  • उत्तर – मंगल

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

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

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

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

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

  • उत्तर – भारत

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

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

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

  • उत्तर – केरल

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

  • उत्तर – यूके

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

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

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

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

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

  • उत्तर – भारत

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

  • उत्तर – WMO

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

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

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

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

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

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

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

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

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

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

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

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

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

  • उत्तर – भारत

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

  • उत्तर – DRDO

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

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

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

  • उत्तर – ईरान

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

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

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

  • उत्तर – 45.5%

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

  • उत्तर – DRDO

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

  • उत्तर – सोना

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

  • उत्तर – UNICEF- ILO

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

  • उत्तर – NTPC

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

  • उत्तर – CFA Institute

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

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

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

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

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

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

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

  • उत्तर – यूके

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

  • उत्तर – Axis Bank

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

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

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

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

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

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

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

  • उत्तर – भारत

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

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

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

  • उत्तर – 42

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

  • उत्तर – केरल

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

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

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

  • उत्तर – NSE

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

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

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

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

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

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

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

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

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

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

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

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

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

  • उत्तर – असम

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

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

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

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

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

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

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

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

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

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

Recent Posts

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

onlineexamguide

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

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

Quick links

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

Follow us

Free Online Mock Test

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

Search

Learn and Earn

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

Contact us

For any queries

Email us on - admin@onlineexamguide.com

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

Insert/edit link

Enter the destination URL

Or link to existing content

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