what is the first question we asked in the Google form
name also accept email
What's the name of this club
BioTech Club
Who is our club sponsor?
Mr. Phillips
Whats the organelle of the cell that contains DNA
Nucleus
int a=5;
int b=12;
System.out.println(a+b);
//what will print>
17
how many choices did the last question on the Google form have?
1
What does this club focus on
Biology and Technology + their subdivisions
What's our names?
Elin and Siqi
What is the universal solvent?
Water
double b=5.0;
System.out.println(a+b)
//what will print
17.0
What are the 4 roles you can have in this club?
Front-End Code
Back-End Code
Science Related Role
Art Related Role
What are the project examples?
Bio game
Escape Room
3d models
Bio websites
Who should I ask for club-related tech questions?
Elin/Mr. Phillips
Monomer of Carbohydrates
Monosaccharides
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
how many questions did we ask on the Google form?
8 or 9
which day of club fair did we have our club on?
Thursday
Who should I ask about club-related Bio questions?
Qiqi
What are fats made of?
1 glycerol
3 fatty acid tails
What are the 2 scopes for variables?
Global and local
What were the 3 long form questions we asked? (Name at least 2)
suggestion
name
other skills
name anybody who made a name for them self in Biotech
Kary Mullis
Carl H. June
ect
Name any of our emails
lineli6512
fansiq7726
What are the 3 parts that make up a nucleic acids (DNA/RNA)?
Phosphate Group
Sugar
Nitrogenous Base
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