Docker - Compose - multichoice questions

Given the below docker-compose.yaml file:

version: "3.9"
services:
  app:
    image: "ubuntu"
  redis:
    image: "redis:alpine"
    expose:
      - 6379

Answer the below 2 questions.

Question 1

What is the network used when deploy the two specified services?

Question 2

How can the app service access the redis service?