Last updated Unknown
Status:
Tags:
Links: AP Computer Science Study Progress
AP Computer Science A 2014 FRQ Practice
Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
1.
a)
int i = 0;
String scrambled = word;
while (i<word.length()-1) {
if (word[i].equals("A") {
scrambled[i]=word[i+1];
scrambled[i+1]=word[i];
}
i++;
}
return scrambled;
b)
int i = 0;
while (i<wordList.size()) {
String word = wordList.remove(i);
String scrambled = scrambleWord(word);
if (!(word.equals("scrambled")) {
wordList.add(scrambled);
}
i++;
}
2. GridWorld
3.
a)
public SeatingChart(List<Student> studentList, int rows, int cols) {
int i = 0;
seats = new Student[rows][cols];
for (int c=0; c<cols; c++) {
for (int r=0; r<rows; r++) {
if (i<studentList.size()) {
seats[r][c] = studentList.get(i);
}
i++;
}
}
}
b)
int numRemoved = 0;
for (int r=0; r<seats.length(); r++) {
for (int c=0; c<seats[0].length(); c++) {
Student s = seats[r][c];
if (s.getAbsenceCount()>allowedAbsences) {
seats[r][c]=null;
numRemoved++;
}
}
}
return numRemoved;
4.a)
public class Trio implements MenuItem {
private String name;
private double price;
public Trio(Sandwich sndwch, Salad sld, Drink drnk) {
name = sndwch.getName() + "//" + sld.getName() + "//" + drnk.getName() + " Trio";
if (drnk.getName().equals("Cappuccino")) {
price = 6.25;
} else {
price = 4.00;
}
}
public String getName() {
return name;
}
public double getPrice() {
return price;
}
}
|
Review
- 1 took 7:33, 5:27, 2 took 8:31, 5:42, 4 took 14:33
- 6, 8, 7
- 21/27, 77%
- 1.a used wrong syntax for substrings lmao
- 3.b) Forgot to do null check for empty seats
- -1
-
- Misinterpreted the example items to be the absolute items so I did a lazy way of coding the program
- Should have stuck to doing comparisons to see which were the two most expensive objects
Thoughts
- Me using the wrong syntax for string really costed me marks
- I guess next time I should do things the fail-proof way
- Did not think at all about null checks on the 2nd question bruh
References: