Тести
Мова сайту: Українська
Українська
English
Русский
Тести з програмування
Вхід
Реєстрація
Тести з програмування
Теорія
Сніпети
Статті
Головна
Android
Ціни
FAQ
Історія Cosmo
Правила та умови сервісу
Політика конфіденційності
Політика щодо файлів cookie
Зворотній Зв’язок
bitwise operations
:
Мова контенту: English
Русский
What will be printed to console after the following code is compiled and executed? public class Main { public static void main(String s[]) { System.out.println(4|3); } }
bitwise operations
What will be printed as a program result? public class Test { public static void main(String args[]) { System.out.println(6^3); } }
bitwise operations
What is the result of the following code: public class MainClass { public static void main(String args[]) { int k = 2; int m = 10; int s = 1 >> k++ + ++m - --k - m-- << 1; System.out.println("s = " + s); System.out.println("k = " + k); System.out.println("m = " + m); } }
bitwise operations
← Попередня
1
Наступна →
Зареєструйся Зараз
або
Підпишись на майбутні тести