Explore topic-wise InterviewSolutions in .

This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.

2951.

एक फंक्शन लिखिए, जो किसी संख्याओं की सूची में से सबसे बड़े तत्त्व को लौटाता हो।

Answer»

Answer:

int largest(int arr[], int n)  

{  

   int i;  

     

   // Initialize MAXIMUM element  

   int max = arr[0];  

 

   // Traverse array elements  

   // from second and compare  

   // every element with current max  

   for (i = 1; i < n; i++)  

       if (arr[i] > max)  

           max = arr[i];  

 

   return max;  

}  

 

// Driver Code  

int main()  

{  

   int arr[] = {10, 324, 45, 90, 9808};  

   int n = sizeof(arr) / sizeof(arr[0]);  

   cout << "Largest in given array is "  

        << largest(arr, n);  

   return 0;  

}

this will be the output .....plz run in python ...

Largest in given array is 9808

Explanation:

HOPE THIS HELPS U MY FRD !

PLZ MARK AS BRAINLIEST !

>>>>>>>THANK U<<<<<

#KEEP SMILING :)

2952.

यदि किसी फाइल में से आपको डाटा पढ़ना है, तो उसे किस मोड में खोलेंगे?(क) इनपुट(ख) आउटपुट (ग) अपेण्ड(घ) इनमें से कोई नहीं

Answer»

EXPLANATION:

we should be DONE for this by OUTPUT

2953.

निम्नलिखित पर टिप्पणी लिखिए (क) रिटर्न स्टेटमेंट (Return statement) (ख) स्थानीय चर (LocalVarables) (ग) मूल डाटा टाइप (Bas Data Type) (घ) नियतांक(Constants) (ड.) कैरेक्टर समूह (Character Set) या सी-भाषा के सन्दर्भ में डेटा टाइप को समझाइए।

Answer»

HEYA MATE YOUR ANSWER IS

? या फाइल किसे कहते हैं? 'सी' भाषा के गेट 'सी' व पुट 'सी' फंक्शन को समझाइए। या 'सी' में फाइल की व्याख्या कीजिए

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2954.

निम्नलिखित पर टिप्पणी लिखिए (क) अंकगणितीय ऑपरेटर(Arithmeticoperators) (ख) सम्बन्धात्मक ऑपरेटर(Relational Operators) (ग) तार्किक ऑपरेटर(Logical Operators) (घ) निर्धारण ऑपरेटर(Assignment Operators) (ङ) वृद्धि तथा कमी ऑपरेटर(Increment and Decrement operators) या सी-भाषा के सन्दर्भ में लॉजिकल ऑपरेटर्स को समझाइए।

Answer»

Answer:

here's your answer

mark it as brainliest..

Explanation:

Arithmetic operators are the symbols that represent arithmetic math operations. Examples include + (addition operator), - (subtraction operator), * (multiplication operator), and / (division operator)

In computer science, a relational operator is a programming language CONSTRUCT or operator that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 = 5) and inequalities (e.g., 4 ≥ 3).

logical operation is a special symbol or word that CONNECTS two or more phrases of information. It is most often USED to test whether a certain relationship between the phrases is true or false.

An assignment operator is the operator used to ASSIGN a new value to a variable, property, event or indexer element in C# programming language. Assignment operators can also be used for logical operations such as bitwise logical operations or operations on integral operands and Boolean operands.

Increment and decrement operators are unary operators that add or subtract one, to or from their operand, respectively. They are commonly implemented in imperative programming languages. ... The increment operator increases, and the decrement operator DECREASES, the value of its operand by 1.

2955.

निम्नलिखित में से किस मीडिया में स्टोर की गयी फाइलें अनिवार्य रूप से क्रमिक होती हैं?(क) चुम्बकीय टेप(ख) हार्ड डिस्क(ग) दोनों(घ) इनमें से कोई नहीं

Answer»

EXPLANATION:

हार्ड डिस्क

HOPE this MAY HELP U...!

2956.

एक फंक्शन लिखिए, जो दो संख्याओं को पढ़कर उनका औसत लौटाता हो।

Answer»

ANSWER:

ASK in ENGLISH I'll GIVE you the answer

2957.

