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

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,


sir i need generalKnowledge previous questions for rrb secunderabad goods guard exam

0 Answers  


An orange colored glass has Orange juice and white colored glass has Apple juice both of equal volumes. 50ml of the orange juice is taken and poured into the white glass. After that similarly, 50ml from the white glass is poured into the orange glass. Of the two quantities, the amount of apple juice in the orange glass and the amount of orange juice in the white glass, which one is greater and by how much?

5 Answers   marketRx,


There are four friends, one weekend they plan to go to a picnic. Each family have husband and wife with two kids each, further each kid has 2 pets. Total how many went to the picnic?

1 Answers  


I can take a bca student instead of you then why should i hire you

10 Answers  






How will you differentiate a 5 rupee(indian currency)or any five currency coin?Answer me how will you differentiate????? This question is asked in a college appitute test.Any one know help me plzzzzz!!!!!!!!!!!!!

2 Answers  


Three men, including Gianni and three woman, including Sachi are in line at the BrentWood post office. Each has two different pieces of business to conduct. 1. The first person is a woman. 2. Carlos wants to send an overnight package. 3. Lau is just ahead of Pimentelli who is the same sex as Lau. 4. Gianni is two places ahead of the person who wants to buy stamps. 5. Knutson - who is the opposite sex than Rendler - isn't the person who wanted to complain about a mail carrier. 6. The six people, not necessarily in the same order are - Anthony, Donna, the person who wants to fill out a change-of-address form, the one who wants to buy a money order, the one who wants to send Airmail to Tibet and the second person in the line. 7. The four tasks of the last two people in line, not necessarily in the same order are - sending books fourth class, buying a money order, picking up a package and complaining about a mail carrier. 8. The person who wants to send books fourth class is just behind a person of the same sex. 9. Mary is just behind a person who wants to send an insured package. 10. The person who wants to send Airmail to Tibet is either two places ahead of or two places behind the one who wants to add postage to his or her meter. 11. Anthony isn't two places behind the who wants to pickup a registered letter. 12. Toriseza is two places ahead of the person who wants to pick up a package. 13. Knutson isn't just ahead of the person who wants to send an item parcel post. Can you figure out where each customer is in the line, his or her full name (one surname is Loti) and the two things he or she wants to accomplish? Provide your answer is POSITION - FIRST NAME - LAST NAME - BUSINESS format.

1 Answers  


The secret agent X emailed some code to his head office. They are "RADAR, LEVEL, ROTOR, REDIVIDER, MOTOR". But four of these five words have something in common and one is fake. Can you tell which one is fake? Ignore the fact that four of the code-words are of the same length.

4 Answers  


if 1+1 = 2 what will be 1-1 ? if 1+1 = 11 what will be 1-1 ? if 1+1 = 1 what will be 1-1 ?

12 Answers  


A number of 9 digits has the following properties: ? The number comprising the leftmost two digits is divisible by 2, that comprising the leftmost three digits is divisible by 3, the leftmost four by 4, the leftmost five by 5, and so on for the nine digits of the number i.e. the number formed from the first n digits is divisible by n, 2<=n<=9. ? Each digit in the number is different i.e. no digits are repeated. ? The digit 0 does not occur in the number i.e. it is comprised only of the digits 1-9 in some order. Find the number.

1 Answers  


justify 1-1=11...

1 Answers  


A person X have a certain number of mangoes, he gave 1/2 of total plus one mango to B, now he gave the 1/3 of remaining plus one mango to C, he gave the 1/4 of remaining plus one mango to D. Now he have no mango more, find how many mango was at beginning?

9 Answers  


Categories