for(int y=0;y<4;y++)
System.out.print(y);
0123
int A = 65;
int B = 66;
int[] abba = new int[] {A, B, B, A};
out.print(abba[0]+abba[1]);
131
out.print(Math.pow(64, .5));
8.0
Who is the new CEO of twitter?
Elon Musk
What is the name of the club sponsor in the beginner CS Club room?
Mr.Jarrell
double m = 0.4 + 1.2 * 8;
out.println(m / 2);
5.0
boolean a = false;
boolean b = false;
out.println(a || b || a ^ b);
false
out.printf("%s", "I like rabbits");
I like rabbits
What is the logo of Firefox?
Red Panda
When is the last time the HHS CS Club won state?(school year-EX: 1834-1835)
2021-2022
System.out.println(Math.round(5.6);
int hund = 236;
int ten = hund / 10;
int one = hund % 10;
out.println(ten + 10 * one);
83
System.out.println(Math.min(-7, 7.0));
-7.0
What was Nokia's first product?
toilet paper
What is the library used by the Heritage High School Robotics Team? (FRC Team 8816 Coyotronics)
WPILib
out.print(1+2+"three"+4*5+6);
3three206
out.println(Math.ceil(-7.5));
-7.0
String s="32 2 45 -5 3 99 -1 0 2 22 7";
Scanner sc=new Scanner(s);
int sum=0;
while(sc.nextInt()>10)
sum+=sc.nextInt();
System.out.println(sum);
-3
What year was Apple founded?(within 4 years to get it right)
1976
What time does every advertisement of an apple phone have the time set to?
9:41
Which operator has the highest precedence?(&& / || / ^ / == / =)
==
String k="soombodywithashoe";
int h=k.charAt(3)+k.charAt(8);
h+=k.charAt(12);
System.out.println(h);
325
ArrayList<String> arr = new
ArrayList<String>();
arr.add("B"); arr.add("A");
arr.add("A"); arr.add("B");
arr.remove("A");
arr.add(new Integer(1), "A");
out.print(arr);
[B,A,A,B]
When was CHAT GPT first launched?
November 2022
String s = "abracadabra";
out.print(s.substring(3, 5));
ac