Created
November 5, 2013 12:36
-
-
Save utkumalkocoglu/7318430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| array = [ "fat", "bat", "rot"] dizisindeki elemanlara "man" ekleyecek kod aşağıdaki seçeneklerden hangisidir? | |
| Select one: | |
| a. counter = 0 | |
| array = [ "fat", "bat", "rat"] | |
| while counter < array.length | |
| puts array[counter] + "man" | |
| counter += 1 | |
| end Correct |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment