The simple interest on a sum of money for 3 years at 623% per annum is $6750. What will be the compound interest on the same sum at the same rate for the same period, compounded annually?
Find the odd man out from the given series
2, 6, 12, 20, 32, 42, 56, 72
The sides of a rectangle are in the ratio 4:5 and its area is 2000 sq.m. Find the perimeter of the rectangle?
The probability that Harshini will get married within 365 days is ‘a’ and the probability that her colleague Sony gets married within 365 days is ‘b’. Find the probability that only one of the two gets married at the end of 365 days.
Statement 1: Some toys are Cows.
Statement 2: Some toys are Rabbits.
Deduction 1: All toys are Cows and Rabbits.
Deduction 2: Some cows are Rabbits
Caterpillar: Butterfly :: __?__: Cockroach
The process of reshaping something is known as _________.
The newspaper sale was not good, so the manager took the bull by the horns and replaced the editor.
#include<stdio.h>
void main()
{int a=3,b=6;
float x=4.5;
if(a*b>x*x)
printf("linkon\n");
else if(a*b>(int)x*x)
printf("lily\n");
else if(a*b>(int)x*(int)x)
printf("logan\n");
}
Number of times ‘fan’ will be printed by the following program is?(2 marks)
#include <stdio.h>
int main()
{
int i = 524;
for (; i; i >>= 1)
printf("fan\n",i);
return 0;
}
#include<stdio.h>
f1(int b)
{
if(b==0)
return 0;
else
{
printf("a");
f1(b--);
}
}
void main()
{
int a;
a=f1(10);
printf("%d", a);
}
What will be the output of the above program?
#include<stdio.h>
void main()
{
char arr[]="\0";
printf("%d",printf("%s",arr));
if(printf("%s\t",arr))
printf("Good\n");
else
printf("Nice\n");
}
X = bcadsce
Y = csadesg
Objects
|
P
|
Q
|
R
|
S
|
T
|
V
|
W
|
X
|
Weights
|
20
|
10
|
15
|
5
|
30
|
4
|
19
|
8
|
Profits
|
36
|
25
|
30
|
9
|
30
|
15
|
19
|
18
|

Consider the given below transition table over π΄={a,b,c} where q0 is initial state and all are final states.
Consider all the strings accepted by above FA which is ending with “a” and having length less than equal to 2021. The number of strings will be _________.
L1=(a+b)*ab
L2=(a+b)*b
Consider a language L3= L1 U L2. The minimal DFA which accepts L3 will have ______number of states.
S→ 0S1 | 0A | 1B
A→ 0A | ∈
B→ 1B | ∈
E→ π1
E→ T
T→π2
T→F
F→(E)
F→id {print id.lexval ;}
Select the correct entries in place of π1 and π2 from the options.
R: a*b + c # d
Here # is one of the operator from set {+, −, *}, where the precedence and associativity of these operators are same as defined in C language. If the CPU with single register is used to evaluate the expression R, then what could be possible value of operator #, if expression need to be evaluated without storing the intermediate value into memory, i.e., without swapping any intermediate value from register into memory and fetching back from memory into register.
Select the correct option/ options. [MSQ]
S1: To fill a column in tuple when the column does not really “exist” for the particular tuple.
S2: To leave columns in a tuple marked as “unknown” when the actual value is unknown.
S1: Lock upgradation and degradation are allowed only in the shrinking phase.
S2: 2-phase locking allows lock degradation in shrinking phase.
F1 = {M → TN, P → QM} and
F2 = {M → N, P → Q, P → MT, MN → T}
Which of the following statement is true?
Consider the following five processes, with their arrival times and execution times given in milliseconds.

Assuming no context switch overhead the average waiting time using Roundβrobin with time slice of 3 ms (assume P1 starts executing first in the beginning) (in ms):
int count = 0;
ret = fork();
if(ret == 0) {
printf("count in child=%d\n", count);
}
else {
count = 1;
}
|
After the child process is forked, suppose that the parent process is scheduled first, before the child process. Assume that the child process is scheduled for the first time only after the parent completes its execution. Now which of the following statement(s) is/are TRUE ? [MSQ]
Consider the information about the following processes :

The CPU utilization using the Shortest Job First (SJF) Scheduling policy is :
S1: In 802.11, each station before transmitting a data frame, the station must send an RTS frame and receive corresponding CTS frame in order to avoid the hidden terminal problem.
S2: 802.11 frames using a 32-bit checksum, to detect error present in the received frame.
S3: 802.11 uses exponential backoff algorithm when two or more station senses the channel busy.
Which of the following options is true?
S1: Token bucket shapes bursty traffic into fixed-rate traffic by averaging the data rate.
S2: Leaky buckets are more restrictive compared to the token bucket.
S3: A choke packet is a congestion-control mechanism in which a packet is sent by a node to the source to inform it of congestion.
Which of the given statements are false?
• C1 has IP address 197.168.76.24 and network mask 255.255.192.0.
• C2 has IP address 197.168.114.28 and network mask 255.255.224.0.
Which one of the following statements is true?
[Note: Dn is the divisor set of n]

A blindfold person selects a single pen at a time without replacement. _______ number of selections to be taken place that atleast 4 blue pens are selected.
is a singular matrix when x = ________
Which of the following is an I/O transfer mode? [MSQ]
Consider a RISC machine where each instruction is exactly 2 bytes long. Conditional and unconditional branch instructions use PC-relative addressing mode with Offset specified in bytes to the target location of the branch instruction. Further the Offset is always with respect to the address of the next instruction in the program sequence. Consider the following instruction sequence
If the target of the branch instruction is i, then the decimal value of the Offset is _______
Consider a computer system which uses 16 bit physical addresses. It has 2KB direct mapped cache. Each cache block is of size 64Bytes. Given that it is a byte addressable memory, what are the number of cache hits and misses respectively if the following word addresses are accessed in a sequence:
28, 144, 2176, 2180, 128, 2180, 2185.
The given word addresses are in decimal values and the cache is initially empty.

The total number of clock cycles required to execute the program is
f(w,x,y,z)= Σ(4,5,7,12,13,14,15).
Which of the following is false? [MSQ]