MCQOPTIONS
Bookmark
Saved Bookmarks
→
C Programming
→
Floating Point Issues in C Programming
→
f(x) = \(\sqrt{9-x^2}\). Find the range of the fu..
1.
f(x) = \(\sqrt{9-x^2}\). Find the range of the function.
A.
R
B.
R+
C.
[-3,3]
D.
[0,3]
Answer» E.
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
In C all functions except can be called recursively.
If is 2 bytes wide.What will be the output of the program?
If a function contains two statements successively, the compiler will generate warnings. Yes/No ?
Will the following functions work?
In a function two statements should never occur.
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> void fun();<br> int main()<br> {<br> void fun();<br> fun();<br> return 0;<br> }<br> void fun()<br> {<br> printf("Hello...");<br> }<br></pre>
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> void N()<br> {<br> printf("Hello...");<br> }<br> void main()<br> {<br> N();<br> }<br></pre>
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> int main()<br> {<br> void funA();<br> void funB()<br> {<br> funA();<br> }<br> funB();<br> }<br> void FunA()<br> {<br> printf("Interview Mania");<br> }<br></pre>
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> void fun();<br> int main()<br> {<br> void fun(int);<br> fun();<br> return 0;<br> }<br> void fun()<br> {<br> printf("200");<br> }<br></pre>
What will be the output of the following C code?<br><pre class="prettyprint lang-c">#include <stdio.h><br> void fun();<br> int main()<br> {<br> void fun(int);<br> fun(100);<br> return 0;<br> }<br> void fun(int n)<br> {<br> printf("200 ");<br> }<br></pre>
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply