#19601
926
views
1 answers
0 votes
Web links are stored within the page itself and when you wish to ‘jump’ to the page that is linked, we select the hotspot or anchor. This technique is calledHypertext...
#19602
1.1k
views
1 answers
1 votes
A decimal has $25$ digits. The number of bits needed for its equivalent binary representation is approximately,$50$$74$$40$$60$
#19603
922
views
1 answers
0 votes
Which of the following is minimum error code?Octal CodeBinary CodeGray CodeExcess-$3$ Code
#19604
895
views
1 answers
3 votes
Match list $I$ with List $II$ and select the correct answer using the codes given below the lists.$${\begin{array}{|c|c|c|}\hline&\textbf{List I} & & \textbf{List II}\\\h...
#19605
739
views
1 answers
2 votes
A binary search tree contains the values-$1,2,3,4,5,6,7$ and $8.$ The tree is traversed in preorder and the values are printed out. Which of the following sequences is a ...
#19606
849
views
1 answers
1 votes
The question is based on the following program fragment.f(intY[10],int x){ int u,j,k; i=0;j=9; do{ k=(i+j)/2; if(Y[k] < x) i=k; else j=k; } ...
#19607
581
views
1 answers
0 votes
The number of the edges in a regular graph of degree $’d’$ and $’n’$ vertices is Maximum of $n,d$$n+d$$nd$$nd/2$
#19608
568
views
1 answers
0 votes
A language $L$ for which there exists a $TM\;\;’T’,$ that accepts every word in $L$ and either rejects or loops for every word that is not in $L,$ is said to beRecurs...
#19609
3.2k
views
1 answers
0 votes
Consider an $\varepsilon$-tree CFG. If for every pair of productions $A\rightarrow u$ and $A\rightarrow v$If $\text{FIRST(u)} \cap \text{FIRST(v)}$ is empty then the CFG ...
#19610
919
views
1 answers
1 votes
E-R model uses this symbol to represent weak entity set?Dotted rectangleDiamondDoubly outlined rectangleNone of these
#19611
576
views
1 answers
0 votes
By open domain CASE tools we meantools available in open domainsoftware packages which can be downloaded from the internetsoftware packages to aid each phase of the syste...
#19612
1.0k
views
1 answers
1 votes
A can is filled with $5$ paise coins. Another can is filled with $10$ paise coins. Another can is filled with $25$ paise coins. All the cans are given wrong labels. If th...
#19613
681
views
1 answers
2 votes
What is the maximum value of the function $f(x) = 2x^{2} – 2x + 6$ in the interval $[0,2]?$$6$$10$$12$$5,5$
#19614
492
views
1 answers
0 votes
The value of the Integral $I = \displaystyle{}\int_{0}^{\pi/2} x^{2}\sin x dx$ is$(x+2)/2$$2/(\pi-2)$$\pi – 2$$\pi + 2$
#19615
1.7k
views
1 answers
0 votes
Which of the following would not be specified in a communication protocol?Header contentsTrailer contentsError CheckingData content of message
#19616
596
views
1 answers
0 votes
The capacity relationship is given by$C = W\log_{2}(1+S/N)$$C = 2W\log_{2}(1+S/N)$$C = W\log_{2}(1-S/N)$$C = W\log_{10}(1+S/N)$
#19617
1.1k
views
1 answers
0 votes
Choose the correct statements.A total recursive function is also a partial recursive functionA partial recursive function is also a total recursive functionA partial recu...
#19618
2.1k
views
1 answers
0 votes
The address sequence generated by tracing a particular program executing in a pure demand paging system with $100$ records per page, with $1$ free main memory frame is re...
#19619
2.0k
views
1 answers
1 votes
Assume transaction $A$ holds a shared lock $R.$ If transaction $B$ also requests for a shared lock on $R.$ It willresult in deadlock situationimmediately be grantedimmedi...
#19620
1.7k
views
1 answers
2 votes
Table employees has $10$ records. It has a non-NULL SALARY column which is also UNIQUE. The SQL statementSELECT COUNT(*)FROM EMPLOYEEWHERE SALARY ALL (SELECT SALARY FROM...