UIL(EASY)
UIL(MEDIUM)


UIL(HARD)
Random Tech News

Random
100

for(int y=0;y<4;y++)

System.out.print(y);


0123

100

int A = 65;

int B = 66;

int[] abba = new int[] {A, B, B, A};

out.print(abba[0]+abba[1]);

131

100

out.print(Math.pow(64, .5));

8.0

100

Who is the new CEO of twitter?

Elon Musk

100

What is the name of the club sponsor in the beginner CS Club room?

Mr.Jarrell


200

double m = 0.4 + 1.2 * 8;

out.println(m / 2);

5.0

200

boolean a = false;

boolean b = false;

out.println(a || b || a ^ b);

false

200

out.printf("%s", "I like rabbits");

I like rabbits

200

What is the logo of Firefox?

Red Panda

200

When is the last time the HHS CS Club won state?(school year-EX: 1834-1835)

2021-2022

300

System.out.println(Math.round(5.6);

6
300

int hund = 236;

int ten = hund / 10;

int one = hund % 10;

out.println(ten + 10 * one);

83

300

System.out.println(Math.min(-7, 7.0));

-7.0

300

What was Nokia's first product?

toilet paper

300

What is the library used by the Heritage High School Robotics Team? (FRC Team 8816 Coyotronics)

WPILib

400

out.print(1+2+"three"+4*5+6);

3three206

400

out.println(Math.ceil(-7.5));

-7.0

400

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

400

What year was Apple founded?(within 4 years to get it right)


1976

400

What time does every advertisement of an apple phone have the time set to?

9:41

500

Which operator has the highest precedence?(&& / || / ^ / == / =)

==

500

String k="soombodywithashoe";

int h=k.charAt(3)+k.charAt(8);

h+=k.charAt(12);

System.out.println(h);

325

500

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]

500

When was CHAT GPT first launched?

November 2022

500

String s = "abracadabra";

out.print(s.substring(3, 5));

ac