Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

these are just discussio board questions so they dont have to be super extensive

ID: 3764585 • Letter: T

Question

these are just discussio board questions so they dont have to be super extensive:

1. Two of the most popular “free” IDE’s are Netbeans and Eclipse. Compare and contrast the two packages.

2. Object Oriented Programming is great. Discuss how this approach does a better job of modeling the “real world” than Procedural Programming.

3. Do some web research and discuss if and how Object Oriented assists in the development and maintenance of complex systems. Identify such systems.

4. Discuss the advantages of the if-elseif statement in Java, and whether this truly avoids nested statements. If one elseif is true, do the others (assuming they exist) execute?

5. What does the term “integral” mean? Compare and contrast the Java switch statement with the case (or similar) statements of Visual Basic, Pascal, and C++.

6. See if you can find or develop a for statement with multiple initializations and/or multiple changes. (i.e. for (exp-1, exp-2; exp-3; exp-4, exp-5))

Explanation / Answer

5) "A function of which a given function is the derivative, i.e. which yields that function whendifferentiated, and which may express the area under the curve of a graph of the function. "

Case Statment:

Switch Statment:

Unlike if-then and if-then-else statements, the switch statement can have a number of possible execution paths.

This is the output from the code: