Postingan

Menampilkan postingan dengan label programming

Stemming of a file in c++ | What is Stemming in IR

Gambar
Programming yes post of programming. This post may b unique over the internet a Program of Stemming of File in C++ , Last week while Working over a Project of Boolean Search Engine in C++ . I have to cope with a  problem and Project requirement was also to Use stemming. So I complete by the project with following a code of stemming . What is Stemming of a File: A common processing step in many IR(information retrieval) systems is called stemming. The main idea behind stemming is that users searching for information on “serving” will also be interested in documents that have information containing “served”, “r”, “serve”, and so on all worlds which are related to search query. Systems can be susceptible to errors due to poor stemming, so this is a little tricky. For example, a user interested in “information retrieval” might get a document titled “Information on Golden Retrievers” due to stemming. this is used in search engines where we have to find documents containing relevant word...

Program To Print Ascii Table in Assembly Language

Program To Print Ascii Table in Assembly Language  .MODEL SMALL .STACK 100H .DATA PROMPT DB "The 256 ASCII Characters are ",0AH,"$" nxtline DB 0AH,"$" .CODE start: MOV AX, @DATA ; initialize DS MOV DS, AX LEA DX, PROMPT ; load and print PROMPT MOV AH, 9h INT 21H MOV Cl, 0 ; initialize CL MOV AH, 2 ; set output function LP: ; loop label Mov DL, CL MOV AH ,2H ; print ASCII character INT 21H LEA DX, nxtline MOV AH,9H INT 21H INC CL ; Increment CL CMP CL , 255D JNE LP ; jump to label LP if CL is 255 MOV AX,4C00H INT 21H END start Tags: Program To Print Ascii Table in Assembly Language  Assembly language program in assembly language printing ascii values in assembly language COAL coal program coa...

How to View Source Code of .NET EXE

Gambar
How to View Source Code of .NET EXE .NET one of the most familiar word for developers/programmers and CS/IT students. Many of you want to see .NET source code, so if you one of them then try simple methods and view Source code . By following below steps you can get actual C ++ or C # code of any .NET exe with decompiling .NET exe file easily. Step by Step procedure for .NET EXE Source Code: When we are working in .NET and want to compile and application code which written in C++ or C#, then after compiling and develop we get and exe file of .NET. Now what will you do when you want get back the source code of C++ or C# application. In simple words it is called decompiling of the .NET application. There are many tools use for decompile it. For this you just need to put .NET exe which is created using .NET now decompiler will give you the source code which written in C++ and C#. So now its also considered the security risk and also raise the point that we should secure our .NET exe b...

Download C# 2010 For Programmers Fourth Edition by DEITEL DEVELOPER SERIES

Gambar
Download C# 2010 For Programmers Fourth Edition by DEITEL DEVELOPER SERIES Welcome to Visual C# ® 2010, C# 4 and the world of Microsoft® Windows® and Internet and web programming with Microsoft’s .NET 4 Framework! This book presents leadingedge computing technologies for professional software developers. We believe the book will give you an informative, challenging and entertaining C# educational experience. Below is the list of  C# 2010 For Programmers Fourth Edition contents and download link 1. Introduction 2. Dive Into® Visual C# 2010 Express 3. Introduction to C# Applications 4. Introduction to Classes and Objects 5. Control Statements: Part 1 6. Control Statements: Part 2 7. Methods: A Deeper Look 8. Arrays 9. Introduction to LINQ and the List Collection 10. Classes and Objects: A Deeper Look 11. Object-Oriented Programming: Inheritance 12. OOP: Polymorphism, Interfaces and Operator Overloading 13. Exception Handling 14. Graphical User Interfaces with Windows Forms: Part 1...

C# Main Function for Calling all classes

C# Main Function for Calling all classes void Main_Fun() { int num; Program obj = new Program(); Console.Clear(); Console.ForegroundColor = ConsoleColor.Green; Console.BackgroundColor = ConsoleColor.DarkCyan; Console.WriteLine("\n\t\t\t*****VISUAL PROGRAMMING*****"); Console.WriteLine("\n\t\t\t ****ASSIGNMENT # 1****\n\n"); Console.Write("\nIf Run Project (Y/N) ? "); obj.choice = Convert.ToChar(Console.ReadLine()); if (obj.choice != 'Y' && obj.choice != 'y') { Console.WriteLine("\nSee you Next Time"); } else { Console.Write("\nEnter the Question No. : "); num = Convert.ToInt32(Console.ReadLine()); switch (num) { case 1: ...

C# Program which calculated factorial to prime function

C# Program which  calculated factorial to prime function Program Statement: Write two functions max(int,int) and prime(int). max function will take two arguments and will return the maximum of two numbers in main. Then main function will pass this calculated factorial to prime function which will show that passed value is prime or not. Solution : public class _max { public int max(int a, int b) { if (a > b) return a; else return b; } public void prime(int n) { if (n == 1) Console.WriteLine("\n\t\t{0} is maximum but not prime number!\n\n", n); if (n >= 2) { if (n % 2 != 0) { Console.WriteLine("\n\t\t{0} is maximum and Prime number!\n\n", n); } else { Console.WriteLine("\n\t\t{0} is maximum but not a Prime nu...

Assembly Language Kip R Irvani Sixth Edition

Gambar
Assembly Language Kip R Irvani Sixth Edition Assembly Language Kip R Irvani Sixth Edition is one of the best book for students who study the course of Computer Organization and Assembly Language. KIP R. IRVINE is the author of  Assembly Language for x86 Processors Sixth Edition . This book offer best and simple basic concepts for beginners and describe the clear concept.  1.  Basic Concepts 2.  x86 Processor Architecture 3.  Assembly Language Fundamentals 4.  Data Transfers, Addressing and Arithmetic 5.  Procedures 6.  Conditional Processing 7.  Integer Arithmetic 8.  Advanced Procedures 9.  Strings and Arrays 10. Structures and Macros 11. MS-Windows Programming 12. Floating-Point Processing and Instruction Encoding 13. High-Level Language Interface 14. 16-Bit MS-DOS Programming Download Link

Top 5 Websites To Compile & Run Programs Online || Online Compilers

Gambar
As a  programmer , till now you have compiled your program on any  software  in offline mode. Have you experience to compile and run your program online.There are many  online compilers  are available to compile and run programs of different languages like C, C++ or python.No you do not need to download and install a heavy software or compiler for programming, as you can do it online. I have collected a list of  5 best websites  which allows you to write, compile and run a program online. So, now enjoy  online programming  by visiting Websites To Compile & Run Programs Online . 1.  codepad.org Codepad.org  is an online compiler and collaboration tool.This site allows you to write and run code and provide a URL of code which you can share via email and chat. This online compiler is compatible with C, C++, Perl, PHP ,Ruby and many more.You can select any  programming language  to compile program. 2. ideone.com This is be...

Top 5 Biggest and Popular Programming Contests

Gambar
Top 5 Biggest and Popular Programming Contests Do or Die this is one of amazing and my favorite Quote which enough to change someone life and make history. Contests have same behavior like this sentence because you have to beat others and make your history with own hands here today I have discussed on Programming Contests. If you are programmer then you must familiar with programming contests and there are many programming contest held on national and international level but here in this post have only listed Top 5 World’s biggest international programming contests which held by most popular IT Companies like Google, Microsoft, IBM and many more. These Contests consists of Computer Science Old and new languages like C/C++/C#, JAVA, PHP etc and see the people’s skills. The basic aim of these programming contests to find talented programmer over the Globe and see how fast they solve problem in given time duration. Below is the list of Top 5 International Programming Contests with their...