Our Blog Contain Detail about Some Technical Aspect like Programming, Blogger, Tools and Tip, Suggestion, Motivational, Health, Program in C and Java, Html

Sorting Technique | Bubble Sort | Data Structure Lecture Series

 

Bubble Sort



Table of Content

    1. Introduction
    2. Basic Idea
    3. Algorithm
    4. Program in C language
    5. Analysis of this algorithm

1. Introduction 

Sorting is the problem of arranging element in either increase order or decreasing order. Bubble Sort is one of the Sorting technique that solve this problem by comparing the elements of Array.

2. Basic Idea 

Basic idea Behind, this Sorting technique is place the largest element to its correct position by comparing its with neighbors. similarly second largest element and so on pass by pass.

 3. Algorithm 

Input: A unsorted array A[ ] of size N & 

output: A sorted array A[ ] of size N

------------------------------------------------------------------------------------------------------------------- 

Step 1: Set I equal to 0

Step 2: Repeat Step 3 to Step 4 until I less than N 

Step 3: Set J equal to 0

Step 4: Repeat Step 5 until J less than N-I-1 

Step 5: if A[J]>A[J+1] than go for Step 6 otherwise move to next

Step 6:  Swap (A[j],A[j+1]) 

Step 7: Print the Element of Sorted Array 

--------------------------------------------------------------------------------------------------------------------

4. Program in C language

  1. #include<stdio.h>
  2. #include<conio.h>
  3. void Bubblesort(int A[],int n);
  4. void printlist(int A[],int n);
  5. void main()
  6. {
  7.  int A[20],n;
  8.  int i;
  9.  printf("\nEnter the number of element\n");
  10.  scanf("%d",&n);
  11.  printf("\nNow enter the elements\n");
  12.  for(i=0;i<n;i++)
  13.  {
  14.    scanf("%d",&A[i]);
  15.  }
  16.  printf("\nElement present in the array before sort\n");
  17.  printlist(A,n);
  18.  Bubblesort(A,n);
  19.  printf("\nElement present in the array after sort\n");
  20.  printlist(A,n);
  21.  getch();
  22. }
  23. void Bubblesort(int A[],int n)
  24. {
  25. int i,j,temp;
  26. for(i=0;i<n;i++)
  27. {
  28.      for(j=1;j<n-i;j++)
  29.      {
  30.           if(A[j-1]>A[j])
  31.           {
  32.                temp=A[j-1];
  33.                A[j-1]=A[j];
  34.                A[j]=temp;
  35.           }
  36.      }
  37. }
  38. }
  39. void printlist(int A[],int n)
  40. {
  41. int i;
  42. for(i=0;i<n;i++)
  43. {
  44.   printf("%d",A[i]);
  45. }
  46. }

5. Analysis of this algorithm

let take one example 

  20, 6, 7, 5, 3 , 2 

Pass 1: when I = 0

20,, 7, 5, 3, 2

Here First we compare 20 with 6 as it is bigger than 6 just simply swap it  

6, 20, 7 , 5, 3, 2

Here First we compare 20 with 7 as it is bigger than 7 just simply swap it   

6, 7, 20,, 3, 2

Here First we compare 20 with 5 as it is bigger than 5 just simply swap it  

6, 7, 5, 20,, 2

Here First we compare 20 with 3 as it is bigger than 3 just simply swap it 

6, 7, 5, 3, 20,

Here First we compare 20 with 2 as it is bigger than 2 just simply swap it  

6, 7, 5, 3, 2, 20

Here is final array after pass 1 what we observe here Largest in array get placed in last position and second observation is that here we perform N-1 comparison mean 5 comparison.

Pass 2: when I = 1 

 6, 7, 5, 3, 2, 20

Here First we compare 6 with 7 as it is smaller than 7 just simply move to next step

6,,, 3, 2, 20

Here First we compare 7 with 5 as it is bigger than 7 just simply swap it   

6, 5,,, 2, 20

Here First we compare 7 with 3 as it is bigger than 3 just simply swap it    

6, 5, 3,,, 20

Here First we compare 7 with 2 as it is bigger than 2 just simply swap it     

6, 5, 3, 2, 7, 20

 Here is final array after pass 2 what we observe here second Largest in array get placed in second last position and second observation is that here we perform N-2 comparison mean 4 comparison.

similarly Pass are proceed and we reach to final position

what we observe here

