How many strings of 5 digits have the property that the sum of their digits is 7 ? (A) 66 (B) 330 (C) 495 (D) 99

1 Answer

Answer :

(B) 330

Related questions

Description : When the celebrated German mathematician Karl Friedrich Gauss (1777-1855) was nine he was asked to add all the integers from 1 through 100. He quickly added 1 to 100, 2 to 99, and so on for 50 pairs ... 1,000,000,000.That's all the digits in all the numbers, not all the numbers themselves. -Riddles

Last Answer : The numbers can be grouped by pairs: 999,999,999 and 0; 999,999,998 and 1' 999,999,997 and 2; and so on.... There are half a billion pairs, and the sum of the digits in each pair is 81. The digits in the unpaired number, 1,000,000,000, add to 1. Then: (500,000,000 X 81) + 1= 40,500,000,001.

Description : The Maximum payload of a TCP segment is (A) 65,535 (B) 65,515 (C) 65,495 (D) 65,475

Last Answer : (C) 65,495

Description : A stone is dropped into a deep shaft without any initial velocity. The sound of the stone hitting the bottom is heard after 4 seconds. If the velocity of sound is 330 m/sec the depth of the shaft will be a.33.1 m b.660 m c.165 m d.66.2 m e.330 m

Last Answer : d. 66.2 m

Description : One writes all numbers from 50 to 99 without the digits 2 and 7. How many numbers have been written? (A) 32 (B) 36 (C) 40 (D) 38

Last Answer : Answer: A

Description : A sample of natural gas containing 80% methane (CH4 ) and rest nitrogen (N2 ) is burnt with 20% excess air. With 80% of the combustibles producing CO2 and the remainder going to CO, the Orsat analysis in volume percent is (A) CO2 : 6 ... 96, N2 :72.06 (D) CO2 : 7.60, CO : 1.90, O2 : 4.75, N2 : 85.74

Last Answer : (B) CO2 : 7.42, CO : 1.86, O2 : 4.64, N2 :86.02

Description : Which of the following strings would match the regular expression: p+[3-5]*[xyz]? I. p443y Il. p6y III. 3xyz IV. p35z V. p353535x Vl. ppp5 (1) I, III and Vl only (2) IV, V and VI only (3) II, IV and V only (4) I, IV and V only

Last Answer : Answer: 4

Description : …………. Refer to the names of variables, functions, arrays, classes etc. created by the programmer. A) Keywords B) Identifiers C) Constraints D) Strings

Last Answer : B) Identifiers

Description : What arithmetic operators cannot be used with strings ? a) + b) * c) – d) All of the mentioned

Last Answer : c) –

Description : Which is the correct statement(s) for Non Recursive predictive parser? S1: First(α) = {t | α => * t β for some string β } => *tβ S2: Follow(X) = { a | S => * αXa β for some strings ... and S2 is correct. (C) S1 is correct and S2 is incorrect. (D) Both statements S1 and S2 are correct. 

Last Answer : (D) Both statements S1 and S2 are correct.

Description : In Unix, how do you check that two given strings a and b are equal ? (A) test $a -eq $b (B) test $a -equal $b (C) test $a=$b (D) Sh -C test $a==$b

Last Answer : (C) test $a=$b Answer: C Explanation: Tests for a zero-length string: test -z string Tests for a nonzero string length: test -n string Tests two strings for equality: ... Tests two strings for inequality: test string1 != string2 Tests for a nonzero string length: test string

Description : The language of all non-null strings of a’s can be defined by a context free grammar as follow : S→a S|S a| a The word a3 can be generated by ................ different trees. (A) Two (B) Three (C) Four (D) Five

Last Answer : (C) Four Explanation:

Description : The number of strings of length 4 that are generated by the regular expression (0|∈) 1+2* (3|∈), where | is an alternation character, {+, *} are quantification characters, and ∈ is the null string, is: (A) 08 (B) 10 (C) 11 (D) 12

Last Answer : (D) 12

Description : The number of strings of length 4 that are generated by the regular expression (0+1 +|2+3 + )*, where | is an alternation character and {+, *} are quantification characters, is: (A) 08 (B) 09 (C) 10 (D) 12

Last Answer : (C) 10

Description : Which of the following are not regular? (A) Strings of even number of a's. (B) Strings of a's, whose length is a prime number. (C) Set of all palindromes made up of a's and b's. (D) Strings of a's whose length is a ... ) (A), (B) and (C) only (3) (B), (C) and (D) only (4) (B) and (D) only

Last Answer : (B), (C) and (D) only

Description : The combined age of a father and daughter is 66. The daughter is the same age as the father. But with the digits reversed. What are their ages? -Riddles

Last Answer : There are three correct answers 51 and 15, 42 and 24, or 60 and 6.

Description : How many pluses should we put between the digits of 987,654,321 to get a total of 99, and where? -Riddles

Last Answer : (6) 9 + 8 + 7 + 6 + 5 + 43 + 21= 99 (7) 9 + 8 + 7 + 65 + 4 + 3 + 2 + 1= 99

Description : The digits of a two-digit number are in the ratio of 2 : 3 and the number obtained by interchanging the digits is bigger than the original number by 27.What is the original number? 1. 63 2. 48 3. 96 4. 69 5. 66

Last Answer : Answer- 4 (69) Explanation:- lets digit at tens and ones place be 2x and 3x So,number is 2x*10 + 3x After interchanging number will be 3x*10 +2x so, [3x*10 +2x] – [2x*10 + 3x]27 we get,x=3 so number =69

Description : The BCD adder to add two decimal digits needs minimum of (A) 6 full adders and 2 half adders (B) 5 full adders and 3 half adders (C) 4 full adders and 3 half adders (D) 5 full adders and 2 half adders

Last Answer : (D) 5 full adders and 2 half adders

Description : An integer constant in C must have A) At least one digit B) At least one decimal point C) A comma along with digits D) Digits separated by commas

