Method 1 - Without checking options,
A host's default gateway must be the router interface that is in the SAME subnet as the host.
Mask - 255.255.255.224 => 256 - 224 = 32
X = 192.168.1.97 So subnets are,
Network Host Range Broadcast
0 1–30 31
32 33–62 63
64 65–94 95
96 97–126 127
128 129–158 159
... ... ...
Since, 97 lies in 96–127,
X = 192.168.1.96/27
Now, let's see router interfaces,
R1 : 192.168.1.135 ............falls in 128–159 (different subnet)
192.168.1.110 ............falls in 96–127 (same subnet)
R2 : 192.168.1.67 ............falls in 64–95 (different subnet)
192.168.1.155 ............falls in 128–159 (different subnet)
Only, one interface is same as of X's interface
Ans 192.168.1.110
Method 2 - With checking options,
Host => .97
Mask => 255.255.255.224 => /27 => 96–127
Now, check options
Ip Subnet
67 64–95 .....different subnet
110 96–127 ......same subnet
135 128–159 .....different subnet
155 128–159 .....different subnet
Hence, Ans (B)
Method 3 - Even faster method
X = .97 = 64 + 32 + 1
Subnet = .224 = 128 + 64 + 32
-----------------------------------------------
= 64 + 32 i.e 011 (starting 3 bits)
Check options,
A - 67 = 010 (not matches)
B - 110 = 011 (matches)
C - 135 = 100 (not matches)
D - 155 = 100 (not matches)
Hence, Ans (B)