रिकर्सिव फंक्शन क्या होते हैं? इनका क्या उपयोग है?

Answer»

ANSWER:

ASK in english

Explanation:

I'll GIVE you the answer

2958.

फैक्शनों को स्ट्रिंग किस प्रकार पास की जाती है? उदाहरण सहित समझाइए।

Answer»

ANSWER:

COMMONLY used String functions in C/C++ with Examples. Strings in C: Strings are defined as an array of characters. The difference between a character array and a string is the string is terminated with a special character '\0'. It will append copy of the source string in the destination string.

Passing Strings to Functions

#include

void displayString(char str[]);

int main()

{

char str[50];

printf("Enter string: ");

gets(str);

displayString(str); // Passing string c to function.

In C programming, a string is a sequence of characters terminated with a null character \0 . For example: char c[] = "c string"; When the compiler encounters a sequence of characters enclosed in the DOUBLE quotation marks, it appends a null character \0 at the end by default.

Explanation:

HOPE THIS HELPS U MY FRD !

PLZ MARK AS BRAINLIEST !

>>>>>>THANK U<<<<<

#keep smiling :)

2959.

Define plagiarism??​

Answer»

Explanation:

Plagiarism is the representation of another AUTHOR's language, THOUGHTS, ideas, or expressions as ONE's own ORIGINAL work. Plagiarism is considered academic dishonesty and a breach of JOURNALISTIC ethics.

thank you

2960.

Write the output of the following C++ code. Also, write the name of featureof Object Oriented Programming used in the following program jointly illustrated by the Function 1 to Function 4. void My_fun ( ) // Function 1{for (int I=1 ; I

Answer»

Hey Buddy

Here is the Answer

----------------------------------------

As function with parameters Char, int is called first, so FUNCTION 4 will be executed first

So, output for function 4 is

####

Now function with parameters int, int is called, so function 3 will be executed

Output for function 3

7 14 21

So, output for this code will be

####

7 14 21

Note :- Function overloading is DONE only when

  • Name of functions are same
  • order of parameters are different
  • number of parameters are different

I can help you in JAVA, C, C++, HTML, CSS AND JAVA SCRIPT

Peace

:)

2961.

Please send all the question answer​

Answer»

Explanation:

Geometric modeling tool. B. A cell that points to a drawing object. C ... Which of FOLLOWING is Not one of Excel's what-if FUNCTION? A. Goal SEEK. B. Solver. C. Scenario manager. D. Auto Outline. Answer & SOLUTION Discuss ...

2962.

Plzz answer it fast guysname the three types of views there in the control panel in windows 7​.

Answer»

The Control Panel has been part of Microsoft Windows since Windows 1.0,[1] with each successive version introducing new applets. Beginning with Windows 95, the Control Panel is implemented as a special folder, i.e. the folder does not physically EXIST, but only contains shortcuts to various applets such as Add or Remove Programs and Internet Options. Physically, these applets are stored as .cpl files. For EXAMPLE, the Add or Remove Programs applet is stored under the NAME appwiz.cpl in the SYSTEM32 folder.

In Windows XP, the Control Panel home screen was changed to present a categorized navigation structure reminiscent of navigating a web page. Users can switch between this Category View and the grid-based Classic View through an option that appears on either the LEFT side or top of the window. In Windows Vista and Windows 7, ADDITIONAL layers of navigation were introduced, and the Control Panel window itself became the main interface for editing settings, as opposed to launching separate dialogs.

for more information...

you can search it on Wikipedia

you can find it easily......

2963.

Geetu is an artist. She posts her art work on the internet. One day she comes to know that Shreyas has downloaded one of the paintings that she had posted without the permission. He had further printed that image on an invitation card. Has Shreyas done the right thing? Which right of Geetu has he infringed?​

Answer»

No. SHREYA didn't do the right thing by posting her art WORK without her permission.

This is called Plagiarism.

It refers to the stealing of ONE's creativeness and expressing them in front of others without giving them credit who CREATED it.

Hope you understood!

Cheers:)

2964.

Rashmi has to send an email to Raees. She also wants to send the same e-mail to Vandana but does not want Raees to know about it. Which option out of ‘cc’ or ‘bcc’ should Rashmi use to enter the email address of Vandana?​

