assume I have something simple like this:
if(condition_1 || condition_2) {
do something
}
if condition_1 is true, does java go on and also check condition_2? I'm asking because I know if condition1 is true, condition2 will throw an error and I'm wondering if I need to make two seperate if's.