![]() |
0 vs. 00
NFHS game. A6, wearing 00, is summoned into the game. Scorer summons the official to the table and notifies him that the player is listed as 0 in the book. Do you have a technical foul for an incorrect number?
|
No. They can only have one anyway. I would not at all consider that anything but a bookkeeping mistake. They are not trying to deceive anyone IMO.
Peace |
What was on the roster given to the book?
|
Quote:
Isn't it the job of the head coach to ensure the numbers match the kids playing? The scorekeeper is only there to keep record of the names and numbers. This is probably a good reason to have the head coach check their book before a game starts. In either case, I don't think I would call a technical here. |
Only required to provide the roster.
|
0 vs. 00
Quote:
I have had a coach check or sign the book. I won't knock anyone who does this, but I haven't and won't. Sent from my iPhone using Tapatalk Pro |
Quote:
It's not something I ever really care about it, I go by what is in the official scorebook, but I have seen this come up. The away coach has their roster in their scorebook and the scorekeeper gets the one out of the game program which ends of being different. That night I happened to take the book over to the visiting coach who noticed the error, we got it corrected. Just curious if this hadn't been caught.. |
Quote:
ART. 1 . . . Fail to supply the scorer with the name and number of each team member who may participate and designate the five starting players at least 10 minutes before the scheduled starting time.” (10-1-1) It's not the coach's job to make sure the scorer inputs the numbers correctly. |
Quote:
|
Quote:
|
Quote:
This is one of many reasons why I check the books before the 10 minute mark. Anything glaringly out of wack can be corrected. There have been times where I get a legitimate explanation/reason for a delayed book. That is good to know in advance instead of at/below 10 mins. |
Quote:
Peace |
Quote:
Now I must throw in my 2 cents regarding technology or lack thereof. Based on what you said, if computer programs can distinguish between 1 and 11 as being different numbers, that must mean the computer program can recognize a null value in the tens place. Therefore, why couldn't the same program do the same for the number 0? I hate computers. All they do is reflect the imperfections of humans:) |
Quote:
Depends on if you're storing the values as a String (characters) or as an Integer (number). Computers store everything in binary, as a combination of 1s and 0s. Assuming we're using 8-bit notation (that is, 8 slots per number) if we're storing just Integers, there's no difference between 0 and 00, because they're both stored as 00000000. 1 is stored as 00000001, 2 is stored as 00000010, 3 is stored as 00000011, 4 is stored as 00000100, etc... 11 is stored as 00001011. String values are handled differently... each "letter" has it's own 8-bit value. Assuming we're using ASCII notation, the 8-bit value for 0 is 00110000, which would be repeated twice for 00, so 0011000000110000. 11 would be 0011000100110001. Of course, there are many different types of character encoding schemes (UTF-8, UTF-16, UTF-32, ISO8859, Windows 1252, and many many more, all of them work similarly to ASCII, but the actual binary value of a particular character may be different) <takes off computer programmer hat> You may commence shouting "Shut Up, Nerd!" at me at your earliest convenience. |
Quote:
Peace |
All times are GMT -5. The time now is 02:43pm. |