DIT - C Functions
Questions No: 1/21

What is the purpose of the return statement in a function?

Questions No: 2/21

A self contained block of statements that perform a coherent task of some kind is called a
A self contained block of statements that perform a coherent task of some kind is called a

Questions No: 3/21

The keyword used to transfer control from a function back to the calling function is

Questions No: 4/21

An array can be passed to a function by
किसी सरणी को फ़ंक्शन द्वारा पास किया जा सकता है

Questions No: 5/21

The data structure used to implement recursive function calls
डेटा संरचना का उपयोग पुनरावर्ती फ़ंक्शन कॉल को लागू करने के लिए किया जाता है

Questions No: 6/21

Which of the following keywords is used to return a value from a function?

Questions No: 7/21

In C, if you pass an array as an argument to a function, what actually gets passed?
C में, यदि आप किसी फ़ंक्शन के तर्क के रूप में एक सरणी पास करते हैं, तो वास्तव में क्या पारित होता है?

Questions No: 8/21

The value obtained in the function is given back to main by using ________ keyword.
फ़ंक्शन में प्राप्त मान को ________ कीवर्ड का उपयोग करके मुख्य रूप से वापस दिया जाता है।

Questions No: 9/21

Recursion is sometimes called
Recursion is sometimes called

Questions No: 10/21

Function isdigit() is defined in ________ header file.
isdigit() फंक्शन किस हैडर फाइल में डिफाइन है

Questions No: 11/21

Header file for the sqrt() function is
Sqrt () फ़ंक्शन के लिए हैडर फ़ाइल है

Questions No: 12/21

How would you round off a value from 1.66 to 2.0?
आप १.६६ से २.० के बीच के मूल्य को कैसे समाप्त करेंगे?

Questions No: 13/21

________ is used to transfer control from a function back to the calling function.
_________ एक फ़ंक्शन से कॉलिंग फ़ंक्शन पर नियंत्रण स्थानांतरित करने के लिए उपयोग किया जाता है

Questions No: 14/21

Which of the following function declaration need not have a return statement in its body?

Questions No: 15/21

Which of the following correctly declares a function in C?

Questions No: 16/21

In the absence of a exit condition in a recursive function, the following error is given
एक पुनरावर्ती फ़ंक्शन में निकास स्थिति की अनुपस्थिति में, निम्नलिखित त्रुटि दी गई है

Questions No: 17/21

The name of all functions end with a
The name of all functions end with a

Questions No: 18/21

The value obtained in the function is given back to main by using ________ keyword?
फ़ंक्शन में प्राप्त मान को ________ कीवर्ड का उपयोग करके मुख्य रूप से वापस दिया जाता है?

Questions No: 19/21

pow(x,y) is used to
pow (x, y) का उपयोग किया जाता है

Questions No: 20/21

Which keyword can be used for coming out of recursion?
पुनरावृत्ति से बाहर आने के लिए किस कीवर्ड का उपयोग किया जा सकता है?

Questions No: 21/21

Which of the following is true about recursion in C?