Which of the following relative pathnames is interpreted as "the rock.htm file is in the same folder as the current file"?
A. /rock.htm
B. ./rock.htm
C. ../rock.htm
D. rock.htm
Answer: D
Computer Science & Information Technology
You might also like to view...
Java uses the forward slash character (/) to separate the folder names in a String.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology
Axis properties are similar to ________.
a) XElement objects b) XPaths c) XML documents d) TreeNode structures
Computer Science & Information Technology
Which of the following is not an algorithm?
a. A recipe. b. Operating instructions. c. Textbook index. d. Shampoo instructions (lather, rinse, repeat).
Computer Science & Information Technology
What will be output from the following code:
``` public void test 2 ( ) { for ( int x = 0 ; x < 1 0 ; x = x + 2) { System . out . println ( x ) ; } } ```
Computer Science & Information Technology