Question Set

1. 33 16.5 ? 24.75 49.5 123.75






Ask Your Doubts Here

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

Comments

Show Similar Question And Answers
QA->Article 123 എന്നാലെന്ത് ?....
QA->Article 123 പ്രകാരം ഓർഡിനൻസ് പുറപ്പെടുവിക്കാനുള്ള അധികാരം ആർക്കാണ് ? ....
QA->ഹൈഡ് നിയമം 123 കരാർ എന്തുമായി ബന്ധപ്പെട്ടിരിക്കുന്നു? ....
QA->ആർട്ടിക്കിൾ 123 എന്താണ് ?....
MCQ->Which of the following is correct way to convert a String to an int? String s = "123"; int i; i = (int)s; String s = "123"; int i; i = int.Parse(s); String s = "123"; int i; i = Int32.Parse(s); String s = "123"; int i; i = Convert.ToInt32(s); String s = "123"; int i; i = CInt(s);....
MCQ->What will be the output of the program? #include<stdio.h> int sumdig(int); int main() { int a, b; a = sumdig(123); b = sumdig(123); printf("%d, %d\n", a, b); return 0; } int sumdig(int n) { int s, d; if(n!=0) { d = n%10; n = n/10; s = d+sumdig(n); } else return 0; return s; }....
MCQ->What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class Sample { public static void fun1() { Console.WriteLine("Bix1 method"); } public void fun2() { fun1(); Console.WriteLine("Bix2 method"); } public void fun2(int i) { Console.WriteLine(i); fun2(); } } class MyProgram { static void Main(string[ ] args) { Sample s = new Sample(); Sample.fun1(); s.fun2(123); } } }....
MCQ->. In a certain code language '123'means 'bright little boy, 145 means 'tall big boy' and 637 means beautiful little flower, which digit in that language means bright?....
MCQ->96. H X + X = 5, then the value of x is:123....
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