G-Form
Club Info
Contacts
MISC (Bio)
MISC (Tech)
100

what is the first question we asked in the Google form

name also accept email

100

What's the name of this club

BioTech Club

100

Who is our club sponsor?

Mr. Phillips

100

Whats the organelle of the cell that contains DNA

Nucleus

100

int a=5;

int b=12;

System.out.println(a+b);

//what will print>

17

200

how many choices did the last question on the Google form have?

1

200

What does this club focus on

Biology and Technology + their subdivisions

200

What's our names?

Elin and Siqi

200

What is the universal solvent?

Water

200
int a=12;

double b=5.0;

System.out.println(a+b)

//what will print

17.0

300

What are the 4 roles you can have in this club?

Front-End Code

Back-End Code

Science Related Role

Art Related Role

300

What are the project examples?

Bio game

Escape Room

3d models

Bio websites

300

Who should I ask for club-related tech questions?

Elin/Mr. Phillips

300

Monomer of Carbohydrates

Monosaccharides

300

Differences between hardware and software

Hardware is the computer itself while software is the system/code > software needs hardware while hardware needs software to be useful

400

how many questions did we ask on the Google form?

8 or 9

400

which day of club fair did we have our club on?

Thursday

400

Who should I ask about club-related Bio questions?

Qiqi

400

What are fats made of?

1 glycerol

3 fatty acid tails

400

What are the 2 scopes for variables?

Global and local

500

What were the 3 long form questions we asked? (Name at least 2)

suggestion

name

other skills

500

name anybody who made a name for them self in Biotech

Kary Mullis

Carl H. June

ect

500

Name any of our emails

lineli6512

fansiq7726


500

What are the 3 parts that make up a nucleic acids (DNA/RNA)?

Phosphate Group

Sugar

Nitrogenous Base

500

Assume that the int variables m and n have been properly declared and initialized and are both greater than 0.
for (int i = 0; i < m * n; i++){ System.out.print("A");}
for (int j = 1; j <= m; j++){ for (int k = 1; k < n; k++) { System.out.print("B"); }}
Assume that the initial values of m and n are the same in code segment I as they are in code segment II.

Will A or B print more or do they print a equal amount or not at all


A will print more