A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | P | Q | R | S | T | U | V | W | X | Y | Z | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1 | Applied Acoustics test - 11/12/2015 | |||||||||||||||||||||||||
2 | ||||||||||||||||||||||||||
3 | Matricola | 123456 | ||||||||||||||||||||||||
4 | ||||||||||||||||||||||||||
5 | 1) In Javascript, after defining this vector of integer numbers using your matricula: | |||||||||||||||||||||||||
6 | var matN = [A,B,C,D,E,F]; | |||||||||||||||||||||||||
7 | evaluate the following expression: | |||||||||||||||||||||||||
8 | Result=Math.floor(matN[1]+2*matN[4]-matN[5]/(3+matN[3])-matN[0]); | |||||||||||||||||||||||||
9 | write resulting number: | 10 | ||||||||||||||||||||||||
10 | ||||||||||||||||||||||||||
11 | ||||||||||||||||||||||||||
12 | 2) In Javascript, evaluate the value of the variable Result after this piece of code: | |||||||||||||||||||||||||
13 | for (i = matN.length ; i > 0; i--) | |||||||||||||||||||||||||
14 | { | |||||||||||||||||||||||||
15 | text += matN[i-1] + '|'; | |||||||||||||||||||||||||
16 | } | |||||||||||||||||||||||||
17 | write resulting string: | 6|5|4|3|2|1| | ||||||||||||||||||||||||
18 | ||||||||||||||||||||||||||
19 | 3) In Javascript, write the code for computing the 6 variables A,B,C,D,E,F from the variable Matricula, which contains your matricula number as a single long integer (ex.: Matricula=123456;) | |||||||||||||||||||||||||
20 | write the code in the following text field | or | ||||||||||||||||||||||||
21 | var Matricula = | 123456 | ; | var Matricula = | 123456 | ; | ||||||||||||||||||||
22 | var A = Math.integer(Matricula/100000) | var Mat = Matricula+''; | ||||||||||||||||||||||||
23 | var B = Math.integer((Matricula-A*100000)/10000); | var A = Mat[0]; | ||||||||||||||||||||||||
24 | var C = Math.integer((Matricula-A*100000-B*10000)/1000); | var B = Mat[1]; | ||||||||||||||||||||||||
25 | var D = Math.integer((Matricula-A*100000-B*10000-C*1000)/100); | var C = Mat[2]; | ||||||||||||||||||||||||
26 | var E = Math.integer((Matricula-A*100000-B*10000-C*1000-D*100)/10); | var D = Mat[3]; | ||||||||||||||||||||||||
27 | var F = Math.integer(Matricula-A*100000-B*10000-C*1000-D*100-E*10); | var E = Mat[4]; | ||||||||||||||||||||||||
28 | var F = Mat[5]; | |||||||||||||||||||||||||
29 | ||||||||||||||||||||||||||
30 | 4) In Plogue Bidule, which module do you use for splitting a mono signal in two, containing respectively low frequencies / high frequencies ? | |||||||||||||||||||||||||
31 | One answer only | |||||||||||||||||||||||||
32 | o Spectral / CrossFader | |||||||||||||||||||||||||
33 | o Mixing / Cross Fader | |||||||||||||||||||||||||
34 | o Mixing / Fader Cross | |||||||||||||||||||||||||
35 | o Building Blocks / Mixing / CrossFader | |||||||||||||||||||||||||
36 | o Building Blocks / Filters / Crossover Filter | |||||||||||||||||||||||||
37 | ||||||||||||||||||||||||||
38 | 5) In Plogue Bidule, how do you assign the number of inputs and outputs to a group object? | |||||||||||||||||||||||||
39 | Multiple answers allowed | |||||||||||||||||||||||||
40 | [] Right click on group object, Group, and select “Properties” | |||||||||||||||||||||||||
41 | [] Right click on group object, Group, and select “Parameters” | |||||||||||||||||||||||||
42 | [] Select the objects to be grouped, right-click, Group, Group selected objects | |||||||||||||||||||||||||
43 | [] Connect the required inputs and outputs onto the corresponding outputs and inputs of the audio device | |||||||||||||||||||||||||
44 | [] It is automatically defined by the number of inputs and outputs of the first and last object in the group | |||||||||||||||||||||||||
45 | ||||||||||||||||||||||||||
46 | 6) Did you perform the home activity (Javascript class on Codacademy)? | |||||||||||||||||||||||||
47 | o Yes | |||||||||||||||||||||||||
48 | o No | |||||||||||||||||||||||||
49 | ||||||||||||||||||||||||||
50 | 7) Did you complete the Plogue Bidule equalizer exercise in class? | |||||||||||||||||||||||||
51 | o Yes | |||||||||||||||||||||||||
52 | o No | |||||||||||||||||||||||||
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 | ||||||||||||||||||||||||||
79 | ||||||||||||||||||||||||||
80 | ||||||||||||||||||||||||||
81 | ||||||||||||||||||||||||||
82 | ||||||||||||||||||||||||||
83 | ||||||||||||||||||||||||||
84 | ||||||||||||||||||||||||||
85 | ||||||||||||||||||||||||||
86 | ||||||||||||||||||||||||||
87 | ||||||||||||||||||||||||||
88 | ||||||||||||||||||||||||||
89 | ||||||||||||||||||||||||||
90 | ||||||||||||||||||||||||||
91 | ||||||||||||||||||||||||||
92 | ||||||||||||||||||||||||||
93 | ||||||||||||||||||||||||||
94 | ||||||||||||||||||||||||||
95 | ||||||||||||||||||||||||||
96 | ||||||||||||||||||||||||||
97 | ||||||||||||||||||||||||||
98 | ||||||||||||||||||||||||||
99 | ||||||||||||||||||||||||||
100 |