Posts Tagged ‘Aptitude Test’

  • Format Function: Basic Concepts

    Jan 12, 13 • 2385 Views • Resources5 Comments

    Q.1. What is the format function? Ans. Format function allow us to supply the input in a fixed format and let us obtain the output in the specified form. Formatted output converts the internal binary representation of the data to ASCII character which are

  • Questions on Dynamic Array

    Jan 11, 13 • 3280 Views • Notes7 Comments

      1) Which of the following expression is true? a. 3 < 3 b. 3 < 3.0 c. string(“ABLE”) == string(“able”) d. string(“aBlE”) < string(“AbLe”) e. string(“able”) !=

  • Internet Protocol Version 6

    Jan 11, 13 • 2498 Views • General9 Comments

    Q.1 Define IPV6? Ans. IPV6 stands for Internet Protocol version 6.It is the next generation of internet protocol. Basically it is developed to solve the problem of eventual exhaustion of IPV4 address space. Although it also provide some other advantages like

  • Functions in C Language

    Jan 11, 13 • 3202 Views • Resources • • 7 Comments

    Q 1. What is a static function ? Ans 1: A static function is a function whose scope is limited to the current source file. Scope refers to the visibility of a function or variable. Q 2. Is it possible to execute code even after the program exits the main()

  • Interview Questions on Pointer

    Jan 10, 13 • 14625 Views • Resources1 Comment

    Q1. What is a Pointer ? Ans. A pointer is a variable that stores the address of another variable in C language. It is basically a data type defined by the user to create special variables to hold the address of the main variables like int, float, char etc.