Skip to main content

Posts

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/QPaperSea
Recent posts

Operations on Big Numbers

 (Photo credit: Wikipedia ) Ideas for storing and operating on Big numbers in C++     Hello World! Today I would like to share my C/C++ Code developed for storing and performing different operations on a Big Numbers. Big Numbers are those, which cannot handled by any normal predefined data type (int,float,double,long) of any available programming language. I have developed that code to get big numbers and store them in user defined data type like linked list. Initially big number is stored in a String of chars. Doubly linked list is used store every single char per node. Storing a big number in a linked list is just a one thing; there is no use of storing that number in linked list if you cannot perform different oppressions on it. Therefore, I have developed this code in C language to perform very basic oppressions on it like divide and subtraction. I have written this code last year. Until now, I did not update it. I know this code is not perfec

Send E-Mail using ASP.NET C#

Hello World!! Today I would I like to share my knowledge regarding “Send an E-Mail using ASP.Net C#” Using C#.NET it’s quite easy to send e-mail. I have used this code to send e-mail viva godaddy.com mail server . For “web.config” file, you may follow these lines of code, this code works fine for me after trying  many other options. Pre Requirement is you have to create a email address for your domain name for example if your domain name is xyzblog.com then your email should be no-reply@xyzblog.com. I have tested this on localhost. < system . net > < mailSettings > < smtp from = "no-reply@Mydomain.com" > < network host = "smtpout.secureserver.net" userName = "Myemail@mydomain.com" password = "Mypassword" / > < / smtp > < / mailSettings > < / system . net > if you want to use Gmail.com follow these code lines. < system . net >

Huffman Coding

Proposed by Dr. David A. Huffman in 1952 –         “A Method for the Construction of Minimum Redundancy Codes” Applicable to many forms of data transmission                  Algorithm for Huffman Tree Construct a set of trees with root nodes that contain each of the individual symbols and their weights. Place the set of trees into a priority queue. while the priority queue has more than one item Remove the two trees with the smallest weights. Combine them into a new binary tree in which the weight of the tree root is the sum of the weights of its children. Insert the newly created tree back into the priority queue. Huffman coding is a technique used to compress files for transmission Uses statistical coding –         more frequently used symbols have shorter code words Works well for text and fax transmissions An application that uses several data structures  # include < iostream > # include &