One person travelled 4 laps with the speed of 10, 20,40 ( or 30) and 60 kmph and what is the average speed.
Like one student takes 20 mins if he go with speed 15kmph and at what speed he should go to reach in 15 mins (nos are not same)
1 Crore+ students have signed up on EduRev. Have you? Download the App |
In A,B,C are having some marbles with each of them. A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A, B, and C have equal number of marbles.
Q. If x,y,z are the marbles initially with A,B,C respectively. Then the number of marbles B have at the end
In A,B,C are having some marbles with each of them. A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A, B, and C have equal number of marbles.
Q. If the total number of marbles are 72, then the number of marbles with A at the starting
If a car starts from A towards B with some velocity. Due to some problem in the engine after travelling 30km, the car goes with 4/5 th of its actual velocity The car reaches B 45 min later to the actual time.If the car engine fails ofter travelling 45km, the car reaches the destination B 36min late to the actual time What is the initial velocity of car and what is the distance between A and B in km
In a class, except 18 all are above 50 years.15 are below 50 years of age. How many people are there
In A,B,C are having some marbles with each of them. A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A, B, and C have equal number of marbles.
Q. (i) If x,y,z are the marbles initially with A,B,C respectively. Then the number of marbles B have at the end
In A,B,C are having some marbles with each of them. A has given B and C the same number of marbles each of them already have. Then, B gave C and A the same number of marbles they already have. Then C gave A and B the same number of marbles they already have. At the end A, B, and C have equal number of marbles.
Q. If the total number of marbles are 72, then the number of marbles with A at the starting
The very first process created by the kernal that runs till the kernal process is halts is
Output of the following program is
main()
{int i=0;
for(i=0;i<20;i++)
{switch(i)
case 0:i+=5;
case 1:i+=2;
case 5:i+=5;
default i+=4;
break;}
printf("%d,",i);
}
}
What is the output in the following program
main()
{char c=-64;
int i=-32
unsigned int u =-16;
if(c>i)
{printf("pass1,");
if(c
printf("pass2");
else
printf("Fail2");
}
else
printf("Fail1);
if(i
printf("pass2");
else
printf("Fail2")
}
In the process table entry for the kernel process, the process id value is
What will the following program do?
void main()
{
int i;
char a[]="String";
char *p="New Sring";
char *Temp;
Temp=a;
a=malloc(strlen(p) + 1);
strcpy(a,p); //Line number:9//
p = malloc(strlen(Temp) + 1);
strcpy(p,Temp);
printf("(%s, %s)",a,p);
free(p);
free(a);
} //Line number 15//
In the following code segment what will be the result of the function,value of x , value of y
{unsigned int x=-1;
int y;
y = ~0;
if(x == y)
printf("same");
else
printf("not same");
}
What will be the result of the following program?
char *gxxx()
{static char xxx[1024];
return xxx;
}
main()
{char *g="string";
strcpy(gxxx(),g);
g = gxxx();
strcpy(g,"oldstring");
printf("The string is : %s",gxxx());
}
Which function is the entry point for a DLL in MS Windows 3.1
The standard source for standard input, standard output and standard error is
85 docs|57 tests
|
85 docs|57 tests
|