Browse Source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 years ago
parent
commit
7f9078b8c7
1 changed files with 4 additions and 6 deletions
  1. 4
    6
      README-en.md

+ 4
- 6
README-en.md View File

42
 
42
 
43
 2. Studied the concepts and instructions for the laboratory session.
43
 2. Studied the concepts and instructions for the laboratory session.
44
 
44
 
45
+3. Taken the Pre-Lab quiz, available in Moodle.
46
+
45
 
47
 
46
 ---
48
 ---
47
 
49
 
272
 
274
 
273
 4. Execute the program and observe what is displayed in the window `Application Output`. Notice the difference between the content of the variables `argValue` and `argRef` despite the fact that both had the same initial value, and that `paramValue` and `paramRef` were assigned the same value. Explain why the content of `argValor` does not change, while the content of `argRef` changes from 0 to 1.
275
 4. Execute the program and observe what is displayed in the window `Application Output`. Notice the difference between the content of the variables `argValue` and `argRef` despite the fact that both had the same initial value, and that `paramValue` and `paramRef` were assigned the same value. Explain why the content of `argValor` does not change, while the content of `argRef` changes from 0 to 1.
274
 
276
 
275
-### Exercise 2
276
-
277
-In this exercise you will practice the creation of an overloaded function.
277
+### Exercise 2: Creation of an overloaded function
278
 
278
 
279
 **Instructions**
279
 **Instructions**
280
 
280
 
312
 
312
 
313
 2. Now you will create an overloaded function `circle` that receives as arguments the value of the angle $$t$$, the reference to the variables $$x$$ and $$y$$, and the value for the radius of the circle. Call the overloaded function `circle` that you just implemented from `main()` to calculate the values of the coordinates $$x$$ and $$y$$ for the circle with radius 15 and draw its graph. Graph the circle within the `wCircle` object. To do this, you must call the method functions `AddPointToGraph(x,y)`, `Plot` and `show` from `main()`. Remember that these should be preceded by `wCircle`, for example, `wCircle.show()`.
313
 2. Now you will create an overloaded function `circle` that receives as arguments the value of the angle $$t$$, the reference to the variables $$x$$ and $$y$$, and the value for the radius of the circle. Call the overloaded function `circle` that you just implemented from `main()` to calculate the values of the coordinates $$x$$ and $$y$$ for the circle with radius 15 and draw its graph. Graph the circle within the `wCircle` object. To do this, you must call the method functions `AddPointToGraph(x,y)`, `Plot` and `show` from `main()`. Remember that these should be preceded by `wCircle`, for example, `wCircle.show()`.
314
 
314
 
315
-### Exercise 3
316
-
317
-In this exercise you will implement another function to calculate the coordinates of the points in the graph of a curve.
315
+### Exercise 3: Implement function to calculate the coordinates of the points in the graph of a curve
318
 
316
 
319
 **Instructions**
317
 **Instructions**
320
 
318