What is the difference between procedure -oriented language
and object oriented language?
Answer Posted / k.j.sudarsanan
procedure oriented language focuses more on code accessing
data which means functions access to code.It is top to
bottom approach.object oriented approach focuses more on
object access to data and control to access it.It is bottom
to top approach.Extensibility and Reusability is achieved in
OOPS rather than procedural oriented programming.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
WS-NUM PIC S9(05)V(02) SIGN TRAILING SEPARATE MOVE '0050000+' TO WS-NUM The value stored is 00500,00+ MOVE '0050000-' TO WS-NUM Then what is the value will be stored in WS-NUM? Am getting '-00500,00'.....>>> What should I declare to WS-NUM so that I can get correct values for both + & - signs.
what is technical system, business system, logical system in sap pi7.0
hi all, i need ur help in preparing a sql which performs scd2, i mean i have a scd2 mapping i need a sql which can give me same result as scd2 mapping, SRC table: cust_no, loc 01 abc 02 xyz TGT table: pm_ky cust_no loc current_flag 1 01 abc Y 2 02 xyz Y cust 1 has changed his loc to xyz then it loads into TGT table as below, pm_ky cust_no loc current_flag 1 01 abc N 2 02 xyz Y 3 01 xyz Y i need sql to get the above result, hope got me question, Any suggestion will be appreciate.. thanks, Vinod
Difference between views and index in sas programming
how sap is different from other software ?
what is the difference between Windows application and Unix application?
what is log files in qtp what is use
How do you initialize a static member of a class with return value of some function?
Wrtite a JCL for sorting a file with start from 36 postion lenth 9 excluding a num eq to 98768. for 3 marks mainframe
Any real time example of O2C process from taking order till creating invoice.
smal talk is pure object oriented or not?
I m new to the dbms. Recently i came across words clustered indexes & nonclustered indexes but i dont know what is this all about & whats the difference between them.. So please help me!!!!!!!!
how to convert hashmap to arraylist with iteration
why we use abstract word in abstract window toolkit in java language.
there are N number of matchboxes numbered 1...N.each matchbox contain various number of stick.Two player can alternatevely pick some amount of stick from the higest stick containing box . The player is condidered win if there is no stick after his move.Find the final move so that the move player win. Note:In case the number of stick is equal ,pick the stick from the higest numbered box. eg: 3 box contain stick as:1,1,1. if u take 1 stick from 3rd numbred box you will any how win the match.