this post was submitted on 24 Mar 2024
771 points (98.6% liked)

Programmer Humor

18961 readers
365 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] -3 points 5 months ago (1 children)

It's a shitty question. It's implied by the fact that "24" is wrong that the answer is "6", the length of the string "Monday".

In some languages dot access on objects could give you the properties of the object type (things pertaining to a "day" object) but this would still be ambiguous since a day's length can be measured in many different ways.

In others, it would require you to call length as a function (.length()) or not be available at all, or require you to pass the object into another function [ length_in_seconds(day_x)]

[โ€“] [email protected] 11 points 5 months ago

I think the question is fine, but we have to assume they covered this type of method prior to the exam, where .length would result in the character count of a String.