1 answer
11
I want to understand why the statement “I am lying” is a liars paradox as I unable to to toggle between the truth values for this statement. Thanks in advance.
0 answers
13
3 answers
15
#include <stdio.h>int f(int n){ static int r = 0; if (n <= 0) return 1; r=n; return f(n-1) + r;}int main() { printf("output is %d", f(5)); return 0;}Ou...
0 answers
17
Let f(x-y) = $\frac{f(x)}{f(y)}$ for all x,y $\epsilon$ R and f’(0) = p, f’(5) = q. Then the value of f’(-5) is q-q$\frac{p}{q}$$\frac{p^2}{q}$
1 answer
18
9 answers
22
Let $G$ be a complete undirected graph on $6$ vertices. If vertices of $G$ are labeled, then the number of distinct cycles of length $4$ in $G$ is equal to$15$$30$$90$$36...
1 answer
25
1 answer
27
S- SS | AaA->Sb | a(a) prove that the grammar is ambiguous.(b) find the follow for the grammar(c) then remove the left recursion from the grammar.
1 answer
28
The number of insertion sequences of the numbers {1,2,3,4,5,6,7} which would lead to the following BSTHow to tackle this kind of problem. Anyone!
1 answer
30