Multithreaded programming with Java.

A thread is the smallest sequence of instruction executions which can be scheduled by an OS scheduler to run on a CPU. A thread is living inside a process and it is considered as a lightweight process. Threads are the fundamental model of program execution in a Java program, and the Java language and its…… Continue reading Multithreaded programming with Java.

How to INSERT VALUES INTO table in SQL

A Database is simply a mess of interconnected Data-tables where you store inter-related data in order to make some descriptive information. In a previous post, I discussed how you can create a Data-table in SQL with examples, just make sure you have read that post before reading this. After a Data-table is created in your…… Continue reading How to INSERT VALUES INTO table in SQL