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 and Character Arrays in C Tutorial And MCQ

Arrays in C

Table of Contents

    • Arrays in C
    • Strings and Character Arrays in C
    • Arrays in C
    • Example 1: Printing a String with %C
    • C Programming examples
    • Example 2: Printing a String with %S
    • Strings Char Arrays
    • Example 3: Reading a String with %S
    • Example 4: Reading a String with Spaces with GETS() function & PUTS() to print
    • C String Assignments
  • 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
  • Arrays in C Important Questions
    • 1) What is the ASCII value of NULL or \0.?
    • 2) A character constant is enclosed by.?
    • 4) A C string elements are always stored in.?

Learn Arrays in C MCQ Questions and Answers 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.

Arrays in C

Strings and Character 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";

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

You’ll use the String Library Functions in practise to find out a string’s length, copy strings, concatenate strings, and more. All of these functions seek to determine the character string’s final position in memory. These string functions are informed about the end of a string by the NULL character.

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.

Arrays 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.

C Programming 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 Char Arrays

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

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

C String Assignments

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 38]

Arrays in C Important Questions

1) What is the ASCII value of NULL or \0.?

A) 0

B) 1

C) 10

D) 49

Answer [=] A

Explanation:

ASCII value of NULL character is ZERO 0.

2) A character constant is enclosed by.?

A) Left Single Quotes

B) Right Single Quotes

C) Double Quotes

D) None of the above

Answer [=] B

Explanation:

char ary[] = {‘a’,’b’,’\0′}.

char bry[] = {`a`,`b`,`c`}; is wrong as it uses Left Single Quotes.

3) Choose a correct statement about C String.

A) A string is a group of characters enclosed by double quotes.

B) If a string is defined with double quotes, NULL is automatically added at the end.

C) Size of a string is without counting NULL character at the end

D) All the above

Answer [=] D

4) A C string elements are always stored in.?

A) Random memory locations

B) Alternate memory locations

C) Sequential memory locations

D) None of the above

Answer [=] C

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

int main()
{
    char var='b';
    printf("%d ", sizeof("a"));
    printf("%d ", sizeof('b'));
    printf("%d ", sizeof(10));
    printf("%d ", sizeof(var));
}
//int size is 2 bytes

A) 1 1 1 1

B) 2 1 2 1

C) 2 2 2 1

D) 2 2 2 2

Answer [=] C

Explanation:

sizeof(‘b’) is 2 because ‘b’ is converted to ASCII number which is integer. sizeof(var) is printed as expected. size(“a”) is two because NULL occupies 1 byte.

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

int main()
{
    char str[]="JACKIE CHAN";
    int i=0;
    while(str[i] != 0)
    {
        printf("%c",str[i]);
        i++;
    }
    return 0;
}

A) JJJJJJ JJJJ

B) JACKIE CHAN

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

Yes. You can check for end of a string with ASCII ZERO 0. ASCII value of NULL or \0 is ZERO.

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

int main()
{
    char str[]="ANDAMAN";
    int i=0;
    while(str[i] != '\0')
    {
        printf("%c",str[i]);
        i++;
    }
    return 0;
}

A) AAAAAAA

B) ANDAMAN

C) Compiler error

D) None of the above

Answer [=] B

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

int main()
{
    char str[]="MALDIVES";
    printf("%s ",str);
    puts(str);
    return 0;
}

A) MALDIVES

B) MALDIVES MALDIVES

C) M MALDIVES

D) None of the above

Answer [=] B

Explanation:

PUTS prints strings without any format specifier like %s.

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

int main()
{
    char str[3]="SUNDAY";
    printf("%s",str);
}

A) SUN

B) SUNgarbagevalues

C) compiler error

D) None of the above

Answer [=] B

Explanation:

You get C warning.

warning: initializer-string for array of chars is too long

10) Choose a correct C statement about String functions.?

A) int n=strlen(“abc”) returns 3.

B) strupr(“abc”) returns ABC

C) strlwr(“Abc”) returns abc

D) All the above

Answer [=] D

11) Choose a correct C statement about String functions.?

A) strrev(“abcD”) returns Dcba.

B) strcmp(“abc”, “bcd”) returns a negative number

C) strcmp(“234″,”123”) returns a positive number

D) All the above

Answer [=] D

12) Choose a correct C statement about String functions.?

A) toupper(‘a’) returns A

B) tolower(‘D’) returns d.

C) strcmp(“123″,”12345”) returns a negative number

D) All the above

Answer [=] D

13) What is the output of C program.?

int main()
{
    char str1[]="JAMES,";
    char str2[15]="BOND ";
    strcat(str2,str1);
    printf("%s",str2);
    printf("%s",str1);
}

A) JAMES BOND,JAMES,

B) JAMES,JAMES,

C) BOND JAMES,JAMES,

D) None of the above

Answer [=] C

Explanation:

Here str1 is not affected by strcat function. STRCAT(destination, source).

14) What is the output of C program.?

int main()
{
    printf("%c","HUMPTY"[2]);
}

A) U

B) M

C) HUMPTY

D) None of the above

Answer [=] B

15) What is the output of C program.?

int main()
{
    char str1[] = "FIRST";
    char str2[20];
    strcpy(str2,str1);
    printf("%s %s ",str1,str2);
    printf("%d", (str1!=str2));
    printf("%d", strcmp(str1,str2));
    return 0;
}

A) FIRST FIRST 0 0

B) FIRST FIRST 1 1

C) FIRST FIRST 1 0

D) FIRST FIRST 0 1

Answer [=] C

Explanation:

STRCPY copies STR1 value to another memory location pointed by STR2. Only STR1 and STR2 values are same but not memory locations.

16) What is the output of C program with array of pointers to strings.?

int main()
{
    char *code[]={"IN","USA","K"};
    printf("%s", code[1]);
    return 0;
}

A) IN

B) U

C) USA

D) Compiler error

Answer [=] C

Explanation:

It is an array of arrays. Using an array of pointers to strings, we can save memory. Different strings can have different lengths. Other wise, max length of any element should be the length of all elements. It wastes space.

17) What is the output of C program with String arrays.?

int main()
{
    char code[3][4]={"IN","USA","K"};
    printf("%s", code[1]);
    return 0;
}

A) IN

B) USA

C) K

D) Compiler error

Answer [=] B

Explanation:

Here, we have not used pointers to strings. So a total of 3×4=12 bytes is allocated. Using a pointers to strings, we can allocate just 3+4+2=9 bytes. Extra byte stores NULL or \0. USA+null = 4 characters.

18) What is the output of C program with array of pointers to strings.?

int main()
{
    char *code[2];
    code[0]= (char *)malloc(4);
    strcpy(code[0], "IND");
    printf("%s", code[0]);
    return 0;
}

A) I

B) IN

C) IND

D) Compiler error

Answer [=] C

Explanation:

If you use a pointer to a string rather than char str[, you should allocate memory using the calloc() or malloc() functions before writing something like “IND” into it. Your results would be unexpected otherwise.

19) What is actually passed to PRINTF or SCANF functions.?

A) Value of String

B) Address of String

C) End address of String

D) Integer equivalent value of String

Answer [=] B

Explanation:

printf(“Hello”) takes the address of “Hello” and processes till it reaches NULL or \0.

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

int main()
{
    char *code="JUMPER";
    if(code[6]=='\o')
    {
        printf("SUMMER");
    }
    else
    {
        printf("WINTER");
    }
    return 0;
}

A) SUMMER

B) WINTER

C) Compiler error

D) None of the above

Answer [=] B

Explanation:

SLASH O is different from SLASH ZERO. Use ‘\0’ to get end of string.

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.