Final answer:
The call to the showDub function is found on line 10, where the function is executed with the integer variable x as its argument.
Step-by-step explanation:
The line in the program that contains a call to the showDub function is line 10. When a function is called, the program executes the function using the provided arguments. In this case, the function showDub is defined to take an integer as an argument, and it prints out twice the value of the number passed to it. Line 10 calls showDub by passing the variable x, which contains the value 2, therefore, executing the function and printing out the value 4.