What is the Difference between imperative and interrogative
code?

Answers were Sorted based on User's Feedback



What is the Difference between imperative and interrogative code?..

Answer / nayana

Some methods return values or provide information back to
the calling code. These are called interrogative methods.
Others, called imperative methods, just perform a service
and return nothing to the calling code.
In VB.NET, methods are implemented using Sub (for
imperative methods) or Function (for interrogative methods)
routines within the class module that defines our object.
Sub routines may accept parameters, but they don't return
any result value when they are complete. Function routines
can also accept parameters, and they always generate a
result value that can be used by the calling code.

Is This Answer Correct ?    26 Yes 1 No

What is the Difference between imperative and interrogative code?..

Answer / kamlesh sharma

imperatice funcition which returns a value and
interrogative function does not return any value

Is This Answer Correct ?    3 Yes 22 No

Post New Answer

More C Sharp Interview Questions

What is multithreading? What are the problems that comes with multithreading and how to manage them?

0 Answers   MCN Solutions,


What are lambda expressions used for?

1 Answers  


What is parameters in c#?

0 Answers  


What is constants in c#?

0 Answers  


How are delegates chosen?

0 Answers  






Can we inherit two classes in c#?

0 Answers  


What is xml serializer?

0 Answers  


What is managed or unmanaged code?

0 Answers  


Can you prevent a class from overriding?

3 Answers  


Why interface is required?

0 Answers  


Can we override interface methods in c#?

0 Answers  


Can I use exceptions in c#?

0 Answers  


Categories