Hello Guys,
I have some queries in tcpdump as follows:
1. What filter would you use to find an IP Datagram that is greater than 40 bytes in total length?
a) ip[2:2] > 0x28
b) ip[2] > 0x28
c) ip[2] > 0x40
d) ip[2:2] > 0x40
Ans) a -- How do we get this answer? Please let me know how to calculate it.
2. To check if both the SYN and ACK Flags are set, use the filter of tcp[13]=18. (True or False)
Ans) True --- How is it true?? If tcp[13]=18 then ACK and PSH flags should be set right??
Thanks a lot for helping me. 

Suparn