The answers are 1C, 2B, 3C!
1C
TCP 3268 is the Global Catalog, used for LDAP queries on Domain Controllers (and is therefore Windows 2019). Found on DCs that have info on everything in a forest.
2B
The Secure flag prevents a cookie from being sent over HTTP, ensuring it's sent over encrypted channels only (i.e. HTTPS). The Domain flag, if set, states which hosts are allowed to receive the cookie (defaults to host that set the cookie if not set and excludes subdomains). The HttpOnly flag prevents the cookie from being read by client side scripts, e.g. JavaScript (assisting in preventing XSS attacks for example), and the Path flag, if set, means that the cookie will only be sent if the requested URI includes the path, which must exist, e.g. a cookie set with Path=/support will only be sent if the request is GET /support or /support/ticket or /support/ticket/112/details etc.
3C
Answer above! 