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 are controls in c#?

0 Answers  


Describe the parts of assembly.

0 Answers  


What is difference between ienumerable and enumerable in c#?

0 Answers  


What is static classes?

0 Answers  


Why dependency injection is used in c#?

0 Answers  






What is the difference between package and interface?

0 Answers   Hexaware,


What is the purpose of dictionary in c#?

0 Answers  


Why are there five tracing levels in System.Diagnostics.TraceSwitcher?

2 Answers   Siebel Systems,


What are the different types of assembly?

0 Answers  


What are the steps to create an assembly and add it to the gac?

0 Answers  


How do I create a multi language, multi file assembly?

0 Answers  


Why are strings immutable in c#?

0 Answers  


Categories