InterviewSolution
Saved Bookmarks
| 1. |
What is difference between absolute and relative path? |
|
Answer» A pathname is absolute if it is described in relation to root, so absolute pathnames always begin with a /. A pathname if it is relative to your current working directory is called as relative path. Relative pathnames never begin with / |
|