Respuesta :

Answer:

The solution code is written in Python

  1. def printDottedLine():
  2.    print(".....")

Explanation:

A function printDottedLine() is defined (Line 1). The bracket is left empty since this function is not required to take any parameters. Besides, there is no return statement inside the function as it is not expected to return anything.

Inside the function, print function is used to output a single line consisting of 5 periods as required by the question (Line 2).