Long Questions (20*2=40 Marks)
1. A 10 μH inductor, 40 pF capacitor, and a 628 Ω resistor are connected to form a series RLC circuit. Calculate the Q-factor of this circuit at resonant frequency.
2.50
2. A 400 mH coil of negligible resistance is connected to an AC circuit in which an effective current of 6 mA is flowing. Find out the voltage across the coil if the frequency is 1000 Hz.
15.07V
15079.67 V
150.79 V
15079 V
3. Convert (312)₈ into decimal:
(200)₁₀
(202)₁₀
(204)₁₀
(206)₁₀
4. A microcontroller is running a program with a clock frequency of 8 MHz. The microcontroller receives an interrupt request from an external device that requires 20 cycles to service. What is the time required to service the interrupt?
2.5 µs
20 ns
40 ns
160 ns
5. What is the output of the following code snippet?
int x = 7;
int y = 11;
printf("%d", ++x % y);
7
9
8
4
6. Which of the following correctly defines a default argument in a function in C++?
void function (int x = 0, int y);
void function (int x, int y = 0, int z);
void function (int x = 0, int y, int z);
void function (int x, int y=0, int z = 0);
7. Which of the following is a mode of transfer in I/O operations that enables the CPU to perform other tasks while the data transfer is taking place?
Programmed I/O
Interrupt-driven I/O
Direct memory access (DMA)
Memory-mapped I/O
8. What is the main difference between a real-time operating system (RTOS) and a general-purpose operating system (GPOS)?
RTOS is designed for time-critical applications, while GPOS is not
RTOS is more complex than GPOS
RTOS has more features than GPOS
RTOS can run on any type of hardware, while GPOS is designed for specific hardware configurations
9. What is the purpose of Address Resolution Protocol (ARP)?
To convert IP addresses to MAC addresses
To convert MAC addresses to IP addresses
To route packets between networks
To detect and correct errors in data transmission
10. Which network layer protocol is used to fragment and reassemble packets that are too large to be transmitted over the network?
IP
ARP
ICMP
TCP
11. Five Equal Capacitors are connected in series have a resultant capacitance of 4µF. When these are Put in parallel and Charged to 400 V, the total Energy stored is:
16 J
8 J
4 J
2 J
12. A 100 µF Capacitor rated for 400 V, 50 Hz has tanδ = 0.01. What will be the rated dielectric loss?
100.5 W
50.2 W
10 W
222 W
13. What does the following function do for a given Linked List with the first node as head?
void fun1(struct node* head)
{
if (head == NULL)
return;
fun1(head->next);
printf("%d ", head->data);
}
Prints all nodes of linked lists
Prints all nodes of linked list in reverse order
Prints alternate nodes of Linked List
Prints alternate nodes in reverse order
14. Consider the following three processes in the FCFS. What is the average waiting time?
P1
3
0
P2
6
3
P3
6
9
2
3
4
5
15. What kind of support is provided by the Code Generation CASE tool?
Cross referencing queries and requirements tracing
Transformation of design records into application software
Compiling, interpreting or applying interactive debugging code
Transformation of design records into application software AND Compiling, interpreting or applying interactive debugging code
16. What is the output of the following C code?
int x = 10, y = 20;
int *p = &x, *q = &y;
*p = *q;
*q = 30;
x = 10, y = 20
x = 20, y = 30
x = 30, y = 20
x = 30, y = 30
17. A spectrum of 30 MHz is allocated to a cellular system, which uses two 25 KHz simplex
channels to provide full duplex voice channels. What is the number of channels available per cell for 4-cell reuse factor? a) 150 channels b) 600 channels c) 50 channels d) 85 channels
18. A rate ½ convolution code with is used to encode a data resequencing occurring at a rate of 1 Kbps. The modulation is binary PSK. The DS spread spectrum sequence has a chip rate of 10 MHz. The coding gain is ………..
a) 9 dB b) 7 dB c) 12 dB d) 24 dB
19. Effective monthly interest rate will be …………., if nominal interest rate of 10% accounted for continuous compounding.
a) 1% b) 0.84% c) 1.2% d) 2%
20. By considering the following activities of a project, determine the project duration:
F
-
6
G
F
4
H
F
5
I
G, H
3
J
G, I
7
13 days
16 days
20 days
25 days
Last updated