Recent questions tagged isro2018

1 votes
1 answer
1
#include <stdio.h int main() {int i,j,x;scanf("%d ",x);i=1;j=1;while(i<10){j=j*i;i=i+1;if(i==x) break;}return 0;}
5 votes
2 answers
2
Consider the following program{ int x=1; printf("%d",(*char(char*)&x)); }Assuming required header files are included and if the machine in which this program is executed ...
3 votes
3 answers
5
The following $C$ program:{ fork(); fork(); printf("yes"); }If we execute this core segment, how many times the string yes will be printed?Only once2 times4 times8 times
3 votes
3 answers
6
Considering the following table in a relational database : $$\begin{array}{|c|c|c|c|} \hline \textbf{Last Name} & \textbf{Rank} & \textbf{Room} & \textbf{shift} \\ \hline...
2 votes
1 answer
12
________ can detect burst error of length less than or equal to degree of the polynomial and detects burst errors that affect odd number of bits.Hamming CodeCRCVRCNone of...
1 votes
1 answer
13
3 votes
2 answers
14
5 votes
3 answers
15
A class of $30$ students occupy a classroom containing $5$ rows of seats, with $8$ seats in each row. If the students seat themselves at random, the probability that sixt...
3 votes
3 answers
16
The domain of the function $\log (\log \sin(x))$ is:$0<x<$$\pi$$2n$$\pi$$<$$x$$<$$(2n+1)$$\pi$, for $n$ in $N$Empty setNone of the above
8 votes
3 answers
18
4 votes
3 answers
20
Given $\sqrt{224_{r}}$= $13$$_{r}$ the value of radix $r$ is$10$$8$$6$$5$
4 votes
2 answers
27
4 votes
2 answers
28
The $FSM$ (Finite State Machine) machine pictured in the figure aboveComplements a given bit patternFinds $2's$ complement of a given bit patternIncrements a given bit pa...