Time Left - 08:00 mins

DMRC CS 2018 Practice Quiz - 15(Tech)

Attempt now to get your rank among 231 students!

Question 1

Which of the following algorithm design techniques is used in the quick sort algorithm?

Question 2

Which of the following are equivalent to the statement?

Question 3

In case of network layer, which among the following is incorrect?

Question 4

Find number of micro-operations required to fetch an instruction from memory.

Question 5

Highlight the correct sequence as per SQL working?
1) Making connection to MySql server
2) Selecting database
3) Fetching of data from query
4) Executing of SQL query

Question 6

Identify the correct statement from the following

Question 7

The output X of the below logic circuit is
Description: F:\GradeStack Courses\GATE Tests (Sent by Ravi)\GATE-ME-20-April\GATE-IES-EC-Digital=Electronics-Circuits_files\image272.jpg

Question 8

Which of the following is not a technology driver for an information system?

Question 9

Which one of the following is a cryptographic protocol used to secure HTTP connection?

Question 10

Consider the following three C functions:
[P1] int*g(void)
{
intx=10;
return(&x);
}
[P2] int*g(void)
{
int*px;
*px=10;
returnpx;
}
[P3] int*g(void)
{
int*px
px =(int*)malloc (size of (int));
*px=10;
returnpx;
}
Which of the above three functions are likely to cause problems with pointers?
  • 231 attempts
  • 1 upvote
  • 3 comments
Jun 8GATE & PSU CS