1 votes
2 answers
1
What will be the path from A-H if BFS is used in the following graph?
0 votes
0 answers
2
L = {a^(p+q) b^(p+q) a^p , p,q>=0}Which one of the following is true about L?L is a regularL is CFL but not regularL is not a CFL
0 votes
1 answer
3
What will be the worst case time complexity for the following code segment?int count=0,N; for(i=0;i<N*2;i++){ for(j=0;j<i/3;i++){ for(k=0;k<j*j;k++){ count++; } } }Option...
0 votes
0 answers
4
If N = 670 in base 9 system. Then find the radix complement of N.
1 votes
1 answer
5
If L is any Language and L' be its complement. L is CFL. Which of these two statements is true:1. For any value of L, L' is not in CFL2. There exists atleast one value of...