Online Tests and Exams on all Engineering Subjects, Programming Languages such as C, C++, Java, Python, etc., as well as School Subjects!
Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! /* * C program to demonstrate pass by Value. */ #include <stdio.h> voidswap(inta,intb) { inttemp=a; a=b; b=temp; } intmain() { inta=10; ...
c) Compile time error d) Run time error View Answer advertisement 2. What will be the output of the following C code? Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! #include <stdio.h> voidmain() { intk=8; intm=7; k<m?k=k+1:m=m+1; printf...
c) Error d) 63 View Answer Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! 5. What will be the output of the following C++ code? #include <iostream> #include <string> #include <sstream> usingnamespacestd; ...
c) If S is a region d) All of the mentioned View Answer Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! 6. Let R be a subset of pixels in an image. How can we define the contour of R?
On little-endian systems, lower-order bytes precede higher-order bytes. On big-endian system, higher-order bytes precede lower-order bytes. The bytes are listed in order from the byte at index 0 to the byte at index 3. Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. ...
Sanfoundry Certification Contest of the Month is Live. 100+ Subjects. Participate Now! <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddin...
c) throw d) catch View Answer Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! 6. What will be the output of the following Java program? classexception_handling { publicstaticvoidmain(Stringargs[])
c) Nitrogen, phosphorus, potassium d) Potassium, phosphorus and zinc View Answer Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! 6. A fluid milk product that contains at least 8.25% nonfat milk solids and no more than 0.5 gram of fat in a single serving...
Sanfoundry Certification Contestof the Month is Live. 100+ Subjects. Participate Now! Otherwise, if the condition is false, then execute the elseif condition statement. Check the value of ‘disc’ variable is equal to 0. If the condition is true then roots are real and equal. Compute the ...