Question Set

1. How many four digit numbers ‘ahed’exist such that a is odd,b is divisible by 3,c is even and d is prime?





Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->The product of two 2 digit numbers is 2028 and their HCF is What are the numbers ?....
QA->The sum of squares of two numbers is 80 and the square of difference between the two numbers is Find the product of two numbers.....
QA->How many ‘8’ are there followed by an even number and preceded by an odd number? 3825832832827848568784286....
QA->The highest 3-digit number divisible by 13 is....
QA->What is the largest 4 digit number exactly divisible by 88?....
MCQ->How many four digit numbers ‘ahed’exist such that a is odd,b is divisible by 3,c is even and d is prime?....
MCQ->If N = 196, the result of the following program will be

INTEGER N, DIGIT 1, DIGIT 2, DIGIT 3,
SUM
READ, N
DIGIT 1 = N - (N / 10) 10 N = N / 10
DIGIT 2 = N - (N / 10) 10 N = N / 10
DIGIT 3 = N - (N / 10) 10
SUM = DIGIT 1 + DIGIT 2 + DIGIT 3....
MCQ->Which of the following code snippets are the correct way to determine whether a is Odd or Even? int a; String res; if (a % 2 == 0) res = "Even"; else res = "Odd"; int a; String res; if (a Mod 2 == 0) res = "Even"; else res = "Odd"; int a; Console.WriteLine(a Mod 2 == 0 ? "Even": "Odd"); int a; String res; a % 2 == 0 ? res = "Even" : res = "Odd"; Console.WriteLine(res);....
MCQ->How many two-digit numbers satisfy this property.: The last digit (unit's digit) of the square of the two-digit number is 8 ?....
MCQ->If 4 is subtracted from each odd digit and 1 is added to each even digit in the number 9476582, which of the following numbers will appear twice in the new number thus formed....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution