What does the command ‘chmod 755 file.txt’ do in Linux?
Note
Owner: Full permissions (read, write, execute) (7 corresponds to rwx).
Group: Read and execute permissions (5 corresponds to r-x).
Others: Read and execute permissions (5 corresponds to r-x).
So, the correct interpretation is it grants full permissions to the owner and read+execute permissions to the group and others.