programminbasics.blogspot.com
Assembly Language Part 4
http://programminbasics.blogspot.com/2010/01/assembly-language-part-4.html
Sunday, January 24, 2010. Assembly Language Part 4. Conditional Branching in MASM. We have shown that the jump instructions can be used to implement branches and looops. However these instructions are difficult for beginners to apply as a substitute of high level branching statements. In high level languages we use these basic structures -. The if-then structure is the most common type of branching statement used. The pseudocode for IF-THEN is :. IF CONDITION IS TRUE. THEN EXECUTE TRUE BRANCH STATEMENTS.
programminbasics.blogspot.com
Compiler
http://programminbasics.blogspot.com/2010/02/compiler.html
Sunday, February 7, 2010. What is a compiler? A compiler is necessary to make your source code (.c, .cpp, or .cc files) into a running program. If you're just starting out, you'll need to make sure that you have one before you start. There are many compilers available. Convert a source code file into an executable, but strictly speaking, compilation is an intermediate step. The act of taking compiled code and turning it into an executable. Generally, compiler refers to both a compiler and a "linker".
programminbasics.blogspot.com
Assembly Language Part 5
http://programminbasics.blogspot.com/2010/01/assembly-language-part-5.html
Sunday, January 24, 2010. Assembly Language Part 5. Looping instructions in Assembly. What comes to your mind after watching the loop at the left? That's it the Head is Touching the Tail at some point. In assembly a loop is a sequence of instructions that is repeated like the loop to the left. The final instruction (Tail) jumps (touches) to the first instruction (Head). The basic form of looping in Assembly is. For example if we want to read all input characters given by the user until he/she inputs.
programminbasics.blogspot.com
Creating a JavaDB with Netbeans
http://programminbasics.blogspot.com/2011/02/creating-javadb-with-netbeans.html
Friday, February 4, 2011. Creating a JavaDB with Netbeans. I am starting to put my hands on Java. Its quite amazing to see how Java connects to databases. Almost the same for all cases(tried Oracle,JavaDB). Just puting the code here to get in future. Lets first start with creating and connecting to a JavaDB using netbeans. First go to the services tab. Expand the Database entry. Right click the JavaDB and click start server. Connect to the newly created database. (right click and connect).
programminbasics.blogspot.com
Programming Basics: Artificial Intelligence
http://programminbasics.blogspot.com/p/artificial-intelligence.html
AI is the study of how to make computers do things that at the moment we do better. The automation activities that we associate with human thinking, activites such as decision making, problem solving, learning etc. Some of the Application Area of AI:. Knowledge the Backbone of Intelligence? It is proved that intelligence requires knowledge. Knowledge possess some un desirable properties though-. Hard to characterize accurately. It is always changing. Differs greatly from data. 2 Analyse the problem.
programminbasics.blogspot.com
Assembly Language Part 6
http://programminbasics.blogspot.com/2010/01/assembly-language-part-6.html
Sunday, January 24, 2010. Assembly Language Part 6. The ability to manipulate the individual bits of a Data is one of the key advantages of assembly language. In order to do so we use Logic instructions. Let us first remind the basic ligic instructions for now,. Now lets see where we use these functions in Assembly -. AND - To clear. OR - To set. XOR - To compliment desired bit positions. NOT - To compliment all bits. Used to Clear ). AND DESTINATION, SOURCE. AND AL,7Fh ;. OR DESTINATION, SOURCE. Suppose...
programminbasics.blogspot.com
Assembly Language Part 3
http://programminbasics.blogspot.com/2010/01/assembly-language-part-3.html
Sunday, January 24, 2010. Assembly Language Part 3. For 8086 programs to perform useful tasks, there must be a way to make decisions and repeat sections of the code. Inthis section we will discuss the the basic flow control instructions of MASM. In assembly program flow is managed by jumping isntructions. There are 2 types of jump. The JMP instruction causes an unconditional transfer of control. The basic form is-. Here the jump Jxx can be any of the following -. Jcc Instructions for Signed Comparisons.
programminbasics.blogspot.com
C Programming Basic - Part 1
http://programminbasics.blogspot.com/2010/02/c-programming-basic-part-1.html
Sunday, February 7, 2010. C Programming Basic - Part 1. Int main() { printf( "Hello world! Let's look at the elements of the program. The #include is a "preprocessor" directive that tells the compiler to put code from the header called stdio.h into our program before actually creating the executable. By including header files, you can gain access to many different functions ( the printf ) function is included in stdio.h. The final brace closes off the function. You may refer to here. 2009 My Web Blog.
SOCIAL ENGAGEMENT