There are 3 baskets of fruits with worng lables,one basket
has apple,another basket has orange,another has combination
of apple and orange,what is the least way of interchange
the lables.

Answer Posted / ankur

zero.

why do we want to interchange the lables. Question gives
incomplete details.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Which one would you prefer - a macro or a function?

598


Explain how can a program be made to print the line number where an error occurs?

688


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

713


What are 'near' and 'far' pointers?

616


How pointers are declared?

556






write a c program to calculate sum of digits till it reduces to a single digit using recursion

2716


a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4540


What is stack in c?

607


What is the difference between c and python?

577


What is union and structure in c?

606


Can we declare variable anywhere in c?

533


What is structure and union in c?

594


How to create struct variables?

584


Why does notstrcat(string, "!");Work?

637


Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

1718