Reverse Gear Question Paper for the prelims in Aranya 2008.
1-b
2-c
3-c
4-d
5-b
6-a
7-b
8-e
9-b
10-c
11-b
12-e-0
13-a
14-a
15-d
16-a
17-d
18-c
19-d
20-a
21-a
22-d
23-c
24-e-5 20 1
25-b
26-d
27-a-2,3,7,8
28-d
29-d
30-c
Reverse Gear Question Paper for the prelims in Aranya 2008.
Knight Coders Prelims Question Papers:
The page numbering is in a header or footer, so you need to edit the header or footer to fix this.
Page numbering can be controlled by section breaks. You need to insert at least one section break to make this happen. Each time you insert a section break, the numbering can restart.
Changing styles of page numbers between i,ii,iii to 1,2,3.
Select page numbers in the footer section. Just remove the link to previous. This way the formatting will not be linked to the previous header or footer and you'll get good page numbers starting in a different styles, especially useful starting afresh.
Have you ever organized a contest. Sometimes it happens that while checking questions for the contest we prefer not to use the software like the pc2 or any contest s/w. Then the major problem is compiling. You cannot compile a file by typing its name line by line and doing the funny stuff around that. So here it is: use batch. All you have to do is copy the code to a file and rename it as something. batch. Drag and drop to see the output and you'll find your life easier:
a.in is the file containing the input. a.out contains the output.
Code: G++
del a.outCode GCC
g++ %1 -o a.exe
a.exe,a.out
notepad a.out
del a.out
gcc -lm %1 -o a.exe
a.exea.out
notepad a.out