Kate has a work.py file, and she needs to modify the permissions so that the user can read, write and execute the file and others can only read it. Kate wants to use the absolute mode to represent the permission set. Which set should she use? Use the table below to find out the right answer.
| Number | Permission Type | Symbol |
|---|---|---|
| 0 | No Permission | --- |
| 1 | Execute | --x |
| 2 | Write | -w- |
| 3 | Execute + Write | -wx |
| 4 | Read | r-- |
| 5 | Read + Execute | r-x |
| 6 | Read +Write | rw- |
| 7 | Read + Write +Execute | rwx |