edited by
5,624 views
12 votes
12 votes

Match the programming paradigms and languages given in the following table.

  Paradigms   Languages
(I) Imperative (a) Prolog
(II) Object Oriented (b) Lisp
(III) Functional (c) C, Fortran 77, Pascal
(IV) Logic (d) C++, Smalltalk, Java
  1. I-c, II-d, III-b, IV-a
  2. I-a, II-d, III-c, IV-b
  3. I-d, II-c, III-b, IV-a
  4. I-c, II-d, III-a, IV-b
edited by

2 Answers

Best answer
23 votes
23 votes
A is correct. Lisp is a pure functional language and Prolog is a logic language. Other languages are well known.
4 votes
4 votes
Solution : A) I-c, II-d, III-b, IV-a
  Paradigms   Languages
(I) Imperative (c) C, Fortran 77, Pascal
(II) Object Oriented (d) C++, Smalltalk, Java
(III) Functional (b) Lisp
(IV) Logic (a) Prolog


Proof of correctness : (Check for "Paradigm" of any programming language)

Answer:

Related questions

24 votes
24 votes
2 answers
1
Kathleen asked Sep 18, 2014
8,891 views
The goal of structured programming is to:have well indented programsbe able to infer the flow of control from the compiled codebe able to infer the flow of control from t...
10 votes
10 votes
3 answers
4
Ishrat Jahan asked Oct 27, 2014
7,047 views
For problems X and Y, Y is NP-complete and X reduces to Y in polynomial time. Which of the following is TRUE?If X can be solved in polynomial time, then so can YX is NP-c...