logo

CuriousTab

CuriousTab

Discussion


Home Technical Questions Operating Systems Comments

  • Question
  • main() { fork(); printf(?Hello World!?); } Output for the above unix program is


  • Options
  • A. Hello World!
  • B. Hello World!Hello World!
  • C. Hello World
  • D. None

  • Correct Answer
  • Hello World!Hello World! 

    Explanation

    The fork creates a child that is a duplicate of the parent process. The child begins from the fork().All the statements after the call to fork() will be executed twice.(once by the parent process and other by child). The statement before fork() is executed only by the parent process

  • Tags: GRE

    Operating Systems problems


    Search Results


    • 1. Which among the following are not the children of Swapper or Scheduler?

    • Options
    • A. Process Dispatcher
    • B. Vhand
    • C. Dbflush
    • D. All the above
    • Discuss
    • 2. What is pre-emptive and non-preemptive scheduling?
    • Discuss
    • 3. What is a daemon?
    • Discuss
    • 4. Explain the meaning of mutex.
    • Discuss
    • 5. Explain the concept of the Distributed systems?
    • Discuss
    • 6. Which among the following is a system call used for process management

    • Options
    • A. fork()
    • B. exec()
    • C. getppid()
    • D. All the above
    • Discuss
    • 7. main() { char s[ ] = "man"; int i; for( i=0; s[ i ]; i++) printf( "n%c%c%c%c", s[ i ], *(s+i), *(i+s), i[s] ); }

    • Options
    • A. mmmm aaaa nnnn
    • B. aaaa mmmm nnnn
    • C. nnnn aaaa mmmm
    • D. None
    • Discuss
    • 8. What will be output of following c code? #include int main() { int x=123; int i={ printf("c" "++") }; for(x=0;x<=i;x++){ printf("%x ",x); } return 0; }
    • Discuss
    • 9. A source program is the program written in which level language ?

    • Options
    • A. Alpha Numeric
    • B. High-Level
    • C. Symbolic
    • D. Machine
    • Discuss
    • 10. main() { char *p; p = "Hello"; printf ("%cn", *&*p); }

    • Options
    • A. H
    • B. Hello
    • C. Compilation error
    • D. H E L L O
    • Discuss


    Comments

    There are no comments.

Enter a new Comment