Top "Weak-typing" questions

Is Python strongly typed?

I've come across links that say Python is a strongly typed language. However, I thought in strongly typed languages you …

python strong-typing weak-typing
What do strict types do in PHP?

I've seen the following new line in PHP 7, but nobody really explains what it means. I've googled it and all …

php php-7.2 strong-typing weak-typing
Static/Dynamic vs Strong/Weak

I see these terms bandied around all over the place in programming and I have a vague notion of what …

terminology strong-typing static-typing dynamic-typing weak-typing
Is C++ considered weakly typed? Why?

I've always considered C++ to be one of the most strongly typed languages out there. So I was quite shocked …

c++ strong-typing reinterpret-cast weak-typing
Difference between Strong vs Static Typing AND Weak vs Dynamic Typing

From what I understand, dynamic typing is the same as weak typing and strong typing is the same as static …

dynamic static strong-typing weak-typing
Is Python a weakly typed language as variables can switch types?

The way I understand it, the following is allowed in PHP because it's a weakly-typed language. $var = 'Hello'; $var = 5; I …

python strong-typing weak-typing
Strongly typed datasets vs. weakly typed datasets

What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example? And also, …

c# visual-studio-2008 dataset strong-typing weak-typing
If Java is Strongly typed then why does this code compile?

My understanding of strongly typed was that the language wouldn't make implicit type conversions. However, this code converts the char …

java types casting strong-typing weak-typing
Does it make sense to use Hungarian notation prefixes in interpreted languages?

First of all, I have taken a look at the following posts to avoid duplicate question. https://stackoverflow.com/questions/1184717/…

python matlab interpreter interpreted-language weak-typing