Reverse Gear Prelim Question Paper  

Posted by Unknown in ,

Reverse Gear Question Paper for the prelims in Aranya 2008.

reverse gear prelims



Answers:
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

Knight Coders Prelims  

Posted by Unknown in

Knight Coders Prelims Question Papers:

Answers:
1-c
2-a
3-c
4-b
5-b
6-b
7-b
8-d
9-d
10-c
11-d
12-c
13-c
14-b
15-c
16-c
17-a
18-c
19-c
20-d
21-c
22-c
23-b
24-b
25-c
26-c
27-b
28-c
29-c
30-b

Knight Coders Question Paper  

Posted by Unknown in ,

The question paper for Knight Coders Event Aranya 2008


Restarting Page Numbering in Word 2007  

Posted by Unknown in

To hide page numbering:

The page numbering is in a header or footer, so you need to edit the header or footer to fix this.

To restart page numbering.

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.


A little batch and a lot of help  

Posted by Unknown in

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.out
g++ %1 -o a.exe
a.exe,a.out
notepad a.out
Code GCC
del a.out
gcc -lm %1 -o a.exe
a.exea.out
notepad a.out