0 answers
1
Does previous year gate score degrade for next year. Like if I have say 700 score in 2017. When I apply to some college using 2017 score will it remain 700 or it is reduc...
7 answers
10
The eigen vector $(s)$ of the matrix $$\begin{bmatrix} 0 &0 &\alpha\\ 0 &0 &0\\ 0 &0 &0 \end{bmatrix},\alpha \neq 0$$ is (are)$(0,0,\alpha)$$(\alpha,0,0)$$(0,0,1)$$(0,\al...
4 answers
11
Let $f(x)= |x|^{3/2}, x \in \mathbb{R}$. Then$f$ is uniformly continuous.$f$ is continuous, but not differentiable at $x=0$.$f$ is differentiable and $f ' $ is continuous...
6 answers
12
The value of $\displaystyle \lim_{x \rightarrow \infty} (1+x^2)^{e^{-x}}$ is$0$$\frac{1}{2}$$1$$\infty$
1 answer
13
Compute without using power series expansion $\displaystyle \lim_{x \to 0} \frac{\sin x}{x}.$
1 answer
14
Construct the dfa that accepts all the strings of a's and b's where no of a's is even OR no of b's is odd.
2 answers
16
Choose the word most similar in meaning to the given word:EduceExertEducateExtractExtend
2 answers
18
3 answers
23
Which one of the following combinations is incorrect?Acquiescence - SubmissionWheedle - RoundaboutFlippancy - LightnessProfligate - Extravagant
3 answers
25
How many sub strings of different lengths (non-zero) can be formed from a character string of length $n$?$n$$n^2$$2^n$$\frac{n(n+1)}{2}$
1 answer
27
TRUE / FALSEAll ∈-productions can be removed from any context free grammar.
1 answer
28
#include <stdio.h char *str[]={"FirstSring","Is","Already","Written"}; char strp[]={str+3,str+2,str+1,str}; char *strpp=strp; int main(void) { printf("%s", ++strpp); pr...