Answer:
d. int x = 7; displayValue(x);
Explanation:
Only option D is correct.
The declaration of the method displayValue() has a single int parameter.
When this method is called an int value is to passed as an argument terminated with a semi colon as given in option D.