0 votes
1 answer
31
The circuit shown in the figure converts(a) BCD to binary code(b) Binary to Excess-3 code(c) Excess-3 to Gray code(d) Gray to Binary code
0 votes
0 answers
32
In C++, size of float and double data types are 4 bytes and 8 bytes respectively. Calculate range ( minimum and maximum values) of float and double:
0 votes
1 answer
33
Pick the correct statement A. Bit rate can never be less than Baud rateB. Baud rate can never be less than Bit rateC. Bit rate and Baud rate are always samr.D. None of th...
0 votes
1 answer
34
CISC is related to:1. Hardware2. Software3. Firmware4. None of the above
14 votes
3 answers
35
The time complexity of computing the transitive closure of a binary relation on a set of $n$ elements is known to bea. $O(n\log n)$b. $O\left( n^{3/2}\right)$c. $O( n^3 )...
5 votes
2 answers
36
If $L$ and $P$ are two recursively enumerable languages then they are not closed underKleene star $L^*$ of $L$Intersection $L \cap P$Union $L \cup P$Set difference
3 votes
3 answers
37
Which of these is a super class of all errors and exceptions in the Java language?Runtime ExceptionsThrowableCatchableNone of the above
7 votes
2 answers
38
Which of the following statement is true?Hard real time OS has less jitter than soft real time OSHard real time OS has more jitter than soft real time OSHard real time OS...
5 votes
1 answer
39
The Linux command mknod myfifo b 4 16will create a character device if user is rootwill create a named pipe FIFO if user is rootwill create a block device if user is root...
5 votes
3 answers
40
We use malloc and calloc for:Dynamic memory allocationStatic memory allocationBoth dynamic memory allocation and static memory allocationNone of these
9 votes
3 answers
41
Choose the equivalent prefix form of the following expression(a+(b-c))*((d-e)/(f+g-h))*+a-bc/-de-+fgh*+a-bc-/de-+fgh*+a-bc/-ed-+fgh*+ab-c/-de-+fgh
6 votes
4 answers
42
A critical regionis a piece of code which only one process executes at a timeis a region prone to deadlockis a piece of code which only a finite number of processes execu...
6 votes
1 answer
44
Which product metric gives the measure of the average length of words and sentence in documents?SCI numberCyclomatic complexityLOCFog index
8 votes
4 answers
45
What is the output of the following program?#include<stdio.h int tmp=20; main() { printf("%d", tmp); func(); printf("%d", tmp); } func() { static int tmp=10; printf("%d",...
8 votes
5 answers
47
What will be the output of the following C code?#include <stdio.h main() { int i; for(i=0;i<5;i++) { int i=10; printf("%d" , i); i++; } return 0; }10 11 12 13 1410 10 10 ...
4 votes
1 answer
48
In software maintenance tackling the changes in the hardware or software environment where the software works, isCorrective maintenancePerfective maintenanceAdaptive main...
6 votes
1 answer
49
The best data structure to check whether an arithmetic expression has balanced parenthesis is a:QueueStackTreeList
5 votes
3 answers
50
Which of the following is not a life cycle model?Spiral modelPrototyping modelWaterfall modelCapability maturity model