In Pass 1: There are n-1 comparison

In Pass 2: There are n-2 comparison

.........................

In Pass n-2: There are 2 comparison

In Pass n-1: There are 1 comparison

In Pass n: There are 0 comparison

total number of comparison is 1 + 2 + 3 + 4+.....+n = n * (n-1)/2 Comparison

These are the number of comparison we have to perform in each case best, worst and average case so complexity of Bubble Sort is O(n^2)   


NOTE:

Make sure Bubble Sort is a Inplace and Stable Sorting Technique 

Share:

How to Speed Up Windows 10 PC or Laptop in 10 minutes | विंडोज 10 पीसी को 10 मिनट में कैसे तेज करें

 How to improve the Speed of Window 10 PC or Laptop 

Table of content

  • Introduction to Speed problem in PC or Laptop
  • Step to improve the Speed of PC or Laptop

1. Introduction to Speed problem in PC or Laptop

When we buy a new PC or Laptop it works smoothly without any interruption. When we spend some time with our PC or laptop, its speed automatically slows down. There are many reasons behind this like, less space in C drive, there are lot of unnecessary applications which run in background without your awareness using your CPU.

जब हम एक नया पीसी या लैपटॉप खरीदते हैं तो यह बिना किसी रुकावट के सुचारू रूप से काम करता है। जब हम अपने पीसी या लैपटॉप के साथ कुछ समय बिता लेते हैं, तो इसकी गति अपने आप धीमी हो जाती है। इसके पीछे कई कारण हैं जैसे, सी ड्राइव में कम जगह, बहुत सारे अनावश्यक एप्लिकेशन हैं जो आपके सीपीयू का उपयोग करके आपकी जागरूकता के बिना पृष्ठभूमि में चलते हैं।

Window 10 PC or Laptop

So if you want to improve the speed of your Windows 10 PC or Laptop then read the article carefully and follow the step by step procedure provided below.

तो अगर आप अपने विंडोज 10 पीसी या लैपटॉप की स्पीड में सुधार करना चाहते हैं तो लेख को ध्यान से पढ़ें और नीचे दी गई स्टेप बाय स्टेप प्रक्रिया का पालन करें।

2. Steps to improve the Speed of PC or Laptop

There are so many reasons that effect the speed of window 10 PC or Laptop similarly we have to follow so many steps to achieve this task.

ऐसे बहुत से कारण हैं जो विंडो 10 पीसी या लैपटॉप की गति को प्रभावित करते हैं उसी तरह हमें इस कार्य को प्राप्त करने के लिए कई चरणों का पालन करना होगा।

a) Updates

First of all Update yours Windows because the are so many Bugs in yours PC that slow down our Windows speed. In order to update Window, Just Click on Search bar, type window update service and click upon it.

सबसे पहले, अपना विंडोज अपडेट करें क्योंकि आपके पीसी में बहुत सारे बग हैं जो हमारी विंडोज की गति को धीमा कर देते हैं। विंडो को अपडेट करने के लिए, बस सर्च बार पर क्लिक करें, विंडो अपडेट सर्विस टाइप करें और उस पर क्लिक करें।



After That, whatever updates available, apply those update to yours PC or laptop 
उसके बाद, जो भी अपडेट उपलब्ध हों, इस अपडेट को अपने पीसी या लैपटॉप पर लागू करें

2. Back ground Application

There are some many application who run in background of our PC and utilize our PC resources like CPU, RAM and Hardware resources. This also slowdown our Windows, So you can get ridded from this by stopping unused Background application. In order to do this, again click on search bar and type background application. Click on Background application and Stop all the application which is running in background unnecessarily.

कुछ ऐसे एप्लिकेशन हैं जो हमारे पीसी की पृष्ठभूमि में चलते हैं और हमारे पीसी संसाधनों जैसे सीपीयू, रैम और हार्डवेयर संसाधनों का उपयोग करते हैं। यह हमारे विंडोज़ को भी धीमा कर देता है, तो आप अप्रयुक्त पृष्ठभूमि एप्लिकेशन को रोककर इससे छुटकारा पा सकते हैं। ऐसा करने के लिए फिर से सर्च बार पर क्लिक करें और बैकग्राउंड एप्लिकेशन टाइप करें। बैकग्राउंड एप्लिकेशन पर क्लिक करें और अनावश्यक रूप से बैकग्राउंड में चल रहे एप्लिकेशन को बंद कर दें।


