Login
Register
@
Dark Mode
Profile
Edit my Profile
Messages
My favorites
Register
Activity
Q&A
Questions
Unanswered
Tags
Subjects
Users
Ask
Previous Years
Blogs
New Blog
Exams
Dark Mode
Filter
User Desert_Warrior
Wall
Recent activity
All questions
All answers
Exams Taken
All Blogs
Recent activity by Desert_Warrior
1
answer
1
What is Regular Grammar ?
What is Regular Grammar with an example?
answer edited
in
Compiler Design
Jan 17, 2017
1.9k
views
theory-of-computation
compiler-design
context-free-language
1
answer
2
ISRO-2013-78
Which of the following is not provided as a service in cloud computing? Infrastructure as a service Architecture as a service Software as a service Platform as a service
answer selected
in
Cloud Computing
Jan 9, 2017
7.2k
views
isro2013
cloud-computing
non-gate
2
answers
3
general doubt
What topics we should study in network security in computer networks?? can someone please tell the topics clearly??
answered
in
Computer Networks
Dec 1, 2016
1.2k
views
gate2017
2
answers
4
general doubt
Many questions in Gate IT has been asked about data communication part like serial communication, multiplexing etc in compuer networks. But are these things in syllabus of 2017?
answered
in
Computer Networks
Dec 1, 2016
459
views
gate2017
syllabus
0
answers
5
C programming
The output of the following program is: int a=75; printf("%d%%",a); a) 75 b)75 % % c)75% d)none It is giving output as c) ...can anyone please explain why it is not giving output as b)
comment edited
in
Programming
Nov 1, 2016
756
views
2
answers
6
structure
i have a doubt regarding this #include <stdio.h> typedef struct { char *a; char *b; } t; void f1 (t s); void f2 (t *p); main() { static t s = {"A", "B"}; printf ("%s %s\n", s.a, s.b); f1(s) ... we are replacing "A" to "v" so why there is no any problem loke above ?? code given above is from https://gateoverflow.in/3704/gate2004-it_61
answer edited
in
Programming
Nov 1, 2016
260
views
2
answers
7
ME-Test series-Programming DS test
My Query is as it is passing by reference so a in M actually refer to location b.So a=a*a=169 will be updated as b.Then how can b be 13? Please anyone rectify me.
answer edited
in
Programming
Nov 1, 2016
271
views
1
answer
8
Madeeasy Test Series
consider a complete binary tree 'T' with key of root node be 'P'. It is given that the left and right subtree of 'P' satisfies the min-heap property. What is the time taken to convert the given tree 'T' to max-heap? a. O(log n) b. O(n) c. O(nlog n) d. O(n2)
answer selected
in
Programming
Nov 1, 2016
265
views
data-structures
2
answers
9
Queue
A queue is a particular kind of abstract data type. Enqueue and Dequeue makes the queue FIFO data structure. There are several efficient implementations of FIFO queues. An efficient implementation is one which can perform the operations of enququeing and dequeueing in O(1) time. The best choice is : a] DLL c] SLL b] Dynamic Array d] any one of these
answer edited
in
Programming
Nov 1, 2016
1.3k
views
data-structures
queue
2
answers
10
Kerala PSC AP Exam
What will be the output of the following C program fragment? int n =1; switch(n) { case 1: printf("One"); case 2: printf("Two"); case 3: case 4: case 5: default: printf("Wrong Choice"); } A) One B) One Two Wrong Choice C) Two D) One Two
answer selected
in
Programming
Nov 1, 2016
223
views
programming-in-c
switch-case
1
answer
11
DS\Hashing
Consider a hash table of size seven, with starting index zero, and a hash function (3x + 4) mod 7. Assuming the hash table is initially empty, which of the following is the contents of the table when the sequence 1, 3, 8, 10 is inserted into the table using closed hashing? Note that denotes an empty location in the ... 8, 10, -, -, -, 3 (C) 1, -, -, -, -, -, 3 (D) 1, 10, 8, -, -, -, 3
commented
in
DS
Oct 9, 2016
2.3k
views
data-structures
hashing
3
answers
12
GATE CSE 2005 | Question: 5
A program $P$ reads in $500$ integers in the range $[0, 100]$ representing the scores of $500$ students. It then prints the frequency of each score above $50$. What would be the best way for $P$ to store the frequencies? An array of $50$ numbers An array of $100$ numbers An array of $500$ numbers A dynamically allocated array of $550$ numbers
commented
in
DS
Oct 9, 2016
17.4k
views
gatecse-2005
data-structures
array
easy
1
answer
13
Programming
answered
in
Programming
Oct 9, 2016
499
views
programming-in-c
array
4
answers
14
GATE IT 2006 | Question: 84
Consider a database with three relation instances shown below. The primary keys for the Drivers and Cars relation are did and cid respectively and the records are stored in ascending order of these primary keys as given in the tables. No indexing is ... cid = C.cid and C.colour = 'green' ) Karthikeyan, Boris Sachin, Salman Karthikeyan, Boris, Sachin Schumacher, Senna
answered
in
Databases
Oct 2, 2016
3.3k
views
gateit-2006
databases
sql
normal
1
answer
15
C -Programming
commented
in
Programming
Jul 13, 2016
563
views
programming-in-c
loop
1
answer
16
UGC NET CSE | June 2014 | Part 2 | Question: 18
Which of the following statement(s) is (are) not correct ? i. The $2$’s complement of $0$ is $0$. ii. In $2$’s complement, the left most bit cannot be used to express a quantity. iii. For an $n$-bit word ($2$’ ... ;s of positive numbers and $0$’s of the negative numbers. $i$ & $iv$ $i$ & $ii$ $iii$ $iv$
commented
in
Digital Logic
Jul 9, 2016
3.2k
views
ugcnetcse-june2014-paper2
digital-logic
number-representation
1
answer
17
UGC NET CSE | June 2012 | Part 3 | Question: 54
What is the size (in terms of bits) of Header length field in IPV4 header? 2 4 8 16
answered
in
Computer Networks
Jul 7, 2016
1.5k
views
ugcnetcse-june2012-paper3
computer-networks
2
answers
18
UGC NET CSE | June 2012 | Part 3 | Question: 41
Which layer of OSI reference model uses the ICMP (Internet Control Message Protocol)? Transport layer Data link layer Network layer Application layer
answered
in
Computer Networks
Jul 7, 2016
1.6k
views
ugcnetcse-june2012-paper3
computer-networks
osi-protocol
2
answers
19
Draw DFA
Plz somebody draw DFA for following regular expression: r=(1+10)*
edited
in
Theory of Computation
Jul 7, 2016
405
views
theory-of-computation
2
answers
20
UGC NET CSE | June 2012 | Part 3 | Question: 38
The following postfix expression is evaluated using a stack. 823^/23*+51*- . The top two elements of the stack after first * is evaluated 6,1 5, 7 3,2 1, 5
answered
in
DS
Jul 7, 2016
8.2k
views
ugcnetcse-june2012-paper3
data-structures
stack
1
answer
21
UGC NET CSE | June 2012 | Part 3 | Question: 29
Which of the following IP address class is a multicast address? Class A Class B Class C Class D
answered
in
Computer Networks
Jul 7, 2016
2.8k
views
ugcnetcse-june2012-paper3
computer-networks
ip-addressing
4
answers
22
UGC NET CSE | June 2007 | Part 2 | Question: 14
What is the output of the following $\text{’C’}$ program? main() { printf(“%x”,-1>>4); } $\text{ffff}$ $\text{0fff}$ $\text{0000}$ $\text{fff0}$
answer selected
in
Programming and DS
Jul 7, 2016
1.9k
views
ugcnetcse-june2007-paper2
programming-in-c
1
answer
23
Printf
1:Where I find printf body in turbo c I know the prototype defined in stdio.h header file but body is not there? 2:why without include header file program successfully compiled and run?
answer selected
in
Programming
Jul 7, 2016
146
views
programming
2
answers
24
ISRO2014-38
How many lines of output does the following C code produce? #include<stdio.h> float i=2.0; float j=1.0; float sum = 0.0; main() { while (i/j > 0.001) { j+=j; sum=sum+(i/j); printf("%f\n", sum); } } 8 9 10 11
answer selected
in
Programming
Jul 7, 2016
4.2k
views
isro2014
programming-in-c
loop
output
0
answers
25
what is the number of steps required to derive the string ((() ()) ()) for the folling grammar
closed
in
Programming
Jul 7, 2016
301
views
1
answer
26
suitable ds to reverse a string of characters
Which of the following data structured is most efficient in terms of both space and time to reverse a string of characters? Linked list Stack Array Tree
answer selected
in
Programming
Jul 7, 2016
199
views
2
answers
27
plz tell comparison between single linked list and double linked list in terms of insert/search/delete
answer selected
in
Programming
Jul 7, 2016
313
views
9
answers
28
ISRO2014-3
What is the output of the following C program? #include<stdio.h> #define SQR(x) (x*x) int main() { int a; int b=4; a=SQR(b+2); printf("%d\n",a); return 0; } 14 36 18 20
answer selected
in
Programming
Jul 7, 2016
6.4k
views
programming-in-c
macros
isro2014
3
answers
29
UGC NET CSE | June 2014 | Part 3 | Question: 11
Match the following with respect to the jump statements $:$ ... $\text{a-iv, b-iii, c-ii, d-i}$ $\text{a-iv, b-iii, c-i, d-ii}$
answered
in
Programming
Jul 5, 2016
1.3k
views
ugcnetjune2014iii
programming
programming-in-c
2
answers
30
ISRO2016-80
When a DNS server accepts and uses incorrect information from a host that has no authority giving that information, then it is called DNS lookup DNS hijacking DNS spoofing None of the mentioned
answer selected
in
Computer Networks
Jul 4, 2016
5.6k
views
isro2016
computer-networks
dns
Subscribe to GATE CSE 2023 Test Series
Subscribe to GO Classes for GATE CSE 2023
Quick search syntax
tags
tag:apple
author
user:martin
title
title:apple
content
content:apple
exclude
-tag:apple
force match
+apple
views
views:100
score
score:10
answers
answers:2
is accepted
isaccepted:true
is closed
isclosed:true
Recent Posts
From Rank 4200 to 64: My Journey to Success in GATE CSE Exam
What are the key things to focus on during the final 10-15 days before the GATE exam to improve performance?
All India GO Classes Mock test
NTA UGC NET JRF December 2022 Apply Online Form 2023
Life happens, just chill and do hardwork
Subjects
All categories
General Aptitude
(2.5k)
Engineering Mathematics
(9.3k)
Digital Logic
(3.3k)
Programming and DS
(5.8k)
Algorithms
(4.6k)
Theory of Computation
(6.7k)
Compiler Design
(2.3k)
Operating System
(5.0k)
Databases
(4.6k)
CO and Architecture
(3.8k)
Computer Networks
(4.6k)
Non GATE
(1.3k)
Others
(2.4k)
Admissions
(649)
Exam Queries
(842)
Tier 1 Placement Questions
(17)
Job Queries
(74)
Projects
(9)
Unknown Category
(853)
Recent Blog Comments
Eligibility Criteria: Discipline of...
4-year B.Tech./B.E. degree or a MSc./MCA degree...
I am not sure about others but I would pay 2X...
@DebRC Yes. This, time stamp and comparing...
Small feedback for next year. It would be great...