1. No, it will not impact the code, if you want you can, just to have a balance throughout the printed response.
2. simple:
You need to get the integer of the hour (remember you will get something like this: 2.0511111 (using the example the tutor gave you... so we only need the 2 part).
Hour = int(total sec/3600)
then Min = (Total sec - (hour*3600))/60
Simply because you have converted the hour to seconds and you want to convert to minutes the seconds once the first operation has been done:
Hour = int (7384/3600) = 2 hours
Min = int ((7384-(7200))/60) = int(184 / 60) = int(3.06666)=3 mins
3. bit hard to explain... but think this may help:**
-------------------------------------------------------------------------------
"In computing, the percent character is also used for the modulo operation in programming languages that derive their syntax from the C programming language, which in turn acquired this usage from the earlier B.The ASCII code for the percent character is 37, or 0x25 in hexadecimal. In the textual representation of URIs, a % immediately followed by a 2-digit hexadecimal number denotes an octet specifying (part of) a character that might otherwise not be allowed in URIs (see percent-encoding). Names for the percent sign include percent sign (in ITU-T), mod, grapes (in hacker jargon), and the humorous double-oh-seven (in INTERCAL).
In SQL, the percent sign is a wildcard character in "LIKE" expressions, for example SELECT * FROM table WHERE fullname LIKE 'Lisa %' will fetch all records whose names start with "Lisa "
In TeX and PostScript, a % denotes a line comment.
In Basic, a trailing % after a variable name marks it as an integer.
In Perl % symbol is for hashes.
In many programming languages' string formatting operations (performed by functions such as printf) the percent sign denotes parts of the template string that will be replaced with arguments. In Python, the percent sign is also used as the string formatting operator. "
--------------------------------------------------------------------------------
Now... make it simple and ask your tutor if it was an error... I don't know what programming language you are using.. but seconds should be something like this:
Seconds = total seconds - ((hours*3600)+(min*60))
7384 - ( (2*3600)+(3*60))
7384 - (7200+180)
7384 - 7380
4 seconds