Answer»

ANSWER:

VANDANA should use BCC

Explanation:

bcc stands for BLIND CARBON copy. the recipients of the email will receive the email privately, without knowing who else the email was copied to.

2965.

Accept a number and check whether it is a speacial 2 digit number or not

Answer»

ANSWER:

YES it is SOMETHING 4

Explanation:

2966.

Google cloud end points help to migrate the web app to google cloud platform for better performance

Answer»

YES........ALSO FIREBASE

2967.

सी' में उपयोगकर्ता-परिभाषित फंक्शनों को किस प्रकार परिभाषित किया जाता है? उदाहरण सहित समझाइए।

Answer»

EXPLANATION:

ASK in ENGLISH I'll GIVE you the ANSWER

2968.

किसी प्रोग्राम में हैडर फाइलों को लगाना क्यों आवश्यक है?

Answer»

Answer:

The primary purpose of a header file is to propagate declarations to CODE FILES. Header files ALLOW us to put declarations in one LOCATION and then import them wherever we need them. This can save a lot of typing in multi-file programs.

Explanation:

HOPE THIS HELPS U

PLZ MARK AS BRAINLIEST ...

>>>>>THANK U<<<<

#keep smiling :)

2969.

रिटर्न स्टेटमेंट का क्या महत्त्व है? इसका उपयोग उदाहरण सहित बताइए।

Answer»

Answer:

Explanation:

bhai........... return; STATEMENT ham tab use karenge jab void main() yaa phir koi user- defined function me void ke JAGAH KUCH aur DATATYPE (yaani int, float, kaafi) ham use karenge

e.g., int comp(int X, int y )

      {

          int z;

          z= x+y;

          return z;

        }

ye raha

pls mere ko brainliest mark kardo

2970.

फंक्शनों को प्रोग्रामों में किस प्रकार आहूत (call) किया जाता है? उदाहरण सहित बताइए।

Answer»

HEYA MATE YOUR ANSWER IS

चार फंक्शनों के नाम लिखिए एवं किसी एक को समझाइए। या लाइब्रेरी (बिल्ट-इन) फंक्शन क्या होता है? इसके उपयोग लिखिए। या यूजर डिफाइन्ड फंक्शन की आवश्यकता बताइए और इसके उपयोग का उदाहरण दीजिए। या बिल्ट

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2971.

फंक्शनों की नेस्टिंग किस प्रकार की जाती है? उदाहरण सहित समझाइए।

Answer»

FUNCTION can be NESTED

if ONE function is in ANOTHER function.

hope it HELP!

2972.

बिल्ट-इन या लाइब्रेरी फंक्शन क्या होते हैं और ये कितने प्रकार के होते हैं? उदाहरण सहित समझाइए। या लाइब्रेरी फंक्शन किसे कहते हैं? इसके दो प्रकार को विस्तार में लिखिए। या लाइब्रेरी फंक्शन' क्या है? दो लाइबेरी फंक्शनों की कार्य-विधि समझाइए। या लाइब्रेरी फंक्शन पर संक्षिप्त टिप्पणी लिखिए। या लाइब्रेरी फंक्शन्स क्या होते हैं? इनके किन्हीं दो प्रकारों का विस्तृत वर्णन कीजिए। या सी' भाषा में न्यूमेरिक फंक्शन क्या होते हैं? किन्हीं चार को समझाइए।

Answer»

ANSWER:

xibxjxxgix check jct v cup CO chop xxxii FUN fun chunk cubcun ci din xu di FI drop di dll em PBB Gn bu on sbb 9 wu ha drop go

2973.

सी मे फंक्शन क्या होते हैं? ये कितने प्रकार के हैं और कौन-कौन से हैं? या फंक्शन क्या होते हैं? ये कितने प्रकार के होते हैं? 'सी' भाषा के फंक्शन्स प्रयोग करने से क्या लाभ हैं? या फंक्शनों के वर्गीकरण की व्याख्या कीजिए। किन्हीं चार फंक्शनों के नाम लिखिए एवं किसी एक को समझाइए। या लाइब्रेरी (बिल्ट-इन) फंक्शन क्या होता है? इसके उपयोग लिखिए। या यूजर डिफाइन्ड फंक्शन की आवश्यकता बताइए और इसके उपयोग का उदाहरण दीजिए। या बिल्ट-इन फंक्शन एवं उपयोगकर्ता परिभाषित फंक्शन में अन्तर स्पष्ट कीजिए या लाइब्रेरी फंक्शन को उदाहरण सहित बताइए।

