Login
Register
Dark Mode
Brightness
Ambient Glow – Questions list
Register
Profile
Edit Profile
Messages
My favorites
My Updates
Logout
Recent questions tagged tbb-programming-2
4
4 votes
1
answers
1 answer
1.0k
1.0k views
Test by Bikram | Programming | Test 2 | Question: 30
Assume that $a[4]$ is a one-dimensional array of $4$ elements, $p$ is a pointer variable and $p = a$ is performed. Now, which among these expressions is illegal?$p == a[0...
Bikram
1.0k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
array
pointers
+
–
0
0 votes
1
answers
1 answer
806
806 views
Test by Bikram | Programming | Test 2 | Question: 29
Spot the error(s) in this code snippet :int n=2; // Line 1 switch(n) { case 1.5: printf( "gate"); break; case 2: printf( "overflow"); break; case 'A': printf("gateoverflo...
Bikram
806
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
syntax
operators
+
–
0
0 votes
1
1 answer
594
594 views
Test by Bikram | Programming | Test 2 | Question: 28
#include<stdio.h int K = 10; int main() { foo(); foo(); return 0; } int foo() { static int k= 1; printf("%d ",k); k++; return 0; }What is the output of the above code sni...
Bikram
594
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
static-single-assignment
output
+
–
0
0 votes
1
1 answer
555
555 views
Test by Bikram | Programming | Test 2 | Question: 27
What is the output of the following program? int fun (int z) { if( z==0 || z==1 ) return 1; else return fun(z-1) ; } int main() { int y; y=fun(8); printf(“%d”, y)...
Bikram
555
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
recursion
output
+
–
3
3 votes
1
answers
1 answer
1.7k
1.7k views
Test by Bikram | Programming | Test 2 | Question: 26
What is the output of the below mentioned code snippet?#include <stdio.h int main() { int i=10; static int x=i; if(x==i) printf("Equal"); else if(x>i) printf("Greater"); ...
Bikram
1.7k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
+
–
2
2 votes
1
answers
1 answer
946
946 views
Test by Bikram | Programming | Test 2 | Question: 25
Read the following program fragment: #include<stdio.h int main() { int p = 2, q = 5; p = p^q; q = q^p; printf("%d%d",p,q); return 0; }The output is:$5 \ 2$$2 \ 5$$7...
Bikram
946
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
+
–
0
0 votes
1
1 answer
589
589 views
Test by Bikram | Programming | Test 2 | Question: 24
#include <stdio.h int counter(int i) { static int count = 0; count = count + i; return count; } int main() { int i, j; for (i = 0; i <= 5; i++) j = counter(i); printf ("%...
Bikram
589
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
data-structures
+
–
1
1 vote
1
answers
1 answer
665
665 views
Test by Bikram | Programming | Test 2 | Question: 23
What is the output of the following program?#include <stdio.h int main() { int a = 0; switch(a) { default: a = 4; case 6: a ; case 5: a = a+1; case 1: a = a-1; } printf("...
Bikram
665
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
output
+
–
4
4 votes
3
answers
3 answers
1.8k
1.8k views
Test by Bikram | Programming | Test 2 | Question: 22
Read this code snippet :void main() { int i; char a[]="\0"; if(printf("%s\n",a)) printf(" GATE 2018\n"); else printf("Forget GATE\n"); }The output is :Compiler ErrorForge...
Bikram
1.8k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
+
–
7
7 votes
2
answers
2 answers
973
973 views
Test by Bikram | Programming | Test 2 | Question: 21
What is the output of the following code snippet? #include <stdio.h int main() { char c=125; c=c+10; printf("%d",c); return 0; }
Bikram
973
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
output
+
–
0
0 votes
1
answers
1 answer
566
566 views
Test by Bikram | Programming | Test 2 | Question: 20
How many TOKENS are there in the statement answer $=(5*q-p*p)/3$; ?$13$$12$$15$$14$
Bikram
566
views
asked
May 14, 2017
Programming in C
tbb-programming-2
compiler-tokenization
programming-in-c
+
–
3
3 votes
1
answers
1 answer
475
475 views
Test by Bikram | Programming | Test 2 | Question: 19
The output of this code snippet is :#include <stdio.h #define x 4+1 int main() { int i; i = x*x*x; printf("%d",i); return 0; }
Bikram
475
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
output
+
–
4
4 votes
1
answers
1 answer
1.5k
1.5k views
Test by Bikram | Programming | Test 2 | Question: 18
Point out the error : #include <stdio.h void f(int*); int main() { int i=35,*z; z=f(&i); printf("%d",z); return 0; } void f(int*m) { return(m+2); }error in function calle...
Bikram
1.5k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
pointers
functions
+
–
1
1 vote
1
1 answer
625
625 views
Test by Bikram | Programming | Test 2 | Question: 17
What will be the output of the below program ?#include <stdio.h int main() { struct node { int x; int y; int z; }; struct node s = { 3, 5, 6 }; struct node *pt = &s; prin...
Bikram
625
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
data-structures
+
–
10
10 votes
2
answers
2 answers
858
858 views
Test by Bikram | Programming | Test 2 | Question: 16
What will be the output of this program ?#define square(x) x*x main() { int z; z = 25/square(5); printf("%d",z); }
Bikram
858
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
output
macros
+
–
3
3 votes
1
answers
1 answer
790
790 views
Test by Bikram | Programming | Test 2 | Question: 15
Choose the correct operators to fill in the blanks:int i,j,k; i=1;j=2;k=3; printf("%d",i___5___j___2____k);Output is: $2$ + % – +* / – ++ % + /* % – /
Bikram
790
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
operators
output
+
–
0
0 votes
1
1 answer
614
614 views
Test by Bikram | Programming | Test 2 | Question: 14
Read the following code fragment:#include <stdio.h main() { int i=1,j; int k= 1__ (j ___ i) ; printf("%d%d%d\n", i,j,k); }What operators are needed in the blanks to print...
Bikram
614
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
operators
+
–
7
7 votes
4
answers
4 answers
2.0k
2.0k views
Test by Bikram | Programming | Test 2 | Question: 13
What is the output of the code? #include <stdio.h int main() { int a; printf("%d",scanf("%d",&a)); return 0; }$10$$9$$-1$An undefined behavior
Bikram
2.0k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
+
–
3
3 votes
2
answers
2 answers
1.6k
1.6k views
Test by Bikram | Programming | Test 2 | Question: 12
What is the output of the following program?#include <stdio.h void f(char ); int main() { char *argv[] = { "ab", "cd", "ef", "gh", "ij", "kl" }; f(argv); return 0; } void...
Bikram
1.6k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
pointers
+
–
0
0 votes
1
answers
1 answer
543
543 views
Test by Bikram | Programming | Test 2 | Question: 11
Which of the following will print the value $2$ for this code snippet?#include<stdio.h int main() { int arr[10][20][30] = {0}; arr[5] = 2; __________ // missing line he...
Bikram
543
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
array
pointers
data-structures
+
–
0
0 votes
1
answers
1 answer
1.2k
1.2k views
Test by Bikram | Programming | Test 2 | Question: 10
Suppose the following declarations are in effect :$\text{int }a[ \: ] = \{5,15,34,54,14,2,52,72 \}$;$\text{int }*p = \&a , *q = \&a[5]$;The value of $q - p$ is ________...
Bikram
1.2k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
array
pointers
programming-in-c
+
–
2
2 votes
1
answers
1 answer
755
755 views
Test by Bikram | Programming | Test 2 | Question: 9
Consider the below function:int s (int n) { if (n<=1) return 1 ; n = (n-1) * (n-1) -2 - n * n + 3*n ; s(n); printf(“%d”, n ); }What is the output if initial call is $s(6)...
Bikram
755
views
asked
May 14, 2017
Programming in C
tbb-programming-2
identify-function
programming-in-c
recursion
output
+
–
3
3 votes
2
answers
2 answers
1.3k
1.3k views
Test by Bikram | Programming | Test 2 | Question: 8
What is the output of this program?#include <stdio.h int main() { char *ptr; char string[] = "How are you?"; ptr = string; ptr += 4; printf("%s",ptr); return 0; }How are ...
Bikram
1.3k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
pointers
output
data-structures
+
–
0
0 votes
1
answers
1 answer
417
417 views
Test by Bikram | Programming | Test 2 | Question: 7
The value of p after execution of the following program will be:int new(int t) { static int cal=0; cal=cal+t; return(cal); } main() { int t,p; for(t=0;t<=4;t++) p= new(t)...
Bikram
417
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
data-structures
functions
+
–
0
0 votes
0
0 answers
863
863 views
Test by Bikram | Programming | Test 2 | Question: 6
Which among following statements is/are TRUE?& is bit-wise and && is a logical operator& returns an integer value whereas && returns a boolean valueBoth the above options...
Bikram
863
views
asked
May 14, 2017
Programming in C
tbb-programming-2
binary-operation
programming-in-c
+
–
2
2 votes
1
answers
1 answer
1.1k
1.1k views
Test by Bikram | Programming | Test 2 | Question: 5
#include <stdio.h void fun() { int p; static int x=1; p = ++x; printf("%d %d", p, x); if(p <= 2) fun(); printf(“%d %d”, p, x); } int main() { fun(); fun(); }In the above ...
Bikram
1.1k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
recursion
output
+
–
4
4 votes
2
answers
2 answers
1.9k
1.9k views
Test by Bikram | Programming | Test 2 | Question: 4
State the output in below code snippet :#include <stdio.h int main(void) { char x[5] = { 1, 2, 3, 4, 5 }; char *ptr = (char*)(&x + 1); printf("%d %d\n", *(x + 1), *(ptr -...
Bikram
1.9k
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
array
pointers
output
+
–
0
0 votes
1
answers
1 answer
779
779 views
Test by Bikram | Programming | Test 2 | Question: 3
What is the output of this program?#include <stdio.h #include <string.h int main() { char string[] = "Hello"; printf("%lu %lu", sizeof(string), strlen(string)); return 0;...
Bikram
779
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
data-structures
+
–
2
2 votes
1
answers
1 answer
907
907 views
Test by Bikram | Programming | Test 2 | Question: 2
Which of the following statements is/are true ?#include <stdio.h int main() { int x=10, y=200%90, i; for( i=1;i++<=10;); if(x==y); printf("x=%dy=%d\n",x,y ); return 0; }p...
Bikram
907
views
asked
May 14, 2017
Programming in C
tbb-programming-2
programming-in-c
output
+
–
2
2 votes
1
1 answer
737
737 views
Test by Bikram | Programming | Test 2 | Question: 1
Consider the following C program using function : #include<stdio.h main() { int f1(int,int); int x = 9, n=3, S; S = f1(x,n); printf(S); } int f1(int x, int n) { int y=1,...
Bikram
737
views
asked
May 14, 2017
Programming in C
tbb-programming-2
numerical-answers
programming-in-c
output
functions
+
–
To see more, click for the
full list of questions
or
popular tags
.