Which symbol is not used to test a condition in a loop statement? != > = <=
so what do u think?
idk
thats's why I posted it on here
what ones do you know that are used for testing a condition in a loop statement
don't know i'm lost
<=
so a and d are correct
\(\color{#0cbb34}{\text{Originally Posted by}}\) @sealake101 so a and d are correct \(\color{#0cbb34}{\text{End of Quote}}\) well those are used to test a condition in a loop statement so out of b and c what would make more sense?
>
`!=` means `not equal` `>` means `greater than` `=` means `assignment` (not to be confused with `==` which means `equality`) `<=` means `less than or equal to` You can use `>` as a way to test a condition in a for loop, so choice B is not the correct answer.
thanks but which one would it be.
and could you help me with another one
You can also use `>=` as a symbol to test a condition in a for loop. Nearly all of these symbols are used to compare two values. Which one isn't a comparison symbol?
Which statement is not true about a variable name in Java? The name should start with a lowercase letter. The name should be meaningful. The name should not use a hump notation. The name should not contain keywords.
Check out this site https://www.javatpoint.com/java-naming-conventions and it should help Focus on the section labeled "Variable"
Join our real-time social learning platform and learn together with your friends!