Most answered questions in Others

2 votes
3 answers
3
Consider the following game tree in which root is a maximizing node and children are visited left to right. What nodes will be pruned by the alpha-beta pruning?$I$$HI$$CH...
1 votes
2 answers
4
Asymmetric encryption is not suitable for ConfidentialityAuthenticationKey ExchangePrevention of Denail of Service
0 votes
2 answers
6
A classless address is given as $167.199 .170 .82 / 27$. The number of addresses in the network is$64$ addresses$32$ addresses$28$ addresses$30$ addresses
0 votes
2 answers
7
Match List I with List II :List IList II(A) Type $0$(I) Finite automata(B) Type $1$(II) Tuning machine(C) Type $2$(III) Linear bound automata(D) Type $3$(IV) Pushdown aut...
0 votes
2 answers
8
Which of the following algorithm design approach is used in Quick sort algorithm?Dynamic programmingBack TrackingDivide and conquerGreedy approach
0 votes
2 answers
10
??????????
0 votes
2 answers
12
2 votes
2 answers
13
Let$$\begin{array}{} V_1 & = & \frac{7^2+8^2+15^2+23^2}{4} – \left( \frac{7+8+15+23}{4} \right) ^2, \\ V_2 & = & \frac{6^2+8^2+15^2+24^2}{4} – \left( \frac{6+8+15+24...
0 votes
2 answers
14
Let $w=\log(u^2 +v^2)$ where $u=e^{(x^2+y)}$ and $v=e^{(x+y^2)}$. Then $\frac{\partial w }{\partial x} \mid _{x=0, y=0}$ is$0$$1$$2$$4$
1 votes
2 answers
15
For positive real numbers $a_1, a_2, \cdots, a_{100}$, let $$p=\sum_{i=1}^{100} a_i \text{ and } q=\sum_{1 \leq i < j \leq 100} a_ia_j.$$ Then $q=\frac{p^2}{2}$$q^2 \geq ...
0 votes
2 answers
17
Baud rate measures the number of ____ transmitted per secondSymbolsBitsByteNone of these
0 votes
2 answers
18
#include<stdio.h main() { char c = 'A'+255; printf("%c", c); }
0 votes
2 answers
19
#include <stdio.h main() { char *p = "Sanfoundry C-Test"; p[0] = 'a'; p = 'b'; printf("%s", p); }
0 votes
2 answers
20
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}