How do I solve this quiz? Comparison Operators | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I solve this quiz? Comparison Operators

Comparison Operators Reset account passwords should not be the same as the old password. Task Write a program that takes old and new passwords as inputs and outputs to the console the boolean value (true or false) that shows whether or not they match. Sample Input hl8792m hl8792m Sample Output true function main() { var oldPass = readLine(); var newPass = readLine(); // Your code goes here Hi, can anyone please assist in solving this? I don't get it!

13th Aug 2021, 10:17 AM
John Stream
John Stream - avatar
1 Answer
+ 6
Which language, Java, Kotlin? println( oldPass == newPass) This should output the comparison value (true / false) of the 2 variables
13th Aug 2021, 10:22 AM
Rik Wittkopp
Rik Wittkopp - avatar