Recent questions tagged tifr2016

2 votes
1 answer
1
https://gateoverflow.in/30720/tifr2016-b-7the above question is already discussedbut still am not clear enufcan someone help
7 votes
1 answer
11
Consider the recursive function $\mathsf{mc91}$.int mc91(int n) { print n if (n 100) { return n-10; } else { return mc91(mc91(n+11)); } }Let $\mathsf{Out}=\{n : \text{ t...
3 votes
1 answer
13
Assume $P \neq NP$. Which of the following is not TRUE?$2$-SAT in NP$2$-SAT in coNP$3$-SAT is polynmial-time reducible to $2$-SAT4-SAT is polynmial-time reducible to $3$-...
3 votes
1 answer
27
Consider the following set of $3n$ linear equations in $3n$ variables:$\begin{matrix} x_1-x_2=0 & x_4-x_5 =0 & \dots & x_{3n-2}-x_{3n-1}=0 \\ x_2-x_3=0 & x_5-x_6=0 & & x_...