Coding CommunityE-Learning

Livecoding.tv Quiz of the Day: 10/10/2016

Answer: The problem here is that strpos() returns the starting position index of $str1 in $str2 (if found), otherwise it returns false. So in this example, strpos() returns 0 (which is then coerced to false when referenced in the if statement). That’s why the code doesn’t work properly. The correct…

Read more
Coding CommunityE-Learning

Livecoding.tv Question of the Day: 07/10/2016

  Answer: The output will be:

Although both variables are uninitialized, String is a reference type and DateTime is a value type. As a value type, an initialized DateTime variable is set to a default value of midnight of 1/1/1…

Read more