logo

Crowdly

Browser

Add to Chrome

Об’єктно-орієнтоване програмування

Looking for Об’єктно-орієнтоване програмування test answers and solutions? Browse our comprehensive collection of verified answers for Об’єктно-орієнтоване програмування at vns.lpnu.ua.

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

Який клас може бути використаний для читання контенту файла?
0%
100%
0%
0%
View this question
За типом переданих даних потоки можна поділити на:
91%
0%
0%
73%
View this question
Що буде виведено у консолі в результаті виконання наступного коду:

import java.util.HashSet;

public class MyClass {

public static void main(String[ ] args) {

HashSet<String> set = new HashSet<String>();

set.add("A");

set.add("B");

set.add("C");

System.out.println(set);

}

}

View this question
Що буде виведено у консолі в результаті виконання наступного коду:

import java.util.HashMap;

public class Main {

public static void main(String[] args) {

HashMap<String, String> capitalCities = new HashMap<String, String>();

capitalCities.put("England", "London");

capitalCities.put("Germany", "Berlin");

capitalCities.put("Norway", "Oslo");

capitalCities.put("USA", "Washington DC");

capitalCities.clear();

System.out.println(capitalCities);

}

}

View this question
Set - це такий же спосіб зберігання даних, як масив або список, але особливість Set в тому, що він може зберігати тільки унікальні значення.
100%
0%
View this question
Що має бути на місці пропуску:

HashMap<String, String> myMap = _____ HashMap<String, String>();

View this question
Для спадкування від класу використовуться ключове слово:
View this question
Яка довжина масиву int [] array1 = {5,17,350}
View this question
Під яким індексом знаходиться число 8 у масиві int [] array1 = {5,17,350,44,8}
View this question

Який з наступних користувальницьких інтерфейсів визначає, як повинні бути розташовані компоненти в контейнері?

View this question

Want instant access to all verified answers on vns.lpnu.ua?

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

Browser

Add to Chrome