there is a program" password generator" in code playground it is showing a password as output but I did not understand what is that password n which password it is?can anyone help me to find it out? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

there is a program" password generator" in code playground it is showing a password as output but I did not understand what is that password n which password it is?can anyone help me to find it out?

4th Aug 2016, 4:20 PM
sree lekha
sree lekha - avatar
4 Answers
0
it is just an utility program to generate password. You can use it in your application to generate 1st time password for user
4th Aug 2016, 7:18 PM
BARUN BARIK
BARUN BARIK - avatar
0
OK
4th Aug 2016, 7:26 PM
sree lekha
sree lekha - avatar
0
Start by examining line 25 passSymbols.length() returns the length of the passSymbols String. Pretend that it returned 50 (I didn't actually count). Now, examine rnd.nextInt(50) the way random numbers work here is by choosing a random number between 0 and 49. Pretend that it chose the number 2 (it could be any number from 0-49). Then we have passSymbols.charAt(2). This returns the character at position number 2 in passSymbols. Remember that the first character is in position 0,the second character is in position 1, the third character is in position 2,and so on. This happens 8 times since it is all inside of a for loop and thus generates a new random number each time. Therefore, you end up with a seemingly random password.
4th Aug 2016, 9:27 PM
Mitch K
Mitch K - avatar
0
can you give me hacking code
30th Oct 2016, 7:41 PM
Nano Mohammed
Nano Mohammed - avatar