<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>SOFTWARE PROGRAMMING</title>
	<atom:link href="http://sehelsoft.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sehelsoft.wordpress.com</link>
	<description>SehelSoft specialized in Visual basic solutions with both Access and SQL database.</description>
	<lastBuildDate>Sat, 25 Oct 2008 07:39:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sehelsoft.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>SOFTWARE PROGRAMMING</title>
		<link>http://sehelsoft.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sehelsoft.wordpress.com/osd.xml" title="SOFTWARE PROGRAMMING" />
	<atom:link rel='hub' href='http://sehelsoft.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Reliable Software Programming</title>
		<link>http://sehelsoft.wordpress.com/2008/10/25/reliable-software-programming/</link>
		<comments>http://sehelsoft.wordpress.com/2008/10/25/reliable-software-programming/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 07:39:20 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=29</guid>
		<description><![CDATA[Software reliability is an important facet of software quality. It is defined as &#8220;the probability of failure-free operation of a computer program in a specified environment for a specified time&#8221; To improve software reliability can be applied at different stages of a program&#8217;s development, in the case of real software. These stages principally include: requirements, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=29&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal">Software <strong>reliability</strong> is an important facet of software quality. It is defined as &#8220;the probability of failure-free operation of a computer program in a specified environment for a specified time&#8221;</p>
<h4><span style="font-weight:normal;">To improve software reliability can be applied at different stages of a program&#8217;s development, in the case of real software. These stages principally include: requirements, design, programming, testing, and runtime evaluation. The study of theoretical software reliability is predominantly concerned with the concept of correctness, a mathematical field of computer science which is an outgrowth of language and automata theory.</span></h4>
<h4>Requirements</h4>
<p class="MsoNormal">A program cannot be expected to work as desired if the developers of the program do not, in fact, know the program&#8217;s desired behaviour in advance, or if they cannot at least determine its desired behaviour in parallel with development, in sufficient detail. What level of detail is considered sufficient is hotly debated. The idea of perfect detail is attractive, but may be impractical, if not actually impossible, in practice. This is because the desired behaviour tends to change as the possible range of the behaviour is determined through actual attempts, or more accurately, failed attempts, to achieve it.</p>
<p>Whether a program&#8217;s desired behaviour can be successfully specified in advance is a moot point if the behaviour cannot be specified at all, and this is the focus of attempts to formalize the process of creating requirements for new software projects. In situ with the formalization effort is an attempt to help inform non-specialists, particularly non-programmers, who commission software projects without sufficient knowledge of what computer software is in fact capable. Communicating this knowledge is made more difficult by the fact that, as hinted above, even programmers cannot always know in advance what is actually possible for software in advance of trying.</p>
<h4>Design</h4>
<p class="MsoNormal">While requirements are meant to specify what a program should do, design is meant, at least at a high level, to specify how the program should do it. The usefulness of design is also questioned by some, but those who look to formalize the process of ensuring reliability often offer good software design processes as the most significant means to accomplish it. Software design usually involves the use of more abstract and general means of specifying the parts of the software and what they do. As such, it can be seen as a way to break a large program down into many smaller programs, such that those smaller pieces together do the work of the whole program.</p>
<p>The purposes of high-level design are as follows. It separates what are considered to be problems of architecture, or overall program concept and structure, from problems of actual coding, which solve problems of actual data processing. It applies additional constraints to the development process by narrowing the scope of the smaller software components, and thereby — it is hoped — removing variables which could increase the likelihood of programming errors. It provides a program template, including the specification of interfaces, which can be shared by different teams of developers working on disparate parts, such that they can know in advance how each of their contributions will interface with those of the other teams. Finally, and perhaps most controversially, it specifies the program independently of the implementation language or languages, thereby removing language-specific biases and limitations which would otherwise creep into the design, perhaps unwittingly on the part of programmer-designers.</p>
<h4>Programming</h4>
<p class="MsoNormal">The history of computer programming language development can often be best understood in the light of attempts to master the complexity of computer programs, which otherwise becomes more difficult to understand in proportion (perhaps exponentially) to the size of the programs. (Another way of looking at the evolution of programming languages is simply as a way of getting the computer to do more and more of the work, but this may be a different way of saying the same thing.) Lack of understanding of a program&#8217;s overall structure and functionality is a sure way to fail to detect errors in the program, and thus the use of better languages should, conversely, reduce the number of errors by enabling a better understanding.</p>
<p>Improvements in languages tend to provide incrementally what software design has attempted to do in one fell swoop: consider the software at ever greater levels of abstraction. Such inventions as statement, sub-routine, file, class, template, library, component and more have allowed the arrangement of a program&#8217;s parts to be specified using abstractions such as layers, hierarchies and modules, which provide structure at different granularities, so that from any point of view the program&#8217;s code can be imagined to be orderly and comprehensible.</p>
<p>In addition, improvements in languages have enabled more exact control over the shape and use of data elements, culminating in the abstract data type. These data types can be specified to a very fine degree, including how and when they are accessed, and even the state of the data before and after it is accessed..</p>
<h4>Testing</h4>
<h4>
<span style="font-weight:normal;">Software testing, when done correctly, can increase overall software <em>quality of conformance</em> by testing that the product conforms to its requirements. Testing includes, but is not limited to: </span></h4>
<ol type="1">
<li class="MsoNormal">Unit Testing</li>
<li class="MsoNormal">Functional Testing</li>
<li class="MsoNormal">Performance Testing</li>
<li class="MsoNormal">Failover Testing</li>
<li class="MsoNormal">Usability Testing</li>
</ol>
<p class="MsoNormal">
<p>A number of agile methodologies use testing early in the development cycle to ensure quality in their products. For example, the test-driven development practice, where tests are written before the code they will test, is used in Extreme Programming to ensure quality.</p>
<h4>Runtime</h4>
<p class="MsoNormal">Runtime reliability determinations are similar to tests, but go beyond simple confirmation of behaviour to the evaluation of qualities such as performance and interoperability with other code or particular hardware configurations&#8230;..</p>
<p class="MsoNormal">
<p class="MsoNormal">For more details and consultancy about software development ,please visit our site <a href="http://www.sehelsoft.com/">www.sehelsoft.com</a></p>
<p class="MsoNormal">
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=29&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/10/25/reliable-software-programming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Application Software Development</title>
		<link>http://sehelsoft.wordpress.com/2008/10/10/application-software-development/</link>
		<comments>http://sehelsoft.wordpress.com/2008/10/10/application-software-development/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 06:25:48 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=27</guid>
		<description><![CDATA[Application software is a subclass of computer software that employs the capabilities of a computer directly and thoroughly to a task that the user wishes to perform. This should be contrasted with system software which is involved in integrating a computer&#8217;s various capabilities, but typically does not directly apply them in the performance of tasks [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=27&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Application software</span><span style="font-size:10pt;font-family:Arial;"> is a subclass of computer software that employs the capabilities of a computer directly and thoroughly to a task that the user wishes to perform. This should be contrasted with system software which is involved in integrating a computer&#8217;s various capabilities, but typically does not directly apply them in the performance of tasks that benefit the user. In this context the term application refers to both the <em><span style="font-family:Arial;font-style:normal;">application software</span></em> and its implementation.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">There are many subtypes of application software: </span></p>
<ul type="disc">
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Enterprise</span></em><em><span style="font-size:10pt;font-family:Arial;font-style:normal;"> software</span></em><span style="font-size:10pt;font-family:Arial;"> addresses the needs of organization processes and data flow, often      in a large distributed ecosystem. (Examples include Financial, Customer      Relationship Management, and Supply Chain Management). Note that      Departmental Software is a sub-type of Enterprise Software with a focus on      smaller organizations or groups within a large organization. (Examples      include Travel Expense Management, and IT Helpdesk) </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Enterprise</span></em><em><span style="font-size:10pt;font-family:Arial;font-style:normal;"> infrastructure software</span></em><span style="font-size:10pt;font-family:Arial;"> provides common capabilities needed to create      Enterprise Software systems. (Examples include Databases, Email servers,      and Network and Security Management) </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Information      worker software</span></em><span style="font-size:10pt;font-family:Arial;"> addresses the needs of individuals to <span>create</span> and manage information, often for individual projects      within a department, in contrast to enterprise management. Examples      include time management, resource management, documentation tools,      analytical, and collaborative. Word processors, spreadsheets, email and      blog clients, personal information system, and individual media editors      may aid in multiple information worker tasks. </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Content      access software</span></em><span style="font-size:10pt;font-family:Arial;"> is software used primarily to access content without editing, but may      include software that allows for content editing. Such software addresses      the needs of individuals and groups to <span>consume</span> digital entertainment and <span>published</span> digital content. (Examples include Media Players,      Web Browsers, Help browsers, and Games) </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Educational      software</span></em><span style="font-size:10pt;font-family:Arial;"> is      related to Media and Entertainment Software, but has distinct requirements      for delivering evaluations (tests) and tracking progress through material.      It is also related to collaboration software in that many Educational      Software systems include collaborative capabilities. </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Simulation      software</span></em><span style="font-size:10pt;font-family:Arial;"> are      computer software for simulation of physical or abstract systems for      either research, training or entertainment purposes. </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Media      development software</span></em><span style="font-size:10pt;font-family:Arial;"> addresses the needs of individuals who generate print and      electronic media for others to consume, most often in a commercial or      educational setting. This includes Graphic Art software, Desktop      Publishing software, Multimedia Development software, HTML editors,      Digital Animation editors, Digital Audio and Video composition, and many      others. </span></li>
<li class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Product      engineering software</span></em><span style="font-size:10pt;font-family:Arial;"> is used in developing hardware and software products. This      includes computer aided design (CAD), computer aided engineering (CAE),      computer language editing and compiling tools, Integrated Development      Environments, and Application Programmer Interfaces. </span></li>
</ul>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Sehelsoft professional team offers Cost effective Software Programming with Visual basic programming through Access and SQL database, ASP.Net Programming, C# Programming, PHP Programming and desktop Software Solutions.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"><a href="http://www.sehelsoft.com/">www.SehelSoft.com</a></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Encyclopedia<strong></strong></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;"> </span></strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=27&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/10/10/application-software-development/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Types of Software</title>
		<link>http://sehelsoft.wordpress.com/2008/09/27/types-of-software/</link>
		<comments>http://sehelsoft.wordpress.com/2008/09/27/types-of-software/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 06:19:16 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=24</guid>
		<description><![CDATA[Computer software is a general term used to describe a collection of computer programs, procedures and documentation that perform some task on a computer system. The term includes application software such as word processors which perform productive tasks for users, system software such as operating systems, which interface with hardware to provide the necessary services [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=24&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Computer software</span></strong><span style="font-size:10pt;font-family:Arial;"> is a general term used to describe a collection of computer programs, procedures and documentation that perform some task on a computer system. <a name="ref_rf-1"></a>The term includes application software such as word processors which perform productive tasks for users, system software such as operating systems, which interface with hardware to provide the necessary services for application software, and middleware which controls and co-ordinates distributed systems.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Practical computer systems divide software systems into three major classes: system software, programming software and application software, although the distinction is arbitrary, and often blurred. </span></p>
<ul type="disc">
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">System software</span></strong><span style="font-size:10pt;font-family:Arial;"> helps run the computer      hardware and computer system. It includes operating systems, device      drivers, diagnostic tools, servers, windowing systems, utilities and more.      The purpose of systems software is to insulate the applications programmer      as much as possible from the details of the particular computer complex      being used, especially memory and other hardware features, and such      accessory devices as communications, printers, readers, displays,      keyboards, etc. </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Programming software</span></strong><span style="font-size:10pt;font-family:Arial;"> usually provides tools to      assist a programmer in writing computer programs and software using      different programming languages in a more convenient way. The tools      include text editors, compilers, interpreters, linkers, debuggers, and so      on. An Integrated development environment (IDE) merges those tools into a      software bundle, and a programmer may not need to type multiple commands      for compiling, interpreter, debugging, tracing, and etc., because the IDE      usually has an advanced <em><span style="font-family:Arial;font-style:normal;">graphical user interface</span></em><em><span style="font-family:Arial;">,</span></em> or GUI. </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Application software</span></strong><span style="font-size:10pt;font-family:Arial;"> allows end users to accomplish      one or more specific (non-computer related) tasks. Typical applications      include industrial automation, business software, educational software,      medical software, databases, and computer games. Businesses are probably      the biggest users of application software, but almost every field of human      activity now uses some form of application software. It is used to      automate all sorts of functions. </span></li>
</ul>
<p class="MsoNormal"><span class="heading"><span style="font-size:10pt;font-family:Arial;">Offshore Software Development Company</span></span><span style="font-size:10pt;font-family:Arial;"> is dedicated to providing reasonably priced high quality software development, Software programming Services with most experienced and talented software development team of our country.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=24&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/09/27/types-of-software/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>How to do New Software Testing</title>
		<link>http://sehelsoft.wordpress.com/2008/09/12/how-to-do-new-software-testing/</link>
		<comments>http://sehelsoft.wordpress.com/2008/09/12/how-to-do-new-software-testing/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 02:03:15 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=22</guid>
		<description><![CDATA[Software testing is the process used to measure the quality of developed computer software. Usually, quality is constrained to such topics as correctness, completeness, security, but can also include more technical requirements as described under the ISO standard, such as capability, reliability, efficiency, portability, maintainability, compatibility, and usability. Testing is a process of technical investigation, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=22&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">Software testing</span></em><span style="font-size:10pt;font-family:Arial;"> is the process used to measure the quality of developed computer software. Usually, quality is constrained to such topics as correctness, completeness, security, but can also include more technical requirements as described under the ISO standard, such as capability, reliability, efficiency, portability, maintainability, compatibility, and usability. Testing is a process of technical investigation, performed on behalf of stakeholders, that is intended to reveal quality-related information about the product with respect to the context in which it is intended to operate.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Today, software has grown in complexity and size. The software product developed by a developer is according to the System Requirement Specification. Every software product has a target audience.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">There are many approaches to software testing, but effective testing of complex products is essentially a process of investigation, not merely a matter of creating and following routine procedure.</span></p>
<h2><span style="font-size:10pt;font-family:Arial;">Software Testing Axioms</span></h2>
<ol type="1">
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">It is impossible to test a program completely. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Software testing is risk based exercise. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Testing can&#8217;t show that bugs dont exist. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">The more bugs you find, the more bugs there are. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Not all the bugs you find will be fixed. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Product specifications are never final. </span></li>
</ol>
<h2><span style="font-size:10pt;font-family:Arial;">Levels of testing</span></h2>
<ul type="disc">
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Unit testing tests the minimal software component, or      module. Each unit (basic component) of the software is tested to verify      that the detailed design for the unit has been correctly implemented. In      an Object-oriented environment, this is usually at the class level, and      the minimal unit tests include the constructors and destructors. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Integration testing exposes defects in the interfaces      and interaction between integrated components (modules). Progressively larger      groups of tested software components corresponding to elements of the      architectural design are integrated and tested until the software works as      a system. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Functional testing tests at any level (class, module,      interface, or system) for proper functionality as defined in the      specification. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">System testing tests a completely integrated system to      verify that it meets its requirements. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">System integration testing verifies that a system is      integrated to any external or third party systems defined in the system      requirements. </span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Acceptance testing can be conducted by the end-user,      customer, or client to validate whether or not to accept the product.      Acceptance testing may be performed as part of the hand-off process      between any two phases of development. <em><span style="font-family:Arial;">See      also Development stage</span></em> </span></li>
</ul>
<p class="MsoNormal" style="margin-left:28pt;"><strong><span style="font-size:10pt;font-family:Arial;">Alpha testing</span></strong><span style="font-size:10pt;font-family:Arial;"> is simulated or actual operational testing by potential users/customers or an independent test team at the developers&#8217; site. Alpha testing is often employed for off-the-shelf software as a form of internal acceptance testing, before the software goes to beta testing. </span></p>
<p class="MsoNormal" style="margin-left:28pt;"><strong><span style="font-size:10pt;font-family:Arial;">Beta testing</span></strong><span style="font-size:10pt;font-family:Arial;"> comes after alpha testing. Versions of the software, known as beta versions, are released to a limited audience outside of the company. The software is released to groups of people so that further testing can ensure the product has few faults or bugs. Sometimes, beta versions are made available to the open public to increase the feedback field to a maximal number of future users. </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Not all errors or defects reported must be fixed by a software development team. Some may be caused by errors in configuring the test software to match the development or production environment. Some defects can be handled by a workaround in the production environment. Others might be deferred to future releases of the software, or the deficiency might be accepted by the business users.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"><a href="http://www.sehelsoft.com/">SehelSoft’s</a> experienced team can develop high quality Software Applications based on Visual Basic, ASP.Net and PHP with MS SQL Server, MySQL, MS Access databases.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"><a href="http://www.sehelsoft.com/">www.SehelSoft.com</a></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Encyclopedia</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=22&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/09/12/how-to-do-new-software-testing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Programming</title>
		<link>http://sehelsoft.wordpress.com/2008/08/21/software-programming/</link>
		<comments>http://sehelsoft.wordpress.com/2008/08/21/software-programming/#comments</comments>
		<pubDate>Thu, 21 Aug 2008 08:18:17 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=20</guid>
		<description><![CDATA[Whatever be the approach to the software development, the program must finally satisfy some fundamental properties; bearing them in mind while programming reduces the costs in terms of time and/or money due to debugging, further development and user support. Although quality programming can be achieved in a number of ways, following five properties are among [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=20&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Whatever be the approach to the software development, the program must finally satisfy some fundamental properties; bearing them in mind while programming reduces the costs in terms of time and/or money due to debugging, further development and user support. Although quality programming can be achieved in a number of ways, following five properties are among the most relevant: </span></p>
<ul type="disc">
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Efficiency</span></strong><span style="font-size:10pt;font-family:Arial;">: it is referred to the system resource      consumption (computer processor, memory, slow devices, networks and to      some extent even user interaction) which must be the lowest possible. </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Reliability</span></strong><span style="font-size:10pt;font-family:Arial;">: the results of the program must be correct,      which not only implies a correct code implementation but also reduction of      error propagation (e.g. resulting from data conversion) and prevention of      typical errors (overflow, underflow or zero division). </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Robustness</span></strong><span style="font-size:10pt;font-family:Arial;">: a program must anticipate situations of data      type conflict and all other incompatibilities which result in run time      errors and stop of the program. The focus of this aspect is the      interaction with the user and the handling of error messages. </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Portability</span></strong><span style="font-size:10pt;font-family:Arial;">: it should work as it is in any software and      hardware environment, or at least without relevant reprogramming. </span></li>
<li class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Readability</span></strong><span style="font-size:10pt;font-family:Arial;">: the purpose of the main program and of each      subroutine must be clearly defined with appropriate comments and self      explanatory chose of symbolic names (constants, variables, function names,      classes, and methods). </span></li>
</ul>
<p class="MsoNormal"><em><span style="font-size:10pt;font-family:Arial;font-style:normal;">If your company doesn&#8217;t specialize in software production </span></em><span style="font-size:10pt;font-family:Arial;">but needs software designed or needs the functionality of existing software (e. g. cross-platform development work) extended, Sehel Soft can help you to focus on your core business. Our offshore development capabilities meet the needs of clients across many different industries.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">We also leverage the IT resources of <em><span style="font-family:Arial;font-style:normal;">software companies </span></em>that need to lower costs of software production. SehelSoft can manage your product from conception to production, from in-depth technical assessments to full software development and implementation. We can even continue designing your own project from any stage, and test, tune and maintain it.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"><a href="http://www.sehelsoft.com/">www.SehelSoft.com</a></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<p class="MsoNormal">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=20&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/08/21/software-programming/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Development Process</title>
		<link>http://sehelsoft.wordpress.com/2008/08/07/software-development-process/</link>
		<comments>http://sehelsoft.wordpress.com/2008/08/07/software-development-process/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 10:44:30 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=17</guid>
		<description><![CDATA[A software development process is a structure imposed on the development of a software product. Synonyms include software life cycle and software process. There are several models for such processes, each describing approaches to a variety of tasks or activities that take place during the process. . Let us see the steps involve in any [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=17&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">A <strong>software development process</strong> is a structure imposed on the development of a software product. Synonyms include <span>software life cycle</span> and <span>software process</span>. There are several models for such processes, each describing approaches to a variety of tasks or activities that take place during the process. <span class="textfont1">. Let us see the steps involve in any software development.</span><br />
<!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--></span><strong><span style="font-size:10pt;font-family:Arial;">Domain Analysis</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Often the first step in attempting to design a new piece of software, whether it be an addition to an existing software, a new application, a new subsystem or a whole new system, is what is generally referred to as &#8220;Domain Analysis&#8221;. Assuming that the developers (including the analysts) are not sufficiently knowledgeable in the subject area of the new software, the first task is to investigate the so-called &#8220;domain&#8221; of the software. The more knowledgeable they are about the domain already, the less the work required. Another objective of this work is to make the analysts who will later try to elicit and gather the requirements from the area experts or professionals, speak with them in the domain&#8217;s own terminology and to better understand what is being said by these people. Otherwise they will not be taken seriously. So, this phase is an important prelude to extracting and gathering the requirements. </span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Software Elements Analysis</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">The most important task in creating a software product is extracting the requirements. Clients typically know what they want, but not what software should do, while incomplete, ambiguous or contradictory requirements are recognized by skilled and experienced software engineers. Frequently demonstrating live code may help reduce the risk that the requirements are incorrect.</span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Specification</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Specification is the task of precisely describing the software to be written, possibly in a rigorous way. In practice, most successful specifications are written to understand and fine-tune applications that were already well-developed, although safety-critical software systems are often carefully specified prior to application development. <em><span style="font-family:Arial;font-style:normal;">Specifications are most important for external interfaces that must remain stable.</span></em><em></em></span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;"> Implementation (or coding)</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Reducing a design to code may be the most obvious part of the software engineering job, but it is not necessarily the largest portion.</span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Testing</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Testing of parts of software, especially where code by two different engineers must work together falls to the software engineer.</span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Documentation</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">An important (and often overlooked) task is documenting the internal design of software for the purpose of future maintenance and enhancement. <em><span style="font-family:Arial;font-style:normal;">Documentation is most important for external interfaces.</span></em></span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Software Training and Support</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">A large percentage of software projects fail because the developers fail to realize that it doesn&#8217;t matter how much time and planning a development team puts into creating software if nobody in an organization ends up using it. People are occasionally resistant to change and avoid venturing into an unfamiliar area so, as a part of the deployment phase, it is very important to have training classes for the most enthusiastic software users (build excitement and confidence), shifting the training towards the neutral users intermixed with the avid supporters, and finally incorporate the rest of the organization into adopting the new software. Users will have lots of questions and software problems which lead to the next phase of software.</span></p>
<p class="MsoNormal"><strong><span style="font-size:10pt;font-family:Arial;">Maintenance</span></strong></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">Maintaining and enhancing software to cope with newly discovered problems or new requirements can take far more time than the initial development of the software. Not only may it be necessary to add code that does not fit the original design but just determining how software works at some point after it is completed may require significant effort by a software engineer. About ⅔ of all software engineering work is maintenance, but this statistic can be misleading. A small part of that is fixing bugs. Most maintenance is extending systems to do new things, which in many ways can be considered new work.</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;">SehelSoft <span style="color:#1f497d;">team specialized in Visual basic solutions with both Access and SQL database.<br />
Expertises are available for .Net and PHP solutions as well.</span></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;color:#1f497d;"><a href="http://www.sehelsoft.com/">www.SehelSoft.com</a></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;color:#1f497d;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;color:#1f497d;"></span><span style="font-size:10pt;font-family:Arial;"></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=17&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/08/07/software-development-process/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Salient Features of Software Development</title>
		<link>http://sehelsoft.wordpress.com/2008/07/28/salient-features-of-software-development/</link>
		<comments>http://sehelsoft.wordpress.com/2008/07/28/salient-features-of-software-development/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 03:31:05 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=11</guid>
		<description><![CDATA[Software development is a process of problem resolving that should be rally to your requirments.In today&#8217;s modern, dynamical business world more and more companies realize the benefit of software developing, However before going to develop or purchase any kind of software, you should know bit about general software features: Each feature can reflect to achieve [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=11&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:10pt;font-family:Arial;">Software development is a process of problem resolving that should be rally to your requirments.In</span><span style="font-size:9pt;font-family:Arial;color:black;"> today&#8217;s modern, dynamical business world more and more companies realize the benefit of software developing, However </span><span style="font-size:10pt;font-family:Arial;">before going to develop or purchase any kind of software, you should know bit about general software features: Each feature can reflect to achieve software goal. Some of these features are:</span></p>
<ul>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Arial;">First Software, which can be operated through excel sheet (specified) as well as VB (Visual Basics).</span></li>
<li><span style="font-size:10pt;font-family:Symbol;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:&quot;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The data in the excel sheet can be converted into VB. </span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The Software is completely error-free, easy and comfortable to use and in accordance with the compatibility of NSDL</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The software has an inbuilt characteristics of maintaining Database, thereby reducing the effort of maintaining excel sheet.</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The software can be used for unlimited clients.</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The software has a facility to check and mark the data, before the file is created. Wherever it is wrong or irregular, the user has an opportunity to correct it at the same time and on the same screen and precede further, rather going back to the original file for corrections.</span></li>
<li><!--[if !supportLists]--><span style="font-size:10pt;font-family:Arial;">The software has an unique screen to have an option of creating the Text file, Validation Utility &amp; viewing all the related files such as; the error file, the FORM 27A,  Form 16A, FVU File etc.</span></li>
<li><span style="font-size:10pt;font-family:Arial;">No Technical Assistance required for the Operations.</span></li>
<li><span style="font-size:10pt;font-family:Arial;">Conversion of complete master data in next year.</span></li>
<li><!--[if !supportLists]--><!--[endif]--><span style="font-size:10pt;font-family:Arial;">The Software is capable to retrieve the data of previous quarters from its database, where the user may Edit, Add or Delete the data as per their own requirements to make a new file.</span></li>
</ul>
<p class="Normal1" style="border:medium none;background:white none repeat scroll 0;text-align:justify;line-height:14.4pt;"><!--[if !supportLists]--><span style="font-size:10pt;font-family:Symbol;"><span><span style="font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;font-family:&quot;"> </span></span></span><!--[endif]--><span style="font-size:10pt;font-family:Arial;"><a href="http://www.sehelsoft.com/">www.SehelSoft.com</a></span></p>
<p class="Normal1" style="border:medium none;background:white none repeat scroll 0;text-align:justify;line-height:14.4pt;"><span style="font-size:10pt;font-family:Arial;">Reference: Answers.com</span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Arial;"> </span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/11/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/11/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=11&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/07/28/salient-features-of-software-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>What you think about Software Industry</title>
		<link>http://sehelsoft.wordpress.com/2008/07/18/what-you-think-about-software-industry/</link>
		<comments>http://sehelsoft.wordpress.com/2008/07/18/what-you-think-about-software-industry/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 05:37:43 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=8</guid>
		<description><![CDATA[There are mainly two types of businesses in the software industry; those developing proprietary software such as Microsoft, and those developing open source software. Developing proprietary software is costly and involves software licensing and the need to protect the software from cracking and piracy. The main financial return on open source comes from selling services, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=8&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:10pt;font-family:Arial;">There are mainly two types of businesses in the software industry; those developing proprietary software such as Microsoft, and those developing open source software. Developing proprietary software is costly and involves software licensing and the need to protect the software from cracking and piracy.</span></p>
<p><span style="font-size:10pt;font-family:Arial;">The main financial return on open source comes from selling services, such as training and support, rather than the software itself. Many contributors to open source software (especially those developing software tools) also feel that there is a significant long-term return in the form of improved resources and capabilities within the software industry. Now there are mainly fours types of software working like:</span></p>
<h3><span style="font-size:10pt;font-family:Arial;">Freeware</span></h3>
<p><span style="font-size:10pt;font-family:Arial;"><a href="http://www.answers.com/topic/freeware" target="_top"><span style="color:windowtext;text-decoration:none;">Freeware</span></a> is <a href="http://www.answers.com/topic/copyright" target="_top"><span style="color:windowtext;text-decoration:none;">copyrighted</span></a> computer <a href="http://www.answers.com/topic/computer-software" target="_top"><span style="color:windowtext;text-decoration:none;">software</span></a> which is made available for use free of charge, for an unlimited time, as opposed to <a href="http://www.answers.com/topic/shareware" target="_top"><span style="color:windowtext;text-decoration:none;">shareware</span></a> where the user is required to pay (e.g. after some trial period or for additional functionality). Authors of freeware often want to &#8220;give something to the community&#8221;, but also want credit for their software and to retain control of its future development. Sometimes when programmers decide to stop developing a freeware product, they will give the source code to another programmer or release the product&#8217;s source code to the public as <a href="http://www.answers.com/topic/free-software" target="_top"><span style="color:windowtext;text-decoration:none;">free software</span></a>.</span></p>
<h3><a name="Shareware"></a><span style="font-size:10pt;font-family:Arial;">Shareware</span></h3>
<p><span style="font-size:10pt;font-family:Arial;"><a href="http://www.answers.com/topic/shareware" target="_top"><span style="color:windowtext;text-decoration:none;">Shareware</span></a> is a <a href="http://www.answers.com/topic/marketing" target="_top"><span style="color:windowtext;text-decoration:none;">marketing</span></a> method for <a href="http://www.answers.com/topic/computer-software" target="_top"><span style="color:windowtext;text-decoration:none;">computer software</span></a>. Shareware software is typically obtained free of charge, either by downloading from the Internet or on magazine cover-disks. A user tries out the program, and thus shareware has also been known as &#8220;try before you buy&#8221;. A shareware program is accompanied by a request for payment, and the software&#8217;s distribution license often requires such a payment.</span></p>
<h3><a name="Open_source"></a><span style="font-size:10pt;font-family:Arial;">Open source</span></h3>
<p><span style="font-size:10pt;font-family:Arial;"><a href="http://www.answers.com/topic/open-source" target="_top"><span style="color:windowtext;text-decoration:none;">Open source</span></a> describes the principles and methodologies to promote open access to the <span>production</span> and <span>design</span> process for various goods, products, resources and technical <a href="http://www.answers.com/topic/conclusion" target="_top"><span style="color:windowtext;text-decoration:none;">conclusions</span></a> or advice. The term is most commonly applied to the <a href="http://www.answers.com/topic/source-code" target="_top"><span style="color:windowtext;text-decoration:none;">source code</span></a> of software that is made available to the general public with either relaxed or non-existent <a href="http://www.answers.com/topic/intellectual-property" target="_top"><span style="color:windowtext;text-decoration:none;">intellectual property</span></a> restrictions. This allows users to create <a href="http://www.answers.com/topic/user-generated-content-1" target="_top"><span style="color:windowtext;text-decoration:none;">user-generated software content</span></a> through either incremental individual effort, or <a href="http://www.answers.com/topic/collaboration-1" target="_top"><span style="color:windowtext;text-decoration:none;">collaboration</span></a>.</span></p>
<h3><a name="Commercial"></a><span style="font-size:10pt;font-family:Arial;">Commercial</span></h3>
<p><span style="font-size:10pt;font-family:Arial;">Commercial software is <a href="http://www.answers.com/topic/computer-software" target="_top"><span style="color:windowtext;text-decoration:none;">computer software</span></a> sold for <a href="http://www.answers.com/topic/commerce-1" target="_top"><span style="color:windowtext;text-decoration:none;">commercial</span></a> purposes or that serves commercial purposes. Commercial software is most often <a href="http://www.answers.com/topic/proprietary-software" target="_top"><span style="color:windowtext;text-decoration:none;">proprietary software</span></a>, but <a href="http://www.answers.com/topic/free-software" target="_top"><span style="color:windowtext;text-decoration:none;">free software</span></a> is also used as commercial software. All or parts of software packages and services that support commerce are increasingly made available as free software, including products from <a href="http://www.answers.com/topic/red-hat" target="_top"><span style="color:windowtext;text-decoration:none;">Red Hat</span></a>, <a href="http://www.answers.com/topic/apple-computer-inc" target="_top"><span style="color:windowtext;text-decoration:none;">Apple Computer</span></a>, <a href="http://www.answers.com/topic/sun-microsystems" target="_top"><span style="color:windowtext;text-decoration:none;">Sun Microsystems</span></a>, and <a href="http://www.answers.com/topic/google" target="_top"><span style="color:windowtext;text-decoration:none;">Google</span></a>.</span></p>
<p><a href="http://www.sehelsoft.com">Software Development</a></p>
<p><sup></sup><span style="font-size:14pt;font-family:Arial;"></span></p>
<p>Reference: Wikipedia.org</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=8&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/07/18/what-you-think-about-software-industry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
		<item>
		<title>Software Design &amp; Development</title>
		<link>http://sehelsoft.wordpress.com/2008/07/15/software-design-development/</link>
		<comments>http://sehelsoft.wordpress.com/2008/07/15/software-design-development/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 04:45:54 +0000</pubDate>
		<dc:creator>sehelsoft</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[software programming]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://sehelsoft.wordpress.com/?p=3</guid>
		<description><![CDATA[Software design is a process of problem-solving and planning for a software solution. There are many aspects to consider in the design of a piece of software. The importance of each should reflect the goals the software is trying to achieve. Some of these aspects are: Extensibility &#8211; New capabilities can be added to the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=3&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="font-size:10pt;font-family:Verdana;">Software design</span></strong><span style="font-size:10pt;font-family:Verdana;"> is a process of problem-solving and planning for a software solution. There are many aspects to consider in the design of a piece of software. The importance of each should reflect the goals the software is trying to achieve. Some of these aspects are:</span></p>
<ul type="disc">
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Extensibility &#8211; New capabilities can be added to the      software without major changes to the underlying architecture.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Robustness &#8211; The software is able to operate under      stress or tolerate unpredictable or invalid input. For example, it can be      designed with resilience to low memory conditions.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Reliability &#8211; The software is able to perform a      required function under stated conditions for a specified period of time.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Fault-tolerance &#8211; The software is resistant to and      able to recover from component failure.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Security &#8211; The software is able to withstand hostile      acts and influences.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Maintainability &#8211; The software can be restored to a      specified condition within a specified period of time. For example, virus      software may include the ability to periodically receive virus definition      updates in order to maintain the software&#8217;s effectiveness.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Compatibility &#8211; The software is able to operate with      other products that are designed for interoperability with another      product. For example, a piece of software may be backward-compatible with      an older version of itself.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Modularity &#8211; the resulting software comprises of well      defined, independent components. That leads to better maintainability. The      components could be then implemented and tested in isolation before being      integrated to form a desired software system. This allows division of work      in a software development project.</span></li>
<li class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Reuse &#8211; the modular components designed should      capture the essence of the functionality expected out of them and no more      or less. This single-minded purpose render the components reusable      wherever there are similar needs in other designs.</span></li>
</ul>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;"> </span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Sehelsoft can help you to find your software solutions at <a href="http://www.sehelsoft.com/">www.Sehelsoft.com</a></span></p>
<p class="MsoNormal"><span style="font-size:10pt;font-family:Verdana;">Reference: Answers.com</span></p>
<p class="MsoNormal">
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/sehelsoft.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/sehelsoft.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sehelsoft.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sehelsoft.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sehelsoft.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sehelsoft.wordpress.com&amp;blog=4228363&amp;post=3&amp;subd=sehelsoft&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sehelsoft.wordpress.com/2008/07/15/software-design-development/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/377d95a05dc7f03e74e0bacd711089fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sehelsoft</media:title>
		</media:content>
	</item>
	</channel>
</rss>