Answer»

HEYA MATE YOUR ANSWER IS..

चार फंक्शनों के नाम लिखिए एवं किसी एक को समझाइए। या लाइब्रेरी (बिल्ट-इन) फंक्शन क्या होता है? इसके उपयोग लिखिए। या यूजर डिफाइन्ड फंक्शन की आवश्यकता बताइए और इसके उपयोग का उदाहरण दीजिए। या बिल्ट

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2974.

Main() एक उपयोगकर्ता-परिभाषित फंक्शन है। यह अन्य फंक्शनों से किस प्रकार भिन्न है?

Answer»

I don't KNOW any BODY else to GIVE answer him BACK but

2975.

स्थानीय चर क्या होते हैं? इनका क्या उपयोग है?

Answer»

I don't know any body ELSE to give ANSWER him BACK

2976.

किन्हीं आठ लाइब्रेरी फंक्शनों के नाम लिखिए।

Answer»

HEYA MATE YOUR ANSWER IS

चार फंक्शनों के नाम लिखिए एवं किसी एक को समझाइए। या लाइब्रेरी (बिल्ट-इन) फंक्शन क्या होता है? इसके उपयोग लिखिए। या यूजर डिफाइन्ड फंक्शन की आवश्यकता बताइए और इसके उपयोग का उदाहरण दीजिए। या बिल्ट

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2977.

किसी फंक्शन के अन्दर घोषित किये गये चरों को क्या कहा जाता है?

Answer»

Answer:

ddigxigofohxohxigihcihcihc gxkhdiyxkgdhkx DIVVY jxgxjdj UGH hjjvhcvjv so DUCKING chef hxchcfun fjcfcjv kqgkgw JOVE we've how CCTV

2978.

Which file stream is required for seekp() in c++​

Answer»

OUTPUT STREAM --- OSTREAM::SEEKP()

2979.

किसी फंक्शन का डिफॉल्ट रिटर्न टाइप क्या होता है?

Answer»

HEYA MATE YOUR ANSWER IS

चार फंक्शनों के नाम लिखिए एवं किसी एक को समझाइए। या लाइब्रेरी (बिल्ट-इन) फंक्शन क्या होता है? इसके उपयोग लिखिए। या यूजर डिफाइन्ड फंक्शन की आवश्यकता बताइए और इसके उपयोग का उदाहरण दीजिए। या बिल्ट

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2980.

किसी फंक्शन में कम-से-कम कितने आग्ग्यूमेण्ट होने चाहिए?

Answer»

The maximum NUMBER of ARGUMENTS (and corresponding parameters) is 253 for a single function. Arguments are separated by COMMAS. HOWEVER, the comma is not an operator in this context, and the arguments can be EVALUATED by the compiler in any order.

2981.

फंक्शन SQR() क्या देता है?(क) वर्ग(ख) वर्गमूल(ग) औसत(घ) वर्गों का योग

Answer»

ANSWER:

OPTION C is CORRECT DUDE !

2982.

निम्नलिखित में से कौन-सा बिल्ट-इन फंक्शन है?(क)cos(ख)min(ग)max(घ)average

Answer»

ANSWER:

(क)cos

Explanation:

None.

HOPE IT HELPS

2983.

क्या किसी फंक्शन की परिभाषा में return कथन होना अनिवार्य है?

Answer»

ANSWER:

HA YE JARURI HAI !.. .... ....

2984.

यदि कोई फंक्शन कोई मान नहीं लौटाता तो उसका टाइप क्या दिया जाता है?

Answer»

ANSWER:

VOID MAIN ()

{

}

EXPLANATION:

None.

HOPE IT HELPS

2985.

कोई फंक्शन अधिकतम कितने मान लौटा सकता है?

Answer»

Answer:

