Using [Ctrl]+[C] and [Ctrl]+[V] to avoid retyping
If you are bored with retyping you can use these keyboard shortcuts to copy and paste text almost anywhere, including into your algorithm definitions. As always, keyboard shortcuts are entered using the lowercase letter. They are written here with uppercase letters for clarity.
The shortcuts [Ctrl]+[C] and [Ctrl]+[V] work the same as the commands Copy & Paste respectively, except that they can be used for copying and pasting text almost anywhere – even between different applications and into (and out of) almost any box requiring a text input.
For example, in question 5, we had:
AnsB= round(S/(1+p),2)
AnsC= round(S*(1+p/100),2)
AnsD= round(S/(1+(p+5)/100),2)
These definitions are all very similar and it would be nice not to have to type them all individually.
Here is how to do it with EVTG and these definitions, but the actions are same in all applications.
Double-click on AnsB to open it for editing.

We are going to highlight (blue background) the definition for copying. If you are handy with your mouse, use click and drag. If you are not so handy with your mouse, click the box area with your mouse (to move the cursor to the right of the definition) and then press and hold [Shift]. While holding [Shift], press and hold down the left cursor arrow.
It is easier here to work from right to left since you can click anywhere after the “)” to get the cursor in the correct start position. Otherwise you have to click exactly in front of the “r”.
With a little practice, this technique will become an enormously useful tool.
By the way, notice that the answer variables are not grouped together anymore. We can fix this by reordering the variables. You can use click and drag to get them back into position.


In general, it is good practice that the definition of variable or function be positioned above any other variable, function or condition that uses it in their definition.