Find out the smallest four digit number which is divisible
from 1 to 10?

Answers were Sorted based on User's Feedback



Find out the smallest four digit number which is divisible from 1 to 10?..

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

Find out the smallest four digit number which is divisible from 1 to 10?..

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

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / saranya

2520 is the perfect answer

Is This Answer Correct ?    1 Yes 2 No

Find out the smallest four digit number which is divisible from 1 to 10?..

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

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / alpha_enterprises03

1000

Is This Answer Correct ?    2 Yes 10 No

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / guest

5040

Is This Answer Correct ?    2 Yes 10 No

Find out the smallest four digit number which is divisible from 1 to 10?..

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

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / karthik

1260

Is This Answer Correct ?    5 Yes 38 No

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / ajay

1000

Is This Answer Correct ?    4 Yes 41 No

Find out the smallest four digit number which is divisible from 1 to 10?..

Answer / vikky

1080 is the answer

Is This Answer Correct ?    7 Yes 68 No

Post New Answer

More Puzzles Interview Questions

A tank can be filled by pipe A in 30 minutes and by pipe B in 24 minutes. Outlet pipe C can empty the full tank in one hour and twenty minutes. If the tank is empty initially and if all the three pipes A, B and C are opened simultaneously, in how much time will the tank be full?

2 Answers  


in 10 hrs,if the cistern is filled ,then how much time the outlet takes to empty the cistern

1 Answers   Syntel,


At University of Probability, there are 375 freshmen, 293 sophomores, 187 juniors, & 126 seniors. One student will randomly be chosen to receive an award. What percent chance is there that it will be a junior? Round to the nearest whole percent

2 Answers  


the age of baby will b 5 time after 20 yrs what is present age?

14 Answers  


can anyone provide the answer for the puzzle below There are 25 horses,in each race only 5 horses can participate.how many races are required to select best 5 horses out of 25. need answer with detailed explanation

33 Answers   Wipro,






An ant had to travel from one corner of a room to diagonally opposite corner. It can walk on walls, floor and roof only. How will you find the shortest path for this ant ?

9 Answers   Analog Devices, Cadence, TCS, ZS Associates,


In training for a competition, you find that swimming downstream (with the current) in a river, you can swim 2 miles in 40 minutes, & upstream (against the current), you can swim 2 miles in 60 minutes. How long would it take you to swim a mile in still water?

2 Answers  


In Mr. Mehta's family, there are one grandfather, one grandmother, two fathers, two mothers, one father-in-law, one mother-in-law, four children, three grandchildren, one brother, two sisters, two sons, two daughters and one daughter-in-law. How many members are there in Mr. Mehta's family? Give minimal possible answer.

2 Answers  


A B C D E F G H I Each of the digits from 1 to 9 is represented by a different letter above. Also, A + B + C = C + D + E = E + F + G = G + H + I = 13 Which digit does E represent?

7 Answers  


In a soap company a soap is manufactured with 11 parts. For making one soap you will get 1 part as crap. At the end of the day u have 251 such scraps. From that how many soaps can be manufactured?

0 Answers   Infosys,


You have 8 coins. 3 of them weigh x units, 3 y units, 1 a units and 1 b units. They are all mixed and look identical. You have to find the lightest coin in minimum number of weighing (balance)

1 Answers   Oracle,


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??

8 Answers   Exilant,


Categories