Multiple choice technology security

mainly rootkits are created in java language.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Rootkits are typically written in C or C++ because they require low-level system access, direct memory manipulation, and kernel-level operations to hide their presence. Java's managed runtime environment, sandbox restrictions, and lack of direct hardware access make it unsuitable for creating effective rootkits. Some rootkits may use assembly language for maximum stealth.

AI explanation

Rootkits need to operate at a very low level — hooking into the operating system kernel, intercepting system calls, and hiding processes/files from detection — which requires close-to-the-metal languages like C or assembly rather than a managed, sandboxed language like Java. Java's virtual machine and lack of direct memory/kernel access make it a poor fit for building rootkits, so the statement is false.