November 10, 2023

OOPS

Question 140 Is null an object? A yes B No C Sometimes yes D None of these OOPSPropertiesNielit Scientific Assistance IT 15-10-2017 Question 140 Explanation:  If […]
November 11, 2023

COCOMO-Model

Question 2 A company needs to develop digital signal processing software for one of its newest inventions. The software is expected to have 40000 lines of […]
November 11, 2023

Algorithm-Paradigms

Question 2 Given below are some algorithms, and some algorithm design paradigms A. Dijkstra’s Shortest Path 1. Divide and Conquer B. Floyd-Warshall algorithm to 2. Dynamic […]
November 11, 2023

GATE 2020

Question 50 Let G = (V,E) be a weighted undirected graph and let T be a Minimum Spanning Tree (MST) of G maintained using adjacency lists. […]
November 11, 2023

Algorithms

Question 42 Which one of the following algorithm design techniques is used in finding all pairs of shortest distances in a graph? A Dynamic programming B […]
November 11, 2023

GATE 2002

Question 17 In the C language A At most one activation record exists between the current activation record and the activation record for the main B […]
November 11, 2023

Programming

Question 40 Consider the C program shown below. #include #define print(x) printf("%d", x) int x; void Q(int z) { z += x; print(z); } void P(int […]
November 11, 2023

GATE 2004

Question 2 Consider the following C function. void swap (int a, int b) { int temp; temp = a; a = b; b = temp; } […]
November 11, 2023

GATE 1998

Question 50 Faster access to non-local variables is achieved using an array of pointers to activation records called a A stack B heap C display D […]
November 11, 2023

Pointers

Question 6 Which of the following declares ‘pf’ as a pointer to a function, which returns an integer quantity and requires two integer arguments ? A […]
November 11, 2023

Database-Management-System

Question 384 A____is a pictorial depiction of the schema of a database that shows the relations in the databases, their attributes, and primary keys and foreign […]
November 11, 2023

TNPSC-2017-Polytechnic-CS

Question 6 The relation schema describes: A Set of tuples (Records) B Set of fields (Column heads/Attributes) C Set of associated values D Domain of each […]