closed by
722 views
2 votes
2 votes
closed as a duplicate of: GATE IT 2007 | Question: 18

A firewall is to be configured to allow hosts in a private network to freely open TCP connections and send packets on open connections. However, it will only allow external hosts to send packets on existing open TCP connections or connections that are being opened (by internal hosts) but not allow them to open TCP connections to hosts in the private network. To achieve this the minimum capability of the firewall should be that of

  1. A combinational circuit
  2. A finite automaton
  3. A pushdown automaton with one stack
  4. A pushdown automaton with two stacks
closed by

Related questions

2 votes
2 votes
0 answers
1
3 votes
3 votes
0 answers
2
Tesla! asked Apr 22, 2018
718 views
In a min-heap with $n$ elements with the smallest element at the root, the $7^{th}$ smallest element can be found in time$\Theta (n \log n)$$\Theta (n)$$\Theta(\log n)$$\...
3 votes
3 votes
0 answers
3
Tesla! asked Apr 22, 2018
721 views
Which of the following system calls does not return control to the calling point, on termination?a) forkb) execc) ioctld) none of the option
1 votes
1 votes
3 answers
4
Tesla! asked Apr 22, 2018
864 views
void main(){ fork(); fork(); printf("Hello"); }How many time print function will execute