Java Programming Questions & Answers
My teacher gave me an assignment. It was about Java Programming. I completed it and now uploading it in my blog. It maybe helpful for the new Java programmers like me. It was given by Shah Mostafa Khaled (MTD) Sir as an assignment of CSE 135 (now known as CSE 215) course of North South University.- Why is Java a static language?
There are two forms of typed programming languages. One is
statically typed language and another is dynamically typed language. Statically
typed language requires you to declare what ‘type’ a variable is when you are writing
code. On the other hand, dynamically typed languages do not need to be declared
the type of the variable in the code.