Last Answer : A) At least one digit

Description : The output of executing string.ascii_letters can also be achieved by: a) string.ascii_lowercase_string.digits b) string.ascii_lowercase+string.ascii_upercase c) string.letters d) string.lowercase_string.upercase

Last Answer : d) string.lowercase_string.upercase

Description : In a binary Hamming code the number of check digits is r then number of message digits is equal to: (A) 2r-1 (B) 2r-r-1 (C) 2r-r+1 (D) 2r+r-1

Last Answer : (B) 2r-r-1

Description : If there are n integers to sort, each integer has d digits and each digit is in the set {1,2, ..., k}, radix sort can sort the numbers in: (A) O(d n k) (B) O(d nk) (C) O((d+n)k) (D) O(d(n+k))

Last Answer : (D) O(d(n+k))

Description : What is greatest common factor of 66 and 99?

Last Answer : It is: 33

Description : How many items are there in the Union List? (1) 52 (2) 66 (3) 97 (4) 99

Last Answer : (3) 97 Explanation: The Union List or List-I is a list of 100 items (though last item is numbered 97) given in Part XI of the Constitution of India on which Parliament has exclusive power to legislate. Out of the 100 items on the list, one is no longer in force.

Description : Calculate the ratio of sine of incident angle to the sine of reflected angle when the refractive indices of medium 1 and 2 are given as 2.33 and 1.66 respectively. a) 0.71 b) 1.4 c) 2 d) 3.99

Last Answer : a) 0.71

Description : Harish buys petrol at rs 21, Rs.24 and Rs.27 per litre for 3 successive years. What approximately is the average cost per litre of petrol if he spends Rs.12000 each year? A) 23.74 B) 54.76 C) 24.66 D) 28.99

Last Answer : A)  Total quantity of petrol consumed in 3 yr = (12000/21 +12000/24+12000/27) =12000(1/2 + 1/24 + 1/27) =12000(72+63+56/1512) =12000(191/1512) =(2292000/1512)litres Total amount spent = rs(3 *12000) = Rs.36000 Average cost = Rs(36000*1512/2292000) =Rs.23.74

Description : A disk drive has 100 cylinders, numbered 0 to 99. Disk requests come to the disk driver for cyclinders 12, 26, 24, 4, 42, 8 and 50 in that order. The driver is currently serving a request at cyclinder 24. A seek takes ... (SSTF) algorithm? (A) 0.984 sec (B) 0.396 sec (C) 0.738 sec (D) 0.42 sec

Last Answer : C

Description : A server crashes on the average once in 30 days, that is, the Mean Time Between Failures (MTBF) is 30 days. When this happens, it takes 12 hours to reboot it, that is, the Mean Time to Repair (MTTR) is 12 ... these reliability data values is approximately: (A) 96.3% (B) 97.3% (C) 98.3% (D) 99.3%

Last Answer : (C) 98.3%

Description : Consider the following JAVA program: public class First { public static int CBSE (int x) { if (x < 100) x = CBSE (x +10); return (x - 1); } public static void main (String[] args){ System.out.print(First.CBSE(60)); } } What does this program print? (1) 59 (2) 95 (3) 69 (4) 99

Last Answer : (2) 95 

Description : Consider a set A = {1, 2, 3, …….., 1000}. How many members of A shall be divisible by 3 or by 5 or by both 3 and 5 ? (A) 533 (B) 599 (C) 467 (D) 66

Last Answer : (C) 467

Description : An image is 1024∗800 pixels with 3 bytes/pixel. Assume the image is uncompressed. How long does it take to transmit it over a 10-Mbps Ethernet ? (A) 196.6 seconds (B) 19.66 seconds (C) 1.966 seconds (D) 0.1966 seconds

