1 votes
363
0 votes
366
which topology is most used in an organization and why?
1 votes
367
Trace the error:void main() { int *b, &a; *b=20; printf(“%d, %d”, a, *b) }No errorLogical errorSyntax errorSemantic error
1 votes
368
#include <stdio.h #define crypt(s,t,u,m,p,e,d) m s u t #define begin crypt(a,n,i,m,a,t,e) int begin() { printf("Hello\n"); return 0; }Options are :(a) Hello (b) Link erro...
0 votes
369
Experiments indicate that heap sort requires_____ as much time as quick sort for randomly sorted inputa)twice b)thrice c)four times d)five times
0 votes
372
A club with x members is organized into four committees according to the following rules:each member belongs to exactly two committeesEach pair of committees has exactly ...
1 votes
374
#include<stdio.h void main(){ m(); void m(){ printf("hi\n"); } } please explain ?
14 votes
375
What exactly Homomorphism of a language is? What is the need of it? .. And how is it closed under regular languages?
0 votes
377
When $n = 2^{2k}$ for some $k \geqslant 0$, the recurrence relation$T(n) = √(2) T(n/2) + √n$, $T(1) = 1$evaluates to :$√(n) (\log n + 1)$$√(n) \log n$$√(n) \log...
3 votes
378
In a LAN environment, which is better: Token Ring or Ethernet and why?
0 votes
382
For a real number a, define $a^+=maxa, 0$. for example $2^+ = 2, (-3)^+=0$. Then for two real number a and b, the equality $(ab)^+ = (a^+)(b^+)$ holds if and only ifboth ...
0 votes
383
#include int main() { int *p, a; p = &a; scanf("%d",p); printf("a = %d *p = %d", a, *p); }a = 32766 *p = 32766a = 32767 *p = 32767a = -1219137971 *p = -1219137971No Outpu...
1 votes
384
0 votes
385
An actor in an animation is a small program invoked _____ per frame to determine the characteristics of some object in the animation.oncetwice30 times60 times
1 votes
390
What will be the output of the following segment of the program?main() { char *s=&rdquo;hello world&rdquo;; int i=7; printf(&ldquo;%, *s, i, s); }syntax errorhello whello...