Recent activity by Anmol_Binani

0 answers
1
Can someone please share with me a link from where I can download the proper pdf of the book Software Engineering by K. K. Agarwal.I got a pdf which is like presentation ...
5 answers
3
Consider the following routing table at an IP router:$$\begin{array}{|l|l|l|} \hline \textbf {Network No} & \textbf {Net Mask} & \textbf{Next Hop} \\\hline \text {128.96...
2 answers
5
If a directed graph G is cyclic but can be made acyclic by removing one edge,then a depth-first search in Gwill encounter exactly one back edge??
0 answers
6
Detailed Solution please..!
0 answers
7
DFA please.
0 answers
8
How to solve this.. help please.!
1 answer
9
0 answers
10
How to solve this question.?
0 answers
11
How to solve this question. Please guide.!
0 answers
12
How to solve this question in exam.?
0 answers
13
Solution please.!
0 answers
14
The answer should be 29.6ms right?
0 answers
15
0 answers
16
What should be the answer.. please explain the solution.!
2 answers
18
//Consider the program void function(int n) { int i,j,count=0; for(i=n/2;i<=n;i++) for(j=1;j<=n;j=j*2) count++; }The complexity of the program is$O(\log n)$$O(n^2)$$O(n^2...
1 answer
19
How to work on such question ? Answer is : 19#include <stdio.h>int main() { int i = 4, ans; ans = ++i + ++i + ++i; printf("%d\n", ans); return 0;}
1 answer
21
If a directed graph G is cyclic but can be made acyclic by removing 1 edge then a DFS will encounter exactly 1 Backedge. True or false ?