After clicking Background Application you will get following interface and Stop the unnecessary running Application 


3. Start Up application
Startup application are the application that start running with the login in window and utilize our PC resources like CPU, RAM and Hardware resources. This also slowdown our Windows, So you can get ridded from this by stopping unused Startup application. In order to do this, again click on search bar and type Startup apps, then Click on Startup application and Stop all the application which you do not want to start with startup.

स्टार्टअप एप्लिकेशन वे एप्लिकेशन हैं जो विंडो में लॉगिन के साथ चलना शुरू करते हैं और हमारे पीसी संसाधनों जैसे सीपीयू, रैम और हार्डवेयर संसाधनों का उपयोग करते हैं। यह हमारे विंडोज़ को भी धीमा कर देता है, तो आप अप्रयुक्त स्टार्टअप एप्लिकेशन को रोककर इससे छुटकारा पा सकते हैं। ऐसा करने के लिए, फिर से सर्च बार पर क्लिक करें और स्टार्टअप ऐप्स टाइप करें, फिर स्टार्टअप एप्लिकेशन पर क्लिक करें और उन सभी एप्लिकेशन को रोकें जिन्हें आप पीसी शुरू करने से शुरू नहीं करना चाहते हैं।

4. Temporary file
There are so Many temporary file create by yours PC in order to perform certain task executed by you. we can delete these temporary file by typing %temp% in search Bar. Open that folder delete all the file present in it.  

आपके द्वारा निष्पादित कुछ कार्य करने के लिए आपके पीसी द्वारा कई अस्थायी फ़ाइल बनाई गई हैं। हम सर्च बार में %temp% टाइप करके इन अस्थायी फाइल को हटा सकते हैं। उस फोल्डर को ओपन करें उसमें मौजूद सभी फाइल को डिलीट कर दें।

5. Prefetch
Prefetch are the things or resources fetch by yours system in order to perform certain task. We delete prefetch, clicking on search bar then type run and after that type prefetch. delete all the file present in the folder.

प्रीफ़ेच कुछ कार्य करने के लिए आपके सिस्टम द्वारा प्राप्त की जाने वाली चीजें या संसाधन हैं। हम प्रीफेच को डिलीट कर सकते हैं, सर्च बार पर क्लिक करके फिर रन टाइप करें और उसके बाद प्रीफेच टाइप करें। फोल्डर में मौजूद सभी फाइल को डिलीट कर दें।

6. Task Manager 
Using task manger you can terminate unnecessary application running on our system or the application that utilize the CPU more.

टास्क मैनेजर का उपयोग करके आप हमारे सिस्टम पर चल रहे अनावश्यक एप्लिकेशन या सीपीयू का अधिक उपयोग करने वाले एप्लिकेशन को समाप्त कर सकते हैं।




Hope so this blog helps you in order to achieve goal. please share and comment.

आशा है कि यह ब्लॉग लक्ष्य प्राप्त करने में आपकी मदद करेगा। कृपया शेयर और कमेंट करें।   
Share:

How to Use Pen Drive as a RAM by Simple Step Process | सरल चरण प्रक्रिया द्वारा पेन ड्राइव को रैम के रूप में कैसे उपयोग करें

 How to Use Pen Drive as a RAM by Simple Step Process 
(सरल चरण प्रक्रिया द्वारा पेन ड्राइव को रैम के रूप में कैसे उपयोग करें)

TABLE OF CONTENT
1. Introduction 
2. Step to use Pen Drive as RAM

1. Introduction

When we purchase a new computer system, we have lot of expectation from it, like whatever program or software we want to run it is going to run it smoothly, But due to excitement of new computer system we forget to check system requirement of the software. 
Processer is important for running any software application but every software has some Requirement related to RAM, if RAM is less in yours computer system its result in, applications are not able to run properly and smoothly. So in Todays Blog we are going to learn how to use Pen drive as a RAM. 

