Select correct statements about Kubernetes manifest YAML

Question:
Which two of the following statements about the provided YAML manifest are correct? (Choose two)

apiVersion: apps/v1
kind: Pod
metadata:
  labels:
    app: do100b
  name: do100b
spec:
  replicas: 1
  selector:
    matchLabels:
      app: do100b
  template:
    metadata:
      labels:
        app: do100b
    spec:
      containers:
      - name: do100b
  1. The YAML manifest is correct
  2. The YAML manifest is missing the image of the application
  3. The YAML manifest contains an incorrect label. The label on the Deployment resource does not match the label on the Pod resource
  4. The YAML manifest contains an incorrect Kind
Answer:
B, D - are the correct answers