what is mean by ooad? where we are using? can you tell me
any real time example?
Answer / nitesh
OOAD is object oriented analysis and design. It is software development approach to design and implementing the system. there are many concepts in OOAD. real time example of OOAD is inheritance. let us consider you have Suzuki brand car Alto. here Alto class is inheriting from Suzuki brand. Suzuki brand is parent class and Alto class is child class... In inheritance there many subtypes....single, multiple, multilevel......
| Is This Answer Correct ? | 0 Yes | 0 No |
Is 0 a real number?
byte a=5; byte b=5; byte c=a+b; System.out.println(c); whats the o/p?
What is an object in java and how is it created?
what is difference between global methods and local methods?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
Hi, This is ravi i have a question like this i have string "UNDERSTAND" now i want to count the letters how many times it occures.i.e from the above string the out put should be like this U-1,N-2,D-2,E-1,R-1,S-1,T-1,A-1. how can i achieve this Thnaks in advance for your response ..
Can static methods access instance variables in java?
Explain differences between collection api and stream api?
What are methods and how are they defined?
Explain what is Marker interface?
What is the purpose of the finalize() method?
How many bytes are a float?