Fehcn

Java Android Kotlin OOP

Wednesday, 7 March 2018

Double linked list in C++ complete concept

March 07, 2018
A type of list where  each node is connected with its previous one and next one.Address of previous node and address of next node is also saved along data inside node.So in double linked list we can access elements from back side and...

Tuesday, 6 March 2018

Circular linked list in C++ complete concept

March 06, 2018
Circular linked list is a type of dynamic list where last node is linked with first node of list.Here complete concept of circular linked list is provided with a C++ program.Let's take a brief overview of working and output of this program.Copy...

Monday, 5 March 2018

How to create simple circular linked list in C++

March 05, 2018
Circular linked list is most commonly used data structure in most object oriented languages.Linked list is used where we have no concept about user requirements.If user requirements are fixed then arrays are bests data types to store data.But...

How to sort array using quick sort algorithm in c++

March 05, 2018
  Sometimes we are asked to sort an array using specific algorithms like bubble sort or quick sort.Because these algorithms have different space and time complexities.Below quick sort algorithm is used to sort array of ten elements.Structure...

Sunday, 4 March 2018

How to sort simple array in c++

March 04, 2018
Some times we need to sort out arrays in programs to find out precise results.Sorting an array is an easy process.Just declare an array.Declare four local variables that will help us in iteration and sorting.Now display a single message...

Wednesday, 24 January 2018

Software development Life Cycle in Software Engineering

January 24, 2018
What is SDLC? SDLC is a software development life cycle that based on different steps that are important to create any good software. Every software organization follows these steps to create an efficient software.   SDLC consists...

Sunday, 14 January 2018

How to turn ON / OFF two LED's using arduino

January 14, 2018
We need a  program for Arduino to Turn ON or Turn OFF two LED's. Source code is very simple. Only on logic is used in this Arduino program that is if-else. I hope you are familiar with if-else statements. I you don’t know what is...

Wednesday, 10 January 2018

Decision making in programming language

January 10, 2018
In programming programs are written for multiple purposes and for multiple users.Each user's purpose of use may be different and definitely output should be different.Decision making statements enable developers to write programs that can be used for multiple purposes.For example a person wanted to know whether a specific number is even...

Tuesday, 9 January 2018

Table application in android for kids

January 09, 2018
Android table application is very basic app for small children.It will help them to learn tables.It consists of simple input area where integer values can be entered up-to 32700.User just need to input the number of table and press the 'ok'...

Monday, 8 January 2018

Uses of computers in our daily life

January 08, 2018
Before starting the uses I would like to tell you What is computer. Not only our laptop and PC's are computers. Any device that can compute something like our mobile,watch, microwave oven are all computers.Now let's start the topic, in our daily life more then 70% work is done by computers.for example in the morning when alarm sounds...