1. A BCD code that represents each digit of a decimal number by a binary number derived by adding 3 to its 4-bit true binary value is _________.




Write Comment

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

Comments

Tags
Show Similar Question And Answers
QA->The difference between the largest four digit number and the smallest three digit number is :....
QA->Decimal equivalent of the signed binary number 11110101 in 1’s complement form is :....
QA->There are 50 students in a class. In a class test 22 students get 25 marks each, 18 students get 30 marks each. Each of the remaining gets 16 marks. The average mark of the whole class is :....
QA->If n represents the dimension of cube and k, the radix(no. of nodes along each dimensions. then the number of nodes N of a K-ary n –cube network is :....
QA->The first digit from the left on PIN code indicates....
MCQ->A BCD code that represents each digit of a decimal number by a binary number derived by adding 3 to its 4-bit true binary value is _________.....
MCQ-> The English alphabet is divided into five groups. Each group starts with the vowel and the consonants immediately following that vowel and the consonants immediately following that vowel are included in that group. Thus, the letters A, B, C, D will be in the first group, the letters E, F, G, H will be in the second group and so on. The value of the first group is fixed as 10, the second group as 20 and so on. The value of the last group is fixed as 50. In a group, the value of each letter will be the value of that group. To calculate the value of a word, you should give the same value of each of the letters as the value of the group to which a particular letter belongs and then add all the letters of the word: If all the letters in the word belong to one group only, then the value of that word will be equal to the product of the number of letters in the word and the value of the group to which the letters belong. However, if the letters of the words belong to different groups, then first write the value of all the letters. The value of the word would be equal to the sum of the value of the first letter and double the sum of the values of the remaining letters.For Example : The value of word ‘CAB’ will be equal to 10 + 10 + 10 = 30, because all the three letters (the first letter and the remaining two) belong to the first group and so the value of each letter is 10. The value of letter BUT = $$10 + 2 \times 40 + 2 \times 50 = 190$$ because the value of first letter B is 10, the value of T = 2 $$\times$$ 40 (T belongs to the fourth group) and the value of U = 2 $$\times$$ 50 (U belongs to the fifth group). Now calculate the value of each word given in questions 161 to 165 :AGE
 ....
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->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ-> In each question below, a group of digits/symbols is given, followed by four combinations of letters numbered (1), (2), (3), and (4). You have to find out which of the combinations (1), (2), (3) and (4) correctly represents the group of digits/symbols based on the following coding system and the conditions those follow and mark the number of that combination as your answer. If none of the four combinations correctly represents the group of digits/symbols, mark (5) i.e.,’None of these’ as the answer Digit/Symbol 5 9 @ © 3 8 1 $ % 4 2 6 * 7 $$\delta$$ # Letter Code B E P A K D F H Q I R J U M V T Conditions (a) If the first unit in the group is an even digit and the last unit is a symbol, both these are to be coded as the code for the symbol. (b) If the first unit in the group is an odd digit and the last unit is an even digit, their codes are to the unchanged. (c) If both the first and the last units in the group are symbols, both these are to be coded as ‘X’.@91$26
 ....
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions