How many four digit numbers divisible by four can be formed
using 1, 2, 3, 4; repetitions are not allowed!
Answer Posted / mythili
the last two number should be divisible by 4 , so that the numbers 12,24,32 are the only two digit number that could be formed using 1,2,3,4 and divisible by 4.
The front two digit could be
34 and 43 for 12
13 and 31 for 24
14 and 41 for 32
so the answer is 6
and the numbers are(3412,4312,1324,3124,1432,4132)
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
how to retrieve the recent record from the database using sql query. suppose the table has the columns only ename,job,salary columns
Ramesh working alone on a job takes 12 days more than what he would have taken if Suresh had worked along with him while Suresh working alone on the same job takes 27 days more than what he would have taken if Ramesh had worked along with him. Find the time that both of them would take together to do the job.
In a 10 digit number, if the 1st digit number is the number of ones,2nd digit number is the number of twos, and ... so on. 10th digit is the number of zeroes,then find the number
If A = x3y2x3y2 and B=xy3xy3, then find the HCF of A, B
A train overtakes two persons walking along a railway track. The first one walks at 4.5 km.hr . the other one walks at 5.4 km/hr. the train needs 8.4 and 8.5 seconds respectively to overtake them, What is the speed of the train if both the persons are walking in the same direction as the train?
5 women given some of their heights(tall,medium,short)Hair( long, plainted),stards(Black or Brown), sari,2 medium,2-short.Tall-no sari.Plainted-medium.Answer the combinations.
which questions will be coming
The population of a city increases @ 4% p.a. That is an additional annual increase of 4% of the population due to this influx of job seekers, the % increase in population after 2 years is
what is focus liner in gc hs?
perimeter of rectangle is s and the other side is x, then the other side
Some statements are given below: � L says all of my other four friends have money � M says that P said that exactly one among them has money � N says that L said that precisely two among them have money � O says that M said that three of the others have money � P, L and N said that they have money All the above statement are false.. Who has money & who doesn't have any money?
Robert is travelling on his cycle and has calculated to reach point a at 2 p.m. If he travels at 10 kmph, he will reach there at 12 noon if he travels at 15 kmph. At what speed must he travel to reach?
Find the unit digit of product of the prime number up to 50 ?
a bus started from bus stand at 8.00am and after 30min staying at destination it returned back to the bus stand.the destination is 27 miles from the bus stand the speed of the bus 50percent fast speed at what time it returns to the bus stand.
An array was given and we were required to write a function : int CalculateThirdHighest(int a[ ]) : which calculates the third highest number in the array. While coding in C remember to calculate the length of array using formulae length of array=sizeof(a)/sizeof(int). Because the number of elements of array were not passed as argument. i want a solution in C/C++ language