जब हम एक नया कंप्यूटर सिस्टम खरीदते हैं, तो हमें उससे बहुत उम्मीदें होती हैं, जैसे कि हम जो भी प्रोग्राम या सॉफ्टवेयर चलाना चाहते हैं, वह उसे सुचारू रूप से चलाने वाला है, लेकिन नए कंप्यूटर सिस्टम के उत्साह के कारण हम सॉफ्टवेयर की सिस्टम आवश्यकता की जांच करना भूल जाते हैं। .
किसी भी सॉफ्टवेयर एप्लिकेशन को चलाने के लिए प्रोसेसर महत्वपूर्ण है लेकिन हर सॉफ्टवेयर में रैम से संबंधित कुछ आवश्यकताएं होती हैं, अगर आपके कंप्यूटर सिस्टम में रैम कम है तो इसके परिणामस्वरूप एप्लिकेशन ठीक से और सुचारू रूप से नहीं चल पाते हैं। तो आज के ब्लॉग में हम सीखेंगे कि पेनड्राइव को रैम के रूप में कैसे इस्तेमाल किया जाए।

  
Pen drive

2. Step to use Pen Drive as RAM

Step1: Insert the Pen drive in the Computer (कंप्यूटर में पेन ड्राइव लगाएं) you will see the interface like this


Step2. After that Right click on pen dive and open its properties (उसके बाद पेन ड्राइव पर राइट क्लिक करें और उसके गुणों को खोलें


After clicking on properties you will see the interface like this (properties पर क्लिक करने के बाद आपको कुछ इस तरह का इंटरफ़ेस दिखाई देगा)


Step3. Click on Ready Boost Tab in order to use it as a RAM (RAM के रूप में उपयोग करने के लिए रेडी बूस्ट टैब पर क्लिक करें)



Step 4: After Step 3, In this interface we have three option, 
           1.do not use this device which is the default option 
           2.Dedicate this device to Ready Boost 
           3.Use this Device
out of these option we have to focus on option 2: Dedicate this device to Ready Boost and Option 3: Use this Device, if you want to use complete pen drive  as a RAM then choose option 2 otherwise you can go for option 3, in which we have option to set the size of storage that you want to use as a RAM  

चरण 3 के बाद, इस इंटरफ़ेस में हमारे पास तीन विकल्प हैं,
            1. इस उपकरण का उपयोग न करें जो कि डिफ़ॉल्ट विकल्प है
            2. इस डिवाइस को रेडी बूस्ट के लिए समर्पित करें
            3.इस डिवाइस का उपयोग करें
इन विकल्पों में से हमें विकल्प 2 और 3 पर ध्यान केंद्रित करना होगा, यदि आप रैम के रूप में पूर्ण पेन ड्राइव का उपयोग करना चाहते हैं तो विकल्प 2 चुनें अन्यथा आप विकल्प 3 के लिए जा सकते हैं, जिसमें हमारे पास मेमोरी की मात्रा निर्धारित करने का विकल्प है। RAM के रूप में उपयोग करना चाहते हैं।




In the end, don't forget to change the default setting, hope so you enjoyed the post, if you have any suggestions don't forget to comment.
अंत में, डिफ़ॉल्ट सेटिंग को बदलना न भूलें, आशा है कि आपको पोस्ट अच्छी लगी होगी, यदि आपके पास कोई सुझाव है तो टिप्पणी करना न भूलें। 
Share:

INTRODUCTION TO INFORMATION SECURITY | What is Information Security

 Introduction to Information Security
(सूचना सुरक्षा का परिचय)

Table of Content 

  1. What is Information Security (सूचना सुरक्षा क्या है)
  2. Goals of Information Security (सूचना सुरक्षा के लक्ष्य)
  3. Role of Security in Internet and Web Services (इंटरनेट और वेब सेवाओं में सुरक्षा की भूमिका)

1. What is Information Security (सूचना सुरक्षा क्या है)

information security

Information Security is the process of securing or protecting the information from unauthorized access, use and modification means protection of information from miss use.  

सूचना सुरक्षा अनधिकृत पहुंच, उपयोग और संशोधन से जानकारी को सुरक्षित या संरक्षित करने की प्रक्रिया है, जिसका अर्थ है गलत उपयोग से जानकारी की सुरक्षा।

Share:

HOW MAKE MCQ QUESTION IN BLOGGER using JavaScript | जावास्क्रिप्ट का उपयोग करके ब्लॉगर में एमसीक्यू प्रश्न कैसे बनाएं

 HOW MAKE MCQ QUESTION IN BLOGGER using JavaScript

By simple copy pasting, If you want to make MCQ type question paper in blogger, Than you are at the right place. In this Blog I am going to cover detail about this process in a very simple language, So keep following the instruction Step by Step.
साधारण कॉपी पेस्ट करके, यदि आप ब्लॉगर में MCQ टाइप का प्रश्न पत्र बनाना चाहते हैं, तो आप सही जगह पर हैं। इस ब्लॉग में मैं इस प्रक्रिया के बारे में बहुत ही सरल भाषा में विस्तार से बताने जा रहा हूं, इसलिए निर्देश का चरण दर चरण पालन करते रहें।

Table of Content

1. Which programming language are required to prepare MCQ based paper in blogger/ ब्लॉगर में MCQ आधारित पेपर तैयार करने के लिए कौन सी प्रोग्रामिंग लैंग्वेज की आवश्यकता होती है

2. Procedure to make MCQ type Paper using given code/दिए गए कोड का उपयोग करके MCQ टाइप पेपर बनाने की प्रक्रिया

3. Link to download the code / कोड डाउनलोड करने के लिए लिंक

1. Types Questions

    A) Types 1st options
    B) Types 2nd options
    C) Types 3rd options
    D) Types 4th options
