Angular MCQs with Answers

Which of the following will map the name of an input parameter "userData" to a field named "users"?
A)
@Input('userData') users
B)
@Input() userData: users
C)
@Input() users: userData
D)
@Input('users') userData

Correct Answer :   @Input('userData') users