Last Answer : (C) 1.966 seconds

Description : How many times does 5 go in to 495?

Last Answer : Feel Free to Answer

Description : Suresh and Ramesh are twins. In a form by mistake, Suresh reverses the last 2 digits of his year of birth, and this makes him 9 years older than Ramesh. With this mistake, the sum of their ages in 2015 becomes 43. How old will Ramesh be 2021? a) 17 b) 19 c) 21 d) 23 e) 25

Last Answer : Let the correct ages of Ramesh and Suresh be X in 2015 (since they are twins, they will have the same age) Given: 2x + 9 = 43 Or x = 17 years in 2015. Age in 2021 = 17 + 6 = 23 Note: year of birth = 2015 – 17 = 1998. Reversing, Suresh = 1989 or 9 year older. Answer: d)

Description : A number consists of two digits whose sum is 8. If 8 is subtracted from the number, the digits interchange their places. The number is (1) 44 (2) 35 (3) 62 (4) 33

Last Answer : (4) 33

Description : what's 307,495 rounded to the nearest thousand? -General Knowledge

Last Answer : The number 307,495 rounded to the nearest thousand is 307,000.

Description : Rupesh secures 495 marks out of 750 in his annual examination. Find the percentage of marks obtained by him. -Maths

Last Answer : answer:

Description : How many times does 8 go into 495?

Last Answer : 61.87 times

Description : How many times does 55 go into 495?

Last Answer : 9

Description : The maximum payload of a TCP segment is: a. 65,535 b. 65,515 c. 65,495 d. 65,475

Last Answer : c. 65,495

Description : R.L. of floor at a building is 74.4 m, staff reading on the floor is 1.625 and staff reading when it is held inverted with bottom touching the ceiling of a hall is 2.870; then the height of the ceiling above the floor is (a) 3.593 m (b) 3.953 m (c) 4.495 m (d) 4. 594 m

Last Answer : (c) 4.495 m

Description : A certain number has three digits. The sum of the three digits equals 36 times this number. Seven times the left digit plus 9 is equal to 5 times the sum of the two other digits. 8 times the second digit minus 9 is equal to the sum of the first and third.What is the number? -Riddles

Last Answer : This one is fairly easy - 324 is the answer.

Description : In a two-digit number, the sum of the digit is 5 more than the units digit. The difference between the original number and the sum of digits is 10 mor

Last Answer : In a two-digit number, the sum of the digit is 5 more than the units digit. The ... the digits. Then find the difference between the digits.

Description : A two digit number is such that the sum of the digits is 11.When the number with the same digits is reversed is  subtracted from this number, the difference is 9.What is the number? 1. 23 2. 24 3. 65 4. 14 5. 32

Last Answer : Answer- 3(65) Explanation:- let the number be written as xy x-ten’s place y units place x+y=11…………………1 (10x+y)-(10y+x)=9 10x+y-10y-x=9 9x-9y=9 x-y=1………………….2 Add (1) & (2) 2x=12 x=6 y=5 the number is 65

Description : Write the given sets in roster form: (a). P = {y: y is an integer and -4 < y < 6}. (b). Q = {y: y is a natural number which is

Last Answer : (i) A = {x: x is an integer and †3 < x < 7} The elements of this set are †2, †1, 0, 1, 2, 3, 4, 5, and 6 only. Therefore, the given set can be written in roster form as A = {†2, †... and 80 only. Therefore, this set can be written in roster form as C = {17, 26, 35, 44, 53, 62, 71, 80}}.

Description : What is the smallest whole number that is equal to seven times the sum of its digits? -Riddles

Last Answer : The answer to this math riddle is 21. You probably just guessed to answer this math riddle, which is fine, but you can also work it out algebraically. The two-digit number ab stands for 10a + b since the ... a = 2b. That is, the second digit must be twice the first. The smallest such number is 21.

Description : I am a five-digit whole number, read the same forward, backward and upside down. My second digit is half my third digit; my fifth digit is the product of my first and last digits; and the sum of my whole is ten. What am I? -Riddles

Last Answer : 10801

Description : Find sum of digits -Maths 9th

Last Answer : answer:

Description : A number say z is exactly the four times the sum of its digits and twice the product of the digits. Find the numbers -Maths 10th

Last Answer : This is the Answer

Description : In a two-digit number, the sum of the digits is 9. If 9 is subtracted from the number, then the digits get reversed. Find the product of the digits

Last Answer : In a two-digit number, the sum of the digits is 9. If 9 is subtracted from the number, then the digits get reversed. Find the product of the digits

Description : In a two-digit number, the ten digit is one more than twice the units digit. The sum of the digits is 36 less than the number formed by reversing the

Last Answer : In a two-digit number, the ten digit is one more than twice the units digit. The sum of ... by reversing the digits. Find the product of the digits