here's your answer Mark it as brainliest

Explanation:

You can't return two values. However, you can return a single VALUE that is a struct that contains two values. You can return only ONE thing from a function. EITHER you make a struct which contains all the things you want to return, or you PASS some function parameters by reference.

2986.

फाइल को बंद करने के लिए निम्न में कौन-सा उपयुक्त फंक्शन है?(क) CLOSE(ख) END(ग) EOF(घ) FILE END

Answer»

for CLOSING FILE we USE CLOSE

2987.

लाइब्रेरी फंक्शनों को किस अन्य नाम से भी जाना जाता है?(क) बिल्ट-इन फंक्शन (ख) मानक फंक्शन (ग) मौलिक फंक्शन(घ) इनमें से कोई नहीं

Answer»

ANSWER:

(क) बिल्ट-इन फंक्शन

EXPLANATION:

None.

HOPE IT HELPS

2988.

कोई संख्या अथवा स्ट्रिंग जो किसी फंक्शन को दी जाती है, उसे क्या कहते है(क) फंक्शन(ख) नियतांक (ग) आग्ग्यूमेण्ट(घ) चर

Answer»

ANSWER:

कोई संख्या अथवा स्ट्रिंग जो किसी फंक्शन को दी जाती है, उसे क्या कहते है

(क) फंक्शन

(ख) नियतांक

(ग) आग्ग्यूमेण्ट

(घ) चर✔️✔️

2989.

सी भाषा का प्रयोग करते हुए एक प्रोग्राम लिखिए जो एक स्ट्रिंग में कितने शब्द हैं, बात करें और ये बतायें कि किस शब्द में सबसे अधिक 'अक्षर'।

Answer»

HEYA MATE YOUR ANSWER IS

प्रयोग करते हुए एक प्रोग्राम लिखिए जो एक स्ट्रिंग में कितने शब्द हैं, बात करें और ये बतायें कि

HOPE THIS HELPS ❤️

PLEASE MARK AS BRAINLIEST ❤️❤️

2990.

Study the scripts given below and answer the question.1. What will be the outcome of following script?​

Answer»

When the sprite is clicked on it GOES to the position x:0 y:0 (middle of the stage) facing left. Then it comes to "pen down"MODE or starts drawing. After that it moves 100 steps drawing a blue line then turns 90 degrees left and then waits 1 second. The sprite repeats it for 3 more times making a blue OUTLINED square of 100*100 steps.

2991.

#Considering Python 3.xP=input("Enter Principal amount:")T=input("Enter Time:")if T>10:SI = P*T*10/100 °Celse:SI = 2*8*15/100print("Simple Interest = ",SI)principal amount is 20000 and time is 10 years​

Answer»

According to the PROGRAM.

P = 20000 and T = 10 years

So, Formula used in the program is .

S.I = P*T*15/100

so, At the first STEP ( if statement )

It EVALUATES false because 10 is not GREATER than 10. so it will move to the else block.

so,

S.I = 20000×10×15/100

S.I = 2000 × 15

S.I = 30000

OUPUT: Simple Interest = 30000

2992.

सी-भाषा में एक प्रोग्राम लिखिए, जो एक से बीस तक की सभी संख्याओं का योग छापे। इस प्रोग्राम का आउटपुट क्या होगा? वह भी लिखिए।

Answer»

ANSWER:

प्रोग्राम का आउटपुट क्या होगा? वह भी लिखिए। ... में एक प्रोग्राम लिखिए, जो एक से बीस तक की सभी संख्याओं का योग छापे।

2993.

एक प्रोग्राम लिखिए, जो किसी मीटिंग को पढ़कर उसे उल्टे क्रम में छापता हो (इसमें strev फंक्शन का उपयोग मत कीजिए)।

Answer»

एक प्रोग्राम लिखिए, जो किसी मीटिंग को पढ़कर उसे उल्टे क्रम में छापता हो

Explanation:

C में प्रोग्राम को रिवर्स ऑर्डर में एक स्ट्रिंग प्रिंट करने के लिए।

#include

#include

VOID main()

{

  char STR1[100], tmp;

  INT l, lind, rind,i;

      printf("\n\nPrint a string in reverse ORDER:\n ");

      printf("-------------------------------------\n");

  printf("Input a string to reverse : ");

  scanf("%s", str1);

  l = strlen(str1);

  lind = 0;

  rind = l-1;

for(i=lind;i

      {

      tmp = str1[i];

      str1[i] = str1[rind];

      str1[rind] = tmp;

      rind--;

  }

  printf("Reversed string is: %s\n\n", str1);

}

OUTPUT

Print a string in reverse order:                  

-------------------------------------                                                              

Input a string to reverse : Welcome                                                 Reversed string is: emocleW

2994.

स्ट्रिंग सम्बन्धी फंक्शनों के उपयोग उदाहरण सहित समझाइए। या सी' भाषा के किन्हीं दो स्ट्रिंग फंक्शनों को समझाइए। या stremp() तथा strepy() फंक्शनों का उदाहरण सहित वर्णन कीजिए एवं इनके बीच अन्तर स्पष्ट कीजिए। या स्ट्रिंग मैनीपुलेशन से सम्बन्धित प्रमुख चार फंक्शनों के नाम लिखिए एवं इन्हें समझाइए या किन्हीं दो स्ट्रिंग फंक्शन को उदाहरण के साथ लिखिए।

Answer»

ANSWER:

so SORRY I am can't WRITE HINDI. sambadi hopayo

2995.

C भाषा में एक प्रोग्राम लिखिए, जो प्रदत 1O सख्या पड़कर उनको उलटे क्रम में छापे

Answer»

C भाषा में एक प्रोग्राम लिखिए, जो प्रदत 1O सख्या पड़कर उनको उलटे क्रम में छापे

Explanation:

रिवर्स ऑर्डर में तत्वों को प्रिंट करने के लिए सी प्रोग्राम।

#include

#define MAX_SIZE 50     // Defines maximum size of array

int main()

{

   int arr[MAX_SIZE];

   int size, i;

   /* Input size of array */

   PRINTF("Enter size of the array: ");

   scanf("%d", &size);

   /* Input array ELEMENTS */

   printf("Enter elements in array: ");

   for(i=0; i

   {

       scanf("%d", &arr[i]);

   }

    //Print array in reversed order

   printf("\nArray in reverse order: ");

   for(i = size-1; i>=0; i--)

   {

       printf("%d\t", arr[i]);

   }

   return 0;

}

Output

Enter size of the array: 10

Enter elements in array: 10 5 16 35 50 45 11 67 90 32

Array in reverse order:  32 90 67 11 45 50 35 16 5 10

2996.

वर्णों पूरा गणितीय क्रियाएँ किस प्रकार की जा सकती हैं? उदाहरण सहित समझाइए।

Answer»

ANSWER:

so SORRY I am can't WRITE HINDI. pura

2997.

एक प्रोग्राम लिखिए, जो दो स्टुिगों को मिलाकर एक करता हो और उन्हें छापता हो।

Answer»

ANSWER:

ऐसा प्रोग्राम लिखिए, जो दो स्टिगों की ... को मिलाकर एक करता हो और उन्हें छापता हो।

2998.

एक ऐसा प्रोग्राम लिखिए, जो दो स्टिगों की आपस में तुलना करता हो और यदि वे समान पायी जाती है, तो उस मान को तीसरी स्टरिंग में स्टोर करता हो अन्यथा उनको जोड़कर उनका मान तीसरी स्टरिग में स्टोर करता हो। अन्त में सभी स्ट्रिंग को उनकी लम्बाई सहित छापता हो।

Answer»

ANSWER:

SORRY but I can't UNDERSTAND

2999.

एक प्रोग्राम लिखिए जो किसी नाम को पूरा पढ़ता हो; जैसे- Vinod Kumar Saxena' और उसे इस रूप में संक्षिप्त करके छापता हो; जैसे-v.K.Saxena'.

Answer»

Answer:

so SORRY I am can't write HINDI VINOD

3000.

एक ऐसा प्रोग्राम लिखिए, जो किसी नाम के अक्षरों को उनके समतुल्य आस्की पूर्णाकों में बदलकर छापता हो।

Answer»

ANSWER:

so SORRY I am can't WRITE Hindi. nam bodala