what is difference between procedural language and functional language ?

Answers were Sorted based on User's Feedback



what is difference between procedural language and functional language ?..

Answer / sanjiv

In procedural language object is not used
In functional language object is used

Is This Answer Correct ?    18 Yes 3 No

what is difference between procedural language and functional language ?..

Answer / fauziya yaseen ansari

Object is not used in procedural language, Object is used in
functional language.

Is This Answer Correct ?    6 Yes 4 No

what is difference between procedural language and functional language ?..

Answer / ashu chhabra

A procedural program is written as a list of instructions,
telling the computer, step-by-step.Program units include the
main

Functional programming is particularly useful for
mathematical work, where the notion of ``function'' is
already a well established concept.

Is This Answer Correct ?    2 Yes 2 No

what is difference between procedural language and functional language ?..

Answer / shamim akhtar

In procedural languages we have to define complete procedure step by step.
In functional language ,there is no define complete procedure as it provide reusability

Is This Answer Correct ?    2 Yes 2 No

Post New Answer

More C Interview Questions

Write a progarm to find the length of string using switch case?

0 Answers   TCS,


What header files do I need in order to define the standard library functions I use?

0 Answers  


How can I return multiple values from a function?

6 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


how to impliment 2 or more stacks in a single dimensional array ?

1 Answers   iFlex, Microsoft,






What is the benefit of using const for declaring constants?

0 Answers  


What are inbuilt functions in c?

0 Answers  


What is meant by initialization and how we initialize a variable?

0 Answers  


What is malloc calloc and realloc in c?

0 Answers  


Are there namespaces in c?

0 Answers  


How can a process change an environment variable in its caller?

0 Answers  


please give me some tips for the selection in TCS.

3 Answers   TCS,


Categories