logo

Crowdly

Browser

Add to Chrome

Object Oriented Development (MESIIN472925)

Looking for Object Oriented Development (MESIIN472925) test answers and solutions? Browse our comprehensive collection of verified answers for Object Oriented Development (MESIIN472925) at learning.devinci.fr.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

In JavaFX MVC, what is the main responsibility of the Controller?

0%
0%
0%
100%
View this question

Which concept allows an object to take many forms in Java?

0%
0%
100%
0%
View this question

What will happen here?

class Parent {

    static void show() {

        System.out.println("Parent");

    }

}

class Child extends Parent {

    static void show() {

        System.out.println("Child");

    }

}

public class Test {

    public static void main(String[] args) {

        Parent p = new Child();

        p.show();

    }

}

3%
97%
0%
0%
View this question

The Liskov Substitution Principle states that subclasses are allowed to change the behaviour of their parent classes as long as the code still compiles.

0%
100%
View this question

How much time the following code prints JAVA ?

int i = 0;

do{

    System.out.println("JAVA");

    i++;

} while(i > 5);

0%
0%
3%
97%
View this question

A class that implements an interface but does not use all of its methods still respects the Interface Segregation Principle.

6%
94%
View this question
What is the main advantage of using JSTL instead of scriptlets?
0%
100%
0%
0%
View this question
Which Tomcat configuration file must contain the definition of the JDBC connection pool for the application?
0%
97%
3%
0%
View this question

Which statement about abstract classes in Java is TRUE?

94%
6%
0%
View this question
In Tomcat, each web application has a context path. What does it correspond to?
0%
0%
100%
0%
View this question

Want instant access to all verified answers on learning.devinci.fr?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome