-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathinterfaces.yaml
31 lines (31 loc) · 1.22 KB
/
interfaces.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
questions:
-
uuid: 1eebf878-8ba0-6c1a-9235-99d84c92580c
question: 'Is it possible to declare constant in an interface ?'
answers:
- { value: 'True', correct: true }
- { value: 'False', correct: false }
help: 'https://php.net/manual/en/language.oop5.interfaces.php#language.oop5.interfaces.constants'
-
uuid: 1eebf878-8ba3-6276-8a52-99d84c92580c
question: 'Can interfaces define constants in PHP?'
answers:
- { value: 'Yes', correct: true }
- { value: 'No', correct: false }
help: 'https://php.net/interfaces'
-
uuid: 1eee6cf7-7590-6308-9026-fd4214ed6e4c
question: 'Which keyword is used to use an interface in class definition ?'
answers:
- { value: implements, correct: true }
- { value: implement, correct: false }
- { value: use_interface, correct: false }
- { value: interface_by, correct: false }
help: 'https://www.php.net/manual/en/language.oop5.interfaces.php'
-
uuid: 1eee6cfa-64fb-6800-9026-09a267f9f473
question: 'Can an interface can extends other interfaces ?'
answers:
- { value: 'Yes', correct: true }
- { value: 'No', correct: false }
help: 'https://www.php.net/manual/en/language.oop5.interfaces.php'