1. The list of coded instructions is called:





Write Comment

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

Comments

Show Similar Question And Answers
QA->If PUBLISH is coded as BLUSHIP, how will DESTROY be coded?....
QA->If ‘BANK’ is coded as ‘CAMP’ in a language, how is ‘RAMP’ coded in that language?....
QA->In a particular code language GREET is coded as FQDDS, how is FORD coded in that language ?....
QA->In a particular code language GREET is coded as FQDDS, how is FORD coded in that language?....
QA->CPU register that holds the address of the instructions to be executed next:....
MCQ->If B is coded as 8, F is coded as 6, Q is coded as 4, D is coded as 7, T is coded as 2, M is coded as 3, and K is coded as 5, then what is the coded form of QKTBFM ?....
MCQ->How is 'one' coded in the code language? I) 'one of its kind' is coded as 'zo pi ko fe' and 'in kind and cash' is coded as 'ga to ru ko' II) 'Its point for origin' is coded as 'ba le fe mi' and 'make a point clear' is coded as 'yu si mi de' III) 'make money and cash' is coded as 'to mi ru hy' and 'money of various kind' is coded as 'qu ko zo hy'.....
MCQ-> In a certain code, letters of English alphabet (consonants and vowels) are coded as given for some words. The numeric code for each letter is given in bracket under coded form and corresponds to the letter in the word in the same serial order. Study the coded forms of the given words and find out the rules for their codification. Applying those rules, answer the questions that follow in two sets.Word Coded Form               Word Coded Form SEAT :[5] [15] [15] [15]       NONE [5] [25] [5] [25] CUT :[5] [10] [5]                  BOOK [5] [20] [20] [5] SEAT :[0] [5] [0]                   OPEN [30] [5] [30] [5] DEEP :[5] [20] [20] [5]         ATE [0] [5] [0] [5] POUR :[5] [15] [15] [5]        PAGE [5] [25] [5] [25] PIN :[5] [10] [5]                   UNIT [30] [5] [30] [5]DOSE
 ....
MCQ->How is 'party' coded in the language? I. 'going to a party' is coded as 'la fa qu tu' and 'for a party' is coded as 'fa me tu'. II. 'start the party' is coded as `tu co ra' and 'going to start' is coded as 'qu co la'.....
MCQ->What will be the output of the program? #include<stdio.h> #include<stdarg.h> void fun1(char, int, int , float , char ); void fun2(char ch, ...); void (p1)(char, int, int , float , char ); void (p2)(char ch, ...); int main() { char ch='A'; int i=10; float f=3.14; char p="Hello"; p1=fun1; p2=fun2; (p1)(ch, i, &i, &f, p); (p2)(ch, i, &i, &f, p); return 0; } void fun1(char ch, int i, int pi, float pf, char p) { printf("%c %d %d %f %s \n", ch, i, pi, pf, p); } void fun2(char ch, ...) { int i, pi; float pf; char p; va_list list; printf("%c ", ch); va_start(list, ch); i = va_arg(list, int); printf("%d ", i); pi = va_arg(list, int); printf("%d ", pi); pf = va_arg(list, float); printf("%f ", pf); p = va_arg(list, char ); printf("%s", p); }....
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