answersLogoWhite

0


Best Answer

A strongly typed programming languages is one that requires the type of a variable to be explicitly stated. C is a strongly typed language. You must declare the type of data a variable will store for C to interpret it: int myVariable;

myVariable = 25; Perl is a loosely typed language. There is no need to declare the variable type before using it: $myVariable = 25;

$myVariable = "A String.";

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

You cannot make any mistakes or it will not compile and it is also case-sensitive.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why Java is called strongly typed language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Why java is a strictly type language?

C is not a strongly-typed language, it is weakly-typed. This means that it is possible to work around the type system. That is, types can be explicitly or implicitly converted to other types. A strongly-typed language simply wouldn't allow this. However, C is statically-typed, which means that values are bound to types at compile time, rather than at runtime as they are in dynamically-typed languages.


What is strongly typed programming language?

Yes, Python is strongly-typed. You can test if any language is strongly-typed with a very simple example: x = 1 y = "2" z = x + y The above will not compile in a strongly typed language because y is a string, not a number. That is, the language will not implicitly convert y to a number simply because you used it in a numeric expression. A weakly-linked language will perform the conversion behind the scenes. Note that some strongly typed languages will permit the following: value = 1 value = "one" This is an example of dynamic typing; the same variable has explicitly changed type. This is not possible with statically typed languages. However, dynamic typing does not imply weak typing. Dynamic typing is explicit, weak typing is not.


What is the difference between cc plus plus and java?

C is a procedure oriented language ,Where C++ & java are object oriented language.But java is platform independent.So generally C is called POP.C++ is called OOP.But java is OOP , which is platform independent.If java does not support primitive data type then it is called as pure object oriented language.


Is the java is procedural language?

Java is an Object Oriented language not a procedural language


Does Visual Java plus plus and Java Builder is different from the Java language?

Yes!Visual Java plus plus and Java Builder is different from the Java language?

Related questions

Why java is a strictly type language?

C is not a strongly-typed language, it is weakly-typed. This means that it is possible to work around the type system. That is, types can be explicitly or implicitly converted to other types. A strongly-typed language simply wouldn't allow this. However, C is statically-typed, which means that values are bound to types at compile time, rather than at runtime as they are in dynamically-typed languages.


What is the difference between javascript and java language?

JavaScript and Java are two different programming languages. Java is a server-side, statically typed language. JavaScript is a mostly client-side, dynamically typed language. Java supports heavy back end computations while JavaScript enables interactive AJAX ones.


What are strongly typed languages?

Strongly typed languages enforce strict type checking at compile time, ensuring that variables are used in a way that is consistent with their defined types. This can help catch errors early in the development process and improve code reliability. Examples of strongly typed languages include Java, C++, and Swift.


What is strongly typed programming language?

Yes, Python is strongly-typed. You can test if any language is strongly-typed with a very simple example: x = 1 y = "2" z = x + y The above will not compile in a strongly typed language because y is a string, not a number. That is, the language will not implicitly convert y to a number simply because you used it in a numeric expression. A weakly-linked language will perform the conversion behind the scenes. Note that some strongly typed languages will permit the following: value = 1 value = "one" This is an example of dynamic typing; the same variable has explicitly changed type. This is not possible with statically typed languages. However, dynamic typing does not imply weak typing. Dynamic typing is explicit, weak typing is not.


Which software language is in demand now?

JAVAJava is a full object-oriented language, strongly typed, with an extensive feature set focused on networking and cross-platform compatibility. Applications written in Java can run on virtually any OS - though the performance won't be as good as something designed to run natively.It is the language of choice for most Computer Science courses, and consequently almost everyone has at least a little Java programming experience. Android applications are written in Java too, though you can't simply run a regular Java app on your Android mobile nor vice-versa.


Why java called as strong type language?

That means that Java is fairly strict about data types.


Who created the java language?

The java language was create in early 90's by a group of Sun engineers called the "Green Team" led by James Gosling. By the way this language was first called "Oak".


What is the difference between cc plus plus and java?

C is a procedure oriented language ,Where C++ & java are object oriented language.But java is platform independent.So generally C is called POP.C++ is called OOP.But java is OOP , which is platform independent.If java does not support primitive data type then it is called as pure object oriented language.


Which programming language was developed from a language called Oak?

Oak is now referred to as Java


Who are the RuneScape makers?

A company called Fagex. This is short for Java Gaming Experts, 'cause they do their programming in the Java language.


Why java is secured compare with other language?

Because there is an access specifier called private in java by which security can be provided


Who develop java programming?

Java programing language was designed by James Gosling and it was initially called as "Oak" but later it was renamed to "Java" in the year 1995.