Describe the difference between Interface-oriented,
Object-oriented and Aspect-oriented programming
Answer Posted / vineeta trivedi
Interface oriented programming defines a contract between
two parties - a rule that both stick to and neither care
how the other is providing the functionality. Classic
example would be COM. Object oriented programming is
looking at things behavioraly - in what they do(methods)
and what identifes them(properties). Aspect oriented
programming is new to me. It identifes the aspects of a
program - separates out what's essential(functionality
wise) and what's repetitive(or not so essential from
functionality perspective).
Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
In OB52 , How to define two open posting period, Like only 5 and 8 posting should be open.. should not open 6 and 7..period..
is it acceptable if we declare multiple exceptions in same overridden method.
it is a language or tools?
can we extend a class having only one parameterised constructor.Suggest the process to do it.
Diff between IF and where ?
hai i am mca 2009 fresher.please tell me which certification helps me to get an IT job faster which institute is good in hyderabad.please mail me to prasanna.1856@rediff.com
Differevce between arrays and array builders?
Explain polymorphism. Provide an example.
sample code for data transfer between two r/2 systems and r/3 systems?
How many forms can you create in a Visual Basic 6 Standard EXE project? Is there any limit on that?
What is the meaning of client-server application. The purpose of Client-Server Application. with description.
what is the purpose of checked Menu options
A good website has the following conditions It should be interactive. It should contain at least 20 images. Title cannot be null and should contain at least 10 letters other than spaces and hyphen (-). The keywords should contain atleast three among the following list : "design", "Graphics", "lovely", "beautiful", "amazing" and "mesmerising" Write a method: boolean isGoodWebsite(boolean isInteractive, int numOfImages, String title,String keywords[]) isInteractive whether the site is interactive or not numOfImages Number of images on the website title Title of the website keywords Array of keywords in the website.
what is throws keyword
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.