Skip to main content

Website Related to Previous Year Question Papers


Hi
I would like share a website (http://qproof.in) with you.  Website based on previous question papers related various Universities and streams. This website is not like any other conventional website where you just visit and get previous year paper. Rather than this, website gave you facility to search particular question among all the available papers. Website will return the entire questions based on your search term.  For example if you want to get all questions based on “Operator Overloading” from all the papers. Just Search and get all question related to your term. In result, you will get Question, Paper name for that question, Year of that paper and University.  Which is quite sufficient detail of any question that student want to know about. Few question also has tag Recommended means, website is recommending you a question which is quite important according to system.

Along with this nice search ability, you can get all questions(http://qproof.in/QPaperSearch.aspx) for a particular year, subject and university just like any other question paper website. Website also providing you very nice search interface for this too.

Main features of this website is this, it has an AI (Artificial Intelligence) based system. Which has ability to tell you that whether your question is important or not. So, You may say that is has a small prediction system which tries to tell (Which always not true by the way) you that your input question is important and you must study it well. In search, result you will get all the important questions under the tag Recommended. This AI system still in learning stage mean.
This website also provides you answers to the question along with reference. Therefore, you this website provide you a common place where student can get all the questions for a particular topic as well as answers to the question.
Currently website is covering all the previous year question papers related to three main university of Punjab.

Punjabi University
Punjab Technical University
Guru Nanak Dev University

 Thanks

Comments

  1. If your article is very interesting to read. Your way of custom essay writing service is really wonderful. Thanks for your wonderful article.

    ReplyDelete

Post a Comment

Popular posts from this blog

Font identifier and Unicode converter for Hindi

Font identifier and Unicode converter for Hindi Fonts are used to represent text in document. Fonts are mainly two kind non-Unicode and Unicode fonts. Complex scripts like Hindi and other Asian languages well represented in Unicode fonts. There are some other ways to write these languages for e.g we can use ASCII/ISCII codes to represent different characters of Hindi, but there are large numbers of characters in Hindi script as compared to English. Therefore, we always need multiple ASCII/ISCII encoded characters combination to represent a single character of Hindi Script. One major problem in these ASCII encoding based fonts is that we cannot easily transfer text from one system to another. The system must have these text fonts. There is hundreds of ASCII/ISCII encoding based fonts which are used to write Hindi text. New software systems are based on Unicode fonts.                   ...

Binary Search Tree in ASP .Net

Binary Search Tree in ASP .Net To create Binary Search Tree(BST) in Asp.net application   first you need to create a Node class. Something like following : class Node {     public String data;     public int freq = 0;     public Node left, right;     public Node()     { }     public Node( String data)     {         this .data = data;         left = null ;         right = null ;     } } Next You need to create a class including different functions.Like class BinaryTreeImp {     Node root;     String outputfreq = "" ;     static int count = 0;     public BinaryTreeImp()     {      ...

Hindi to Punjabi Machine Translation System

The Hindi To Punjabi Machine Translation System has been developed using Direct/Rule based Approach by Dr.Vishal Goyal and Dr. G.S Lehal. Various large size Lexicon resources  have been used to map Source and Target language words.  In general, if the two languages are structurally similar, in particular as regards lexical correspondences, morphology and word order, the case for abstract syntactic analysis seems less convincing. Since the present research work deals with a pair of closely related language, so the direct translation system is the obvious choice. The overall system architecture shown below, is adopted for Hindi to Punjabi Machine Translation System. The system is divided into three stages: Preprocessing, Translation Engine, and Post Processing stage. Following is the description of various steps of this architecture.  PreProcessing   The pre-processing stage is a collection of operations that are applied on input  data to make it pr...