Find out the smallest four digit number which is divisible
from 1 to 10?
Answers were Sorted based on User's Feedback
Answer / g.shaju
1680. i am sure this is the write answer.
you can check it out.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / abhinay
you can find it by any programming language like c/c++ and so on
i am giving you the code of C#
which gives you your correct answer
class Program
{
static void Main(string[] args)
{
for (int i = 1000; i <= 9999; i++)
{
if (i % 1 == 0 && i % 2 == 0 && i % 3 == 0
&& i % 4 == 0 && i % 5 == 0 && i % 6 == 0 && i % 7 == 0 && i
% 8 == 0 && i % 9 == 0 && i % 10 == 0)
{
Console.WriteLine(i);
break;
}
}
Console.ReadKey();
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / g.shaju
i am sry 1680 is not div by 9....
hence the right ans is 2520
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / koushik
exactly.. 2050 is the only answer.No other smallest 4 digit
number can be the answer for this question.
| Is This Answer Correct ? | 5 Yes | 16 No |
There are 25 horses and only five tracks in a race. How do you find the second coming horse of all the 25 horses, provided there is no stop clock? (obviously, a horse cannot participate more than once in a race).
28 Answers Amazon, Athena Health Care, Bloomberg, Citrix, Dreamz Group, Global Analytics, Juniper Networks, Microsoft, Oracle, Synopsis, UC Berkeley,
there is a desert. a professor has to cross it n it takes 6days for him to cross. there are enough food reserves and students who can help d professor cross d desert. each person including professor can carry only 4 food packets with him while crossing the desert. in d desert also, each person can hav at the most 4 packets with him and they need to eat one packet per person per day during their travel. how wil d professor reach the other side of desert??
we have 3 rows 3 columns there in 1st row and 2nd column we have 8 values, so we add from any row or column we get value 15 please tell me how to find out this value
if (x-a) power(degree) is 1 and (x-a)(x-b) power is 2 then (x-a)(x-b).........upto ...(x-z) power(degree) is how much?
9 Answers BA Continnum Solutions, HCL, Wipro,
Please convert 13 LETTERS- "FTOGUNIROIYWA" INTO THREE WORDS RELATED TO LOVE.?
what is your future plans for qatar airways group u.k?
Scientist decided to do a study on the population growth of rabbits. Inside a controlled environment, 1000 rabbits were placed. Six months later, there were 1000Z rabbits. At the beginning of the 3rd year, there were roughly 2828Z rabbits, which was 4 times what the scientists placed in there at the beginning of the 1st year. If Z is a positive variable, how many rabbits would be there at the beginning of the 11th year?
Two identical pack of cards A and B are shuffled thoroughly. One card is picked from A and shuffled with B. The top card from pack A is turned up. If this is the Queen of Hearts, what are the chances that the top card in B will be the King of Hearts?
Ekta got chocolates to give her friends on her Birthday. If she gives 3 chocolates to each friend, one friend will get only 2 chocolates. Also, if she gives 2 chocolates to each friends, she will left with 15 chocolates. How many chocolates Ekta got on her Birthday? and how many friends are there?
A sheet of paper has statements numbered from 1 to 45. For all values of n from 1 to 45, statement n says "At most n of te statements on this sheet are false". Which statments are true and which are false? A. The odd numbered statements are true and the even numbered are false. B. The even numbered statements are true and the odd numbered are false. C. All statements are true.
Its come one in a year and twice in a week. What is this?
Implement a multiple-reader-single-writer lock given a compare-and-swap instruction. Readers cannot overtake waiting writers.