Anonymous

Why Java Programming Language Is Called Robust Secure?

2

2 Answers

Florio Potter Profile
Florio Potter answered

Robust means reliable and no programming language can really assure reliability. Java has the strong memory allocation and automatic garbage collection mechanism. It provides the powerful exception handling and type checking mechanism as compare to other programming languages.

For detailed information get help at CodeAvail- Online Computer Science Assignment
help

Anonymous Profile
Anonymous answered
Java is robust language. Automatic memory management and garbage collection is the biggest contributor here. Strong type checking also helps. Bugs, especially system crashing bugs, are rare. Still, they're not quite non-existent. In particular, you can overtax Java's thread system by creating many compute intensive threads. The exact details vary from VM to VM but 2000 threads each calculating the Mandelbrot set will hang or crash pretty much any VM.

Answer Question

Anonymous