The document describes a sample question paper for an examination on programming. It includes 3 programming questions, with one being to write a program to find the factorial of a given number. The question provides an algorithm, flowchart, and sample code to find the factorial of a number by taking input, initializing variables, using a while loop to multiply the number by integers from number down to 1, and outputting the factorial. The code is run and outputs the factorial of 5 as 120.