weakly-typed Questions
18
Solved
To quote Wikipedia:
Two commonly used languages that
support many kinds of implicit
conversion are C and C++, and it is
sometimes claimed that these are
weakly typed languages. However,
oth...
Janenejanenna asked 9/1, 2009 at 23:54
8
Solved
Is it considered bad to explicitly check for the boolean true. Would it be better to do a simple if(success) ?
I've seen various jokes made about how if (someBoolean === true) is horrible code in ...
Linstock asked 19/1, 2011 at 12:3
4
Solved
It is my understanding that I can store mixed data in a JavaScript array, as well as change any element in the array to some other type. How does the interpreter keep track of what place in physica...
Leialeibman asked 2/12, 2013 at 4:47
5
Solved
program TypeCategory;
{$R+}
var
sInt : shortint;
iInt : integer;
begin
readln(iInt);
sInt := iInt;
writeln(sInt);
end.
Considering the above example,pascal language do allow assignment from ...
Dirtcheap asked 17/1, 2010 at 16:22
1
© 2022 - 2024 — McMap. All rights reserved.