Multiple choice .net vb

The methods which return the values back to the calling code are called as

  1. Constructors

  2. Interrogative methods

  3. Imperative methods

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Methods that return values to calling code are called interrogative methods because they 'ask a question' and return an answer. Imperative methods change object state or perform actions and typically return void. Constructors initialize new objects and aren't primarily for returning values.