Posts

Showing posts from 2017

Programmer's Hub

A blog about computer programming language and computer programs. One can find all kind of programming stuff. Also contact for project work, Assignments etc. Online Learning available for basic to advance such as MS-Office, C,C++,Java, Data structure, ASP.NET, PHP,C#,PYTHON, Linux/Unix, Netbeans, HTML, DHTML,CSS,JavaScript,Oracle,MYSQL,SQL. Feel free to contact @ kaushalrajni65@gmail.com

Introduction To Java

Java is a complete programming language developed by Sun. It Can be used to develop either web based or stand-alone software. Many pre-created code libraries available for more complex and powerful programs Following are the features of JAVA Simple Object-Oriented Portable Platform independent Secured Robust Architecture neutral Dynamic Interpreted High Performance Multithreaded Distributed Simple According to Sun, Java language is simple because: syntax is based on C++ (so easier for programmers to learn it after C++). removed many confusing and/or rarely-used features e.g., explicit pointers, operator overloading etc. Object-oriented Object-oriented means we organize our software as a combination of different types of objects that incorporates both data and behaviour. Object-oriented programming(OOPs) is a methodology that simplify software development and maintenance by providing some rules. Basic concepts of OOPs are: Object Class Inheritanc...

Data Structure

A data structure is a scheme for organizing data in the memory of a computer. Some of the more commonly used data structures include lists, arrays, stacks, queues, heaps, trees, and graphs. The way in which the data is organized affects the performance of a program for different tasks. Computer programmers decide which data structures to use based on the nature of the data and the processes that need to be performed on that data. Data structure are of two types: Linear data structure (Array,Linked list,Stack, Queue) Non-Linear data structure (Tree,Graphs)