ANSWER= (A) Types 2nd options
Explain:-

1. Which programming language are required to prepare MCQ based paper in blogger/ ब्लॉगर में MCQ आधारित पेपर तैयार करने के लिए कौन सी प्रोग्रामिंग लैंग्वेज की आवश्यकता होती है

In order to make MCQ based Paper we are going to make use of HTML and JavaScript where HTML is hyper text markup Language which is used to create structure of web document. on the other side JavaScript is used to make the content dynamic or change the property of element 

So we are going to make use of two programming language like HTML and JavaScript 

NOTE: if u want to decorate the content then you can make use of CSS also    

ब्लॉगर में MCQ आधारित पेपर बनाने के लिए हम HTML और JavaScript का उपयोग करने जा रहे हैं जहाँ HTML हाइपर टेक्स्ट मार्कअप लैंग्वेज है जिसका उपयोग वेब दस्तावेज़ की संरचना बनाने के लिए किया जाता है। दूसरी ओर जावास्क्रिप्ट का उपयोग तत्व की संपत्ति को बदलने के लिए किया जाता है

इसलिए हम दो प्रोग्रामिंग भाषा जैसे HTML और JavaScript का उपयोग करने जा रहे हैं

नोट: यदि आप तत्वों को सजाना चाहते हैं तो आप CSS का भी उपयोग कर सकते हैं


2. Procedure to make MCQ type Paper using given code/दिए गए कोड का उपयोग करके MCQ टाइप पेपर बनाने की प्रक्रिया

Step1. Download the code from the link provided below. (नीचे दिए गए लिंक से कोड डाउनलोड करें।)

Step2. Replace the Type Question with yours question and replace Types 1st options, Types 2nd options with correct option in the code. (टाइप प्रश्न को अपने प्रश्न से बदलें और टाइप 1 विकल्प, टाइप 2 विकल्प को कोड में सही विकल्प से बदलें।)

Step3. Replace Answer and Explanation with correct answer and explanation in the code (उत्तर और स्पष्टीकरण को कोड में सही उत्तर और स्पष्टीकरण से बदलें)

Step4. Go to the HTML view in Blogger and Paste the code (ब्लॉगर में HTML व्यू पर जाएं और कोड पेस्ट करें)

Step5. Repeat the step 1 to 4 for next question but do not forget to replace question number in Code like q1 with q2 (अगले प्रश्न के लिए चरण 1 से 4 दोहराएं लेकिन कोड में प्रश्न संख्या को बदलना न भूलें, उदाहरण के लिए q1 को q2 से बदलना)

 3. Link to download the code / कोड डाउनलोड करने के लिए लिंक

Click here to Download the code


Thanking you, please Like and share our post

Share:

Introduction to Computers in English | What is Computer

 Introduction to Computers in English

Table of Content

  • What is computer
  • Who is the father of computer?
  • What is the full form of computer?
  • Names of parts of computer

What is computer, who is the father of computer, what is the full form of computer, names of parts of computer, if these questions are in your mind, then you are at right place.

INTRODUCTION TO COMPUTERS

1. WHAT IS COMPUTER - WHAT IS COMPUTER

The word computer is derived from the English word "compute", which means "calculation", that's why it is also called calculator or computer, it was invented to calculate, in older times the use of computer was only for calculation. But now a day it is being used for document making, e-mail, listening and viewing audio and video, play games, database preparation as well as in many other tasks, such as in banks, educational institutions, offices Computers are being used extensively in homes, shops,

