| Back to Questions Page |
| |
| Question |
how to generate Question paper and
how to save pattern of question paper |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | To generate Question paper like online Question this is very
easy. By using the tools like option button ,label and check
box . if want to make a question means that is write in the
label and the answers are write in option button after
selecting the answer when user click Submit button (command
button) this automatically saved in the database the staff
or who is conducting the examination he can access the
database to retrieve the answer  |
| Mohanraj.rvscas |
| |
| |
| Question |
Write a code snippets to find greatest and least of any
number of inputs without taking the help of array |
Rank |
Answer Posted By |
|
Question Submitted By :: Arup Ratan Banerjee |
| This Interview Question Asked @ Wipro , Infosys |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | #include <stdio.h>
#include <conio.h>
void main(void)
{
unsigned int max = 0; unsigned int min = -1;unsigned int
wish = 1;
while(wish)
{
printf("\nEnter The Number sequence ( 0 to terminate ) . .
. ");
scanf("%d",&wish);
if(wish > max) max = wish;
if(wish < min) min = wish;
}
printf(" Max = %u Min = %u ",max,min );
}  |
| Sundar |
| |
| |
|
| |
|
Back to Questions Page |