Тесты
Язык сайта: Русский
Українська
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
Следующая →
Зарегистрируйся сейчас
или
Подпишись на будущие тесты