I will love to read your feedback on whether the questions provided here are useful. If you found the questions too trivial then just say so.
## General Questions
```java
{
"title": "What is the difference between a static method and an instance method",
"description": "What is the difference between static method and an instance method",
"type": "question",
"challengeSeed": "PH5GXH",
"answers": [
{
"text": "static method can be invoked without creating an object",
"checkbox": true
},
"text": "instance method cannot be invoked without creating an object",
}
],
"hints": [
"text": "static method can be invoked from any class without creating an object",
"score": 0
}
```
---
## One More Question
"title": "What is the difference between an abstract class and an interface",
"description": "What is the difference between an abstract class and an interface",
"text": "abstract class always has a method with the same name as its abstract method",
"text": "interface always has a method with the same name as its interface method",
Related links:
Comentários