Posts Tagged ‘Aptitude Test’

  • Questions on Dynamic Array

    Jan 11, 13 • 3018 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 • 2293 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 • 2994 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 • 12926 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.

  • Important Questions on Control statements in C

    Jan 10, 13 • 9773 Views • Notes1 Comment

    1) What will be output when you will execute following c code? #include<stdio.h> void main(){ if(0xA) if(052) if(‘xeb’) if(’12’) printf(“Our Edu”); else; else; else; else; } ans: Our Edu (condition is always true) 2)