Tag: science & technology

Questions Related to science & technology

What are proteins composed of

  1. Lipids

  2. Proteins

  3. Fatty Acids

  4. Amino Acids


Correct Option: D

void main() { i=50; printf("%d",i); } What should be added to this file, so that the program is compiled.

  1. int i; /*above main() */

  2. extern int i; /*inside main() */

  3. Both 1 & 2

  4. option 3 if i is defined elsewhere.


Correct Option: D

struct io { int i=0; int j; }; void main() { io op; op.j=20; printf("i = %d",op.i); printf("j= %d",op.j); }

  1. output i=0 j=20

  2. output j=20

  3. compiler error starting from "printf("i = %d",op.i);"

  4. compiler error starting at the end of struct io


Correct Option: D

void main() { int i=0; int j = ++i; if(j>i) main(); } the program compiles. }

  1. True

  2. False


Correct Option: A

in Text Editing what is the shortcut key for "end of doucment"

  1. End

  2. Ctrl + End

  3. Home

  4. Ctrl + Home


Correct Option: B

URL Shortcut (Adds www. + .net)

  1. Ctrl + Enter

  2. Ctrl + Shift + Enter

  3. Shift + Enter

  4. Ctrl + D


Correct Option: C

Make selected text subscript

  1. Ctrl + '+'

  2. Ctrl + S

  3. Ctrl + *

  4. Ctrl + Shift + '+'


Correct Option: A