My Manager asked me to code in ASP.net. What is meant my imperative and interrogative code. How it related to programmers?

link|improve this question

71% accept rate
I really think you should ask your manager what in the world he meant. Because his request just doesn't seem right, there must have been a misunderstanding along the way. – Robert Gould Jan 8 '09 at 8:07
feedback

3 Answers

up vote 1 down vote accepted

Although I'm not sure its a "popular" way of programming, interrogative-programming is basically summed up by this:

Domain specific programming languages tend to be rigid in capability and dependent on either a graphical interface or a scripting language. We present a question-oriented approach that requires no prior knowledge of programming and can be easily adapted to a wide range ofdomains. Interrogative programming works by "parsing" the user's intent using the responses to a series of closed-ended questions. Questions are guided by a context free grammar specified in an external file. -Quote

While imperative programming is the way most procedural code is written (C style).

link|improve this answer
feedback

Imperative code does not return a value. It just does something. (A sub in vb.net or a void return type in c#).

Interrogative code does return a value.

link|improve this answer
feedback

Imperative in English means in a 'commanding tone'. So a program that seems to be telling the computer to "do this, do that" is an imperative program. A C program is a good example of that.

As opposed to this there are other languages that are called declarative such as Haskell, that read like mathematical theorems without seeming to demand anything from the computer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.