Computer


  • Join us and get Free Daily Tech Updates?
  • A to Z Computer Terms, Dictionaries and Terminology
  • What is CCC Computer Course – What is CCC Computer Course

Computer only does what we tell it to do, that is, its only follows the commands that are already available inside the computer, it does not have the ability to think, the person who runs the computer, is called User, and the person who creates the program for the computer is called the programmer.

A computer consists of both software and hardware to function properly. If we said this in simple language, then these two are complementary to each other. Without hardware the is no use of software means it is useless and without software hardware is useless. Software is the set of instruction given to the hardware in a form of commands, the information about how any hardware has to work is already inserted inside the software. Many types of hardware are connected to the CPU of the computer, the system software ie operating system works to make the computer run properly by making a synergy between all of them.

2. WHO IS THE FATHER OF COMPUTER?

Charles Babbage is said to be the father of computer, Charles Babbage was born in London, the official language of London is English still no word was taken from English itself, the reason is that the technical words of the English language are based on ancient Greek language and Latin language, so the Latin word computer was taken for the word compute i.e. a machine that calculates.

Charles Babbage


A computer is a machine that is usually used for technical and academic research.

3. WHAT IS THE FULL FORM OF COMPUTER?

“Full form of computer is Commonly Operated Machine 

Particularly Used in Technical and Educational Research”

C – Commonly

O – Operated

M - Machine

P- Particularly

U- Used

T – Technical

E – Educational

R – Research

4. NAMES OF PARTS OF COMPUTER 

Computer parts name are

  • Micro Processor.
  • Mother Board.
  • Memory.
  • Hard Disk Drive.
  • Modem.
  • Monitor.
  • Keyboard/Mouse.

Computer is basically divided into two parts-

Computer Software

Computer Hardware

Share:

Development of INFORMATION SYSTEM

Development of INFORMATION SYSTEM

Table of Content

  • Introduction
  • Phases of Information System Development 
  • Development Model

1. Introduction 

Development of information system is step by step process. Development of information system starts with the analysis and end up with maintenance and support. 

we have already studied about information system in previous blog. what we find there Information system is a set of various component which provide information after processing the data provided to it. this information further used in decision make, managing and preparing strategies for growth of organization. In today session we are going to learn how to develop information system.

2. Phases of Information System Development 
Development of Information system is five step process which include analysis, designing, coding, testing and maintenance.

Phases of Development of Information System

Details of five steps are as follow  

  1. Analysis Phase:  This is the first step of development cycle. In this phase we gather the requirement of user which include functional and non functional requirement. functional requirement mean what function user want to perform through that system or software. Non-functional requirement means what are thing require to provide or develop that system or software. In  this phase itself feasibility study also performed. Feasibility study is a check about existent of system or software in terms of  existence and cost, mean it check of possibility of development of system.

    OUTPUT: Output of this phase is SRS (Software requirement specification) document. Its work like a agreement between developer and customer. it refereed by designer to design the software or system.
       
  2. Designing Phase:  In this phase design of the software or system is prepared by designer. design is basically diagrammatically representation of system or software. In computer science designer make use of  designing language like UML (unified modeling language).

    OUTPUT: Output of this phase is SDD (software design document) which is refereed by coder in order to implement the system or software.
  3. Coding Phase: In coding phase implementation of software or system  take place. the implementation of software is done in programming language like java, c c++ etc.

    OUTPUT: Output of this phase is logical code which is further test by testing team.
  4. Testing Phase: In this phase test of logical code take place. it is done by testing team. In this phase tester check that system or software is functioning properly or not. Testing is done with the help of test case which is prepare in the initial phase of development.

    OUTPUT: Output of this phase is error free logical code.
  5. Maintenance and support:  it is the last phase of development life cycle. In this new updates and support are provided to the customer. Support to customer is provided.

3 Model of development 

This is the process of development of information system.
There is various model refereed by developer in order to develop the information system. These development models are prepare to provide standard to the development process.
Name of the development models are as following:
  1. Water fall model
  2. Prototype model 
  3. Rapid application development model (RAD)
  4. Incremental model
  5. Spiral model  
Share:

Translate

Followers

Email Subscription

Enter your email address:

Delivered by FeedBurner

Recent Posts

Theme Support

Need our help to upload or customize this blogger template? Contact me with details about the theme customization you need.