21/09/2018
GATE 2019 application closing date has been extended to 22.09.2018 which was previously on 21.09.2018.
So you can apply without increase in application fee till 22.09.2018 or you can apply with increased application fee between 23.09.2018 and 01.10.2018.
For more details visit official website
GATE 2019 ---Home Page
GATE 2019 organising institute
17/01/2017
Create your own programming language...!!!
Create Your Own Programming Language
Create Your Own Programming Language
22/02/2015
Q. While inserting the elements 71, 65, 84, 69, 67, 83 in an empty binary search tree (BST) in the sequence shown, the element in the lowest level is
(a) 65
(b) 67
(c) 69
(d) 83
22/02/2015
Q.The result evaluating the postfix expression 10 5 + 60 6 / * 8 – is
(a) 284
(b) 213
(c) 142
(d) 71
17/02/2015
This was 2015 gate question.
16/02/2015
Hello students this was 2015 gate GA question.
Q. If ROAD is written as URDG, then SWAN should be written as:
(a)VXDQ
(b)VZDQ
(c)VZDP
(d)UXDQ
What will be your answer__?
14/02/2015
Hello students this was the 2015 gate question.
void main()
{
static int a[] = {10,20,30, 40,50 };
static int *p[] = { a,a+3,a+4,a+1,a+2 };
int **ptr = p;
ptr++;
printf("%d%d\n",ptr-p,**ptr);
}
What will be the output of this program.
Options:
(a)440
(b)420
(c)140
(d)030