Thursday, December 24, 2009

systems development models

Identify and discuss at least 3 systems development models .. discuss each phases ... (at least 3000 words)


System Development Models or System Process Models


What is a software process model?
A software process model is an abstract representation of a software process. Each process model represents a process from a particular perspective so only to provide partial information about the process. Models, by their very nature, are simplifications, so a software process model is an abstraction of the actual process which is being described. Process models may include activities which are part of the software process, software products and the roles of the people involved in software engineering.

Software development activities

Planning

The important task in creating a software product is extracting the requirements or requirements analysis. Customers typically have an abstract idea of what they want as an end result, but not what software should do. Incomplete, ambiguous, or even contradictory requirements are recognized by skilled and experienced software engineers at this point. Frequently demonstrating live code may help reduce the risk that the requirements are incorrect.
Once the general requirements are gleaned from the client, an analysis of the scope of the development should be determined and clearly stated. This is often called a scope document.
Certain functionality may be out of scope of the project as a function of cost or as a result of unclear requirements at the start of development. If the development is done externally, this document can be considered a legal document so that if there are ever disputes, any ambiguity of what was promised to the client can be clarified.

Implementation, testing and documenting

Implementation is the part of the process where software engineers actually program the code for the project.
Software testing is an integral and important part of the software development process. This part of the process ensures that bugs are recognized as early as possible.
Documenting the internal design of software for the purpose of future maintenance and enhancement is done throughout development. This may also include the authoring of an API, be it external or internal.

Deployment and maintenance

Deployment starts after the code is appropriately tested, is approved for release and sold or otherwise distributed into a production environment.

Software Training and Support is important because a large percentage of software projects fail because the developers fail to realize that it doesn'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 often 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 new clients of your software.

Maintenance and enhancing software to cope with newly discovered problems or new requirements can take far more time than the initial development of the software. It may be necessary to add code that does not fit the original design to correct an unforeseen problem or it may be that a customer is requesting more functionality and code can be added to accommodate their requests. It is during this phase that customer calls come in and you see whether your testing was extensive enough to uncover the problems before customers do. If the labor cost of the maintenance phase exceeds 25% of the prior-phases' labor cost, then it is likely that the overall quality, of at least one prior phase, is poor. In that case, management should consider the option of rebuilding the system (or portions) before maintenance cost is out of control.

Bug Tracking System tools are often deployed at this stage of the process to allow development teams to interface with customer/field teams testing the software to identify any real or perceived issues. These software tools, both open source and commercially licensed, provide a customizable process to acquire, review, acknowledge, and respond to reported issues.

Traditional Process Model Software


Waterfall Model

The Waterfall model is one of the most used model of 70’s. It was proposed by Royce in 1970 as an alternative to Build and Fix software development method in which code was written and debugged. System was not formally designed and there was no way to check the quality criteria.

This takes the fundamental process activities of specification, development, validation and evolution and represents them as separate process such as requirements specification, software design, implementation, testing and so on.
This model, known as the waterfall, is an approach to development that emphasizes completing a phase of the development before proceeding to the next phase. In conjunction with certain phase completions, a baseline is established that "freezes" the products of the development at that point. If a need is identified to change these products, a formal change process is followed to make the change. The graphic representation of these phases in software development resembles the downward flow of a waterfall.

The principal stages of the model map onto fundamental developmental activities:

Requirements analysis and definition

The system’s services, constraints and goals are established by consultation with system users. They are then defined in detail and serve as system specification.

Requirements analysis phase focuses on understanding the problem domain and representing the requirements in a form which are understandable by all the stakeholders of the project i.e. analyst, user, programmer, tester etc. The output of this stage is a document called Requirements Specification Document (RSD) or Software Requirements Specification (SRS). All the successive stages of software life cycle are dependent on this stage as SRS produced here is used in all the other stages of the software lifecycle.

System and Software Design

The system design process partitions the requirements to either hardware or software systems. It establishes overall system architecture. Software design involves identifying and describing the fundamental software system abstractions and their relationship.
System design phase translates the SRS into the design document which depicts the overall modular structure of the program and the interaction between these modules. This phase focuses on the high level design and low level design of the software. High level design describes the main components of software and their externals and internals. Low level design focuses on transforming the high level design into a more detailed level in terms of a algorithms used, data structures used etc.

Implementation and Unit Testing

During this stage, the software design is realized as a set of programs or program units. Unit testing involves verifying that each unit meets its specification.

Implementation phase transforms the low level design part of software design description into a working software product by writing the code.

Testing phase is responsible for testing the code written during implementation phase. This phase can be broadly divided into unit testing (tests individual modules), integration testing (tests groups of interrelated modules) and system testing (testing of system as a whole). Unit testing verifies the code against the component’s high level and low level design. It also ensures that all the statements in the code are executed at least once and branches are executed in all directions.

Additionally it also checks the correctness of the logic. Integration testing tests the inter modular interfaces and ensures that the module drivers are functionally complete and are of acceptable quality. System testing validates the product and verifies that the final product is ready to be delivered to the customers. Additionally several tests like volume tests, stress tests, performance tests etc., are also done at the system testing level.

Integration and System Testing

The individual program units or programs are integrated and tested as a complete system to ensure that the software requirements have been meet. After testing, the system software is delivered to the customer.
Operational and Maintenance
Normally (although not necessarily) this is the longest life-cycle phase. The system is installed and put into practical use. Maintenance involves correcting errors which were not discovered in earlier stages of the life cycle, improving the implementation of the system units and enhancing the system’s services as new requirements are discovered.

After each step is finished, the process proceeds to the next step, just as builders don't revise the foundation of a house after the framing has been erected.

There is a misconception that the process has no provision for correcting errors in early steps (for example, in the requirements). In fact, this is where the domain of requirements management comes in, which includes change control. The counter argument, by critics to the process, is the significantly increased cost in correcting problems through introduction of iterations. This is also the factor that extends delivery time and makes this process increasingly unpopular even in high risk projects.
This approach is used in high risk projects, particularly large defense contracts. The problems in waterfall do not arise from "immature engineering practices, particularly in requirements analysis and requirements management."
Often the supposed stages are part of review between customer and supplier; the supplier can, in fact, develop at risk and evolve the design but must sell off the design at a key milestone called Critical Design Review (CDR). This shifts engineering burdens from engineers to customers who may have other skills.

Waterfall model problems

Inflexible partitioning of the project into distinct stages makes it difficult to respond to changing customer requirements.

Few business systems have stable requirements.

Appropriate only when the requirements are well-understood and changes will be fairly limited during the design process.


Applicability:
For large systems engineering projects where a system is developed at several sites.
Advantages and disadvantages of the Waterfall model are listed below:
Advantages
Easy to understand even by non-technical persons i.e., customers

Each phase has well defined inputs and outputs e.g., input to system design stage is Requirement Specification Document (RSD) and output is the design document.

Easy to use as software development proceeds

Each stage has well defined deliverables or milestones.

Helps the project manager in proper planning of the project

Disadvantages


The biggest drawback of Waterfall model is that it does not support iteration. Software development on the other hand is iterative i.e., while designing activities are being carried out, new requirements can come up. Similarly while product is being coded, new design and requirement problems can come up.

Another disadvantage of Waterfall model is that it is sequential in nature. One cannot start with a stage till preceding stage is completed e.g., one cannot start with the system design till all the requirements are understood and represented.

Users have little interaction with the project team. Their feedback is not taken during development.

Customer gets opportunity to review the product very late in life cycle because the working version of product is available very late in software development life cycle.

Model is very rigid because output of each phase is prerequisite for successive stage.

The Waterfall model also has difficulty in accommodating changes in the product after the development process starts.

Amount of documentation produced is very high.

The model in no way supports delivery of system in pieces.

The model is not suitable for new projects because of uncertainty in the specifications.

Incremental Model

The incremental model divides the product into builds, where sections of the project are created and tested separately. This approach will likely find errors in user requirements quickly, since user feedback is solicited for each stage and because code is tested sooner after it's written.
The incremental model performs the waterfall in overlapping sections attempting to compensate for the length of waterfall model projects by producing usable functionality earlier. This may involve a complete upfront set of requirements that are implemented in a series of small projects. As an alternative, a project using the incremental model may start with general objectives. Then some portion of these objectives is defined as requirements and is implemented, followed by the next portion of the objectives until all objectives are implemented. But, use of general objectives rather than complete requirements can be uncomfortable for management. Because some modules will be completed long before others, well-defined interfaces are required. Also, formal reviews and audits are more difficult to implement on increments than on a complete system. Finally, there can be a tendency to push difficult problems to the future to demonstrate early success to management.

Incremental development advantages
1.Customer value can be delivered with each increment so system functionality is available earlier.
2.Early increments act as a prototype to help elicit requirements for later increments.
3.Lower risk of overall project failure.
4.The highest priority system services tend to receive the most testing.

Advantages


As product is to be delivered in parts, total cost of project is distributed.

Limited number of persons can be put on project because work is to be delivered in parts.

As development activities for next release and use of early version of product is done simultaneously, if found errors can be corrected.

Customers or end users get the chance to see the useful functionality early in the software development life cycle.

As a result of end user’s feedback requirements for successive releases become clearer.

As functionality is incremented in steps, testing also becomes easy.

Risk of failure of a product is decreased as users start using the product early.

Disadvantages

As product is delivered in parts, total development cost is higher.

Well defined interfaces are required to connect modules developed with each phase.

The model requires well defined project planning schedule to distribute the work properly.

Testing of modules also results into overhead and increased cost.


Spiral Model


The spiral model emphasizes the need to go back and reiterate earlier stages a number of times as the project progresses. It's actually a series of short waterfall cycles, each producing an early prototype representing a part of the entire project. This approach helps demonstrate a proof of concept early in the cycle, and it more accurately reflects the disorderly, even chaotic evolution of technology.
The incremental model can be viewed as a spiral model. The spiral view illustrates one strength of the incremental model: resources can be held constant but the system size grows. The spiral size corresponds to system size, while the distance between the coils of the spiral indicates resources. In Figure 3, the distance between the coils does not change, which indicates that the amount of the resources being used is not changing.

Each loop in the spiral represents a phase of the software process. Thus, the innermost loop might be concerned with system feasibility, the next loop with system requirements definition, the next loop with system design and so on.


Each loop in the spiral is split into four sectors:


Objective Setting

Specific objectives for that phase of the project are defined. Constraints on the process and the product are identified and a detailed management plan is drawn up. Project risks are identified. Alternative strategies, depending on these risks, may be planned.

Risk Assessment and Reduction

For each of the identified projects risks, a detailed analysis is carried out. Steps are taken to reduce the risks. For example, if there is a risk that the requirements are inappropriate, a prototype system may be developed.

Development and Validation

After risks evaluation, a development model for the system is then chosen. For example, if the user interface risks are dominant, an appropriate development model might be evolutionary prototyping. If safety risks are the main consideration, development based on formal transformations may be the most appropriate and so on. The waterfall model may be the most appropriate development if the main identified risk is sub-system integration.

Planning

The project is reviewed and a decision made whether to continue with a further loop of the spiral. If it is decided to continue, plans are drawn up for the next phase of the project.
The important distinction between the spiral model and the other software process models is the explicit consideration of risk on the spiral model. Informally, risk is simply something which can go wrong.
A cycle of the spiral begins by elaborating objectives such as performance, functionality, etc. Alternative ways of achieving these objectives and the constraints imposed on each of these alternatives are then enumerated. Each alternative is assessed against each objective. This is usually results in the identification of the sources of projects risk.
The next step is to evaluate these risks by activities such as more detailed analysis, prototyping, simulation, etc. Once risks have been assessed, some development is carried out and this is followed by a planning activity for the next phase of the process.
There are no fixed phases such as specification or design in the spiral model. The spiral model encompasses other process models. Prototyping may be used in one spiral to resolve requirements uncertainties and hence reduce risks. This may be followed by a conventional waterfall development. Formal transformation may be used to develop those parts of the system with security requirements.

Advantages

The model tries to resolve all possible risks involved in the project starting with the highest risk.

End users get a chance to see the product early in life cycle.

With each phase as product is refined after customer feedback, the model ensures a good quality product.

The model makes use of techniques like reuse, prototyping and component based design.

Disadvantages

The model requires expertise in risk management and excellent management skills.

The model is not suitable for small projects as cost of risk analysis may exceed the actual cost of the project.

Different persons involved in the project may find it complex to use.


Spiral model is generally used for large projects with medium to high risk because in small projects it is possible that cost of risk analysis may exceed the actual cost of project. In other words, Spiral model is a practical approach for solving large scale software development related problems.

This can also be used if requirements of the project are very complex or if the company is planning to introduce new technologies. Some areas where Spiral model is successfully used are decision support system, defense, aerospace and large business projects.

role of system analyst as project manager

Discuss the role of a systems analyst as a project manager. (at least one thousand words) .... you need to interview an analyst/project manager ..


Discuss the role of system analyst as project manager.

Role of System Analyst

The system analyst is the person (or persons) who guides through the development of an information system. In performing these tasks the analyst must always match the information system objectives with the goals of the organization.

Role of System Analyst differs from organization to organization. Most common responsibilities of System Analyst are following:

1) System analysis

It includes system's study in order to get facts about business activity. It is about getting information and determining requirements. Here the responsibility includes only requirement determination, not the design of the system.

2) System analysis and design:

Here apart from the analysis work, Analyst is also responsible for the designing of the new system/application.

3) Systems analysis, design, and programming:


Here Analyst is also required to perform as a programmer, where he actually writes the code to implement the design of the proposed application.


Due to the various responsibilities that a system analyst requires to handle, he has to be multifaceted person with varied skills required at various stages of the life cycle. In addition to the technical know-how of the information system development a system analyst should also have the following knowledge.

Business knowledge:

As the analyst might have to develop any kind of a business system, he should be familiar with the general functioning of all kind of businesses.

Interpersonal skills:

Such skills are required at various stages of development process for interacting with the users and extracting the requirements out of them

Problem solving skills:

A system analyst should have enough problem solving skills for defining the alternate solutions to the system and also for the problems occurring at the various stages of the development process.

I have here added information about software project manager and I think it can be relate to this topic.

Software Project Manager
A Software Project Manager has many of the same skills as their counterparts in other industries. Beyond the skills normally associated with traditional project management in industries such as construction and manufacturing, a software project manager will typically have an extensive background in software development. Many software project managers hold a degree in Computer Science, Information Technology or another related field and will typically have worked in the industry as a software engineer.
In traditional project management a heavyweight, predictive methodology such as the waterfall model is often employed, but software project managers must also be skilled in more lightweight, adaptive methodologies such as DSDM, SCRUM and XP. These project management methodologies are based on the uncertainty of developing a new software system and advocate smaller, incremental development cycles. These incremental or iterative cycles are time boxed (constrained to a known period of time, typically from one to four weeks) and produce a working subset of the entire system deliverable at the end of each iteration. The increasing adoption of lightweight approaches is due largely to the fact that software requirements are very susceptible to change, and it is extremely difficult to illuminate all the potential requirements in a single project phase before the software development commences.
The software project manager is also expected to be familiar with the Software Development Life Cycle (SDLC). This may require in depth knowledge of requirements solicitation, application development, logical and physical database design and networking. This knowledge is typically the result of the aforementioned education and experience. There is not a widely accepted certification for software project managers, but many will hold the PMP designation offered by the Project Management Institute or an advanced degree in project management, such as a MSPM or other graduate degree in technology management.


What does the project manager do?


A project manager is a professional in the field of project management. Project managers can have the responsibility of the planning, execution, and closing of any project, typically relating to construction industry, architecture, computer networking, telecommunications or software development.

A project manager is the person accountable for accomplishing the stated project objectives. Key project management responsibilities include creating clear and attainable project objectives, building the project requirements, and managing the triple constraint for projects, which are; cost, time, and quality (also known as scope).

A project manager is often a client representative and has to determine and implement the exact needs of the client, based on knowledge of the firm they are representing. The ability to adapt to the various internal procedures of the contracting party, and to form close links with the nominated representatives, is essential in ensuring that the key issues of cost, time, quality and above all, client satisfaction, can be realized.

Below are the common responsibilities of a project manager:
• Developing the project plan
• Managing the project stakeholders
• Managing the project team
• Managing the project risk
• Managing the project schedule
• Managing the project budget
• Managing the project conflicts

Characteristics of a Project Manager

First and foremost they like managing projects. Managing projects is not something people are neutral about. They either like it or they don't. Why would anyone want to do a job in which you can all too obviously fail spectacularly and if you succeed people will shrug their shoulders and say you just did your job? Others relish the challenge and like the feeling of accomplishment, of getting something done that may not have happened without them.

Good project managers:

• manage rather than co-ordinate, preside or spectate
• are natural planners
• don't like surprises, so they plan thoroughly to try to prevent them
• are effective fire-fighters - when the inevitable surprises do occur they sort them out quickly and decisively
• reward and punish - not dealing with someone who isn't pulling their weight can destroy team morale
• are good motivators, good team builders
• address conflict rather than leaving things to fester
• do not hide in an office, they walk around and ideally sit physically in the middle of the team so they are approachable
• get consensus whenever possible but dictate when necessary


Most of all, good project managers MANAGE. They do not just get swept along by the current. They grab the project by the scruff of the neck and manage it.
However, it is sometimes the case that project managers do not feel sufficiently empowered to manage and control the things/people they need to manage and control in order to be successful. This problem has a solution.

--interview—
For this topic I still adopt our last interview with the two of system analyst of EMCOR Bajada. In which, they were able to discuss about their role in the company. They were able to share to us some of their responsibilities. And it really not easy to an analyst in whom sometimes they do multitasking, one person does all duties. According to the them, the project manager has to be careful in every decision he does. Every project that he manages must be supervised. He needs to have constant communication with the team involves of the project. Leadership skill is important to a project manager that should possess, because working with a project especially in huge project is created by a team who has its own task.



references:
http://www.statefarm.com/about/careers/it/it_careers/proj_manager.htm
http://misallabouts.blogspot.com/2009/12/systems-analyst-as-project-manager.html
http://www.processimpact.com/articles/be_analyst.pdf

skills and characteristics of a systems analyst

nterview a Systems Analyst and ask what skills and characteristics must a systems analyst develop in order to be more effective in any design modeling process [include in your answer evidences (pix, ltrs, etc)]? at least 2000 words excluding your evidences.


Interview
I had interviewed a system analyst twice. It was way back last semester that I had met the system analyst of EMCOR.

EMCOR is one of the fast-growing companies here in the Philippines. In the world of business, they have to be in the competitive edge, with this they employ technologies in their operation so not to be left behind. I have always chosen EMCOR as a subject to my assignments and reports. They have opened their company to us student who would like to know more in our field in the real scenario. It is nice to know that they are happy to share their knowledge and some information about their company. I never felt to be an interruption to them every time I asked for an interview. Never did they reject us, but instead they have so accommodating.

So much for that, fortunately for the second time around, I had our interview again by their system analyst. With that I have able to gather information about his filed of work and also I have the idea to answer this assignment. (joke)

As what had he impart to us they just like liaison, he is the link of the end-users and the developers/programmers. Because analyst is the one who write user request into technical specification. He is the link between the users and the IT professionals. He needs to know the business operation and activities.

He has different tasks portrays in the company. He is the one who interacts with the users to know their requirements and also to the designers of the project for them to be able to convey the possible interface of the software. The company’s coders and developers are guided and interacted by him during the development of the software. He performs the testing of the system and it is with a live data. He also prepares documentation of the system.

According to the analyst that I had interviewed, he needs lots of patience with the end users who do the request in which sometimes changes occur. During the design modeling, the analyst needs to inline it with the end-users needs and requirement. He has to insure that the interface design of the software is a user friendly environment and looks. He must be creative in a way he will able to create an interface that fits the functionality of the software.


System Analyst

A systems analyst is a business professional that uses analysis and design techniques to solve business problems using information technology and is responsible for researching, planning, coordinating and recommending software and system choices to meet an organization's business requirements. The systems analyst plays a vital role in the systems development process. A successful systems analyst must acquire four skills: analytical, technical, managerial, and interpersonal. Analytical skills enable systems analysts to understand the organization and its functions, which helps him/her to identify opportunities and to analyze and solve problems. Technical skills help systems analysts understand the potential and the limitations of information technology. The systems analyst must be able to work with various programming languages, operating systems, and computer hardware platforms. Management skills help systems analysts manage projects, resources, risk, and change. Interpersonal skills help systems analysts work with end users as well as with analysts, programmers, and other systems professionals.

What skills analyst should acquire?
Analytical skills
Analytical skill is the ability to visualize, articulate, and solve complex problems and concepts, and make decisions that make sense based on available information. Such skills include demonstration of the ability to apply logical thinking to gathering and analyzing information, designing and testing solutions to problems, and formulating plans.
To test for analytical skills one might be asked to look for inconsistencies in an advertisement, put a series of events in the proper order, or critically read an essay. Usually standardized tests and interviews include an analytical section that requires the examine to use their logic to pick apart a problem and come up with a solution.
Although there is no question that analytical skills are essential, other skills are equally required as well. For instance in systems analysis the systems analyst should focus on four sets of analytical skills: systems thinking, organizational knowledge, problem identification, and problem analyzing and solving.
It also includes the way we describe a problem and subsequently finding out the solutions.

Management Skills


Management in all business and human organization activity is simply the act of getting people together to accomplish desired goals and objectives. Management comprises planning, organizing, staffing, leading or directing, and controlling an organization (a group of one or more people or entities) or effort for the purpose of accomplishing a goal. Resourcing encompasses the deployment and manipulation of human resources, financial resources, technological resources, and natural resources.
Management can also refer to the person or people who perform the act(s) of management

Interpersonal Skills

"Interpersonal skills" refers to mental and communicative algorithms applied during social communications and interaction to reach certain effects or results. The term "interpersonal skills" is used often in business contexts to refer to the measure of a person's ability to operate within business organizations through social communication and interactions. Interpersonal skills are how people relate to one another.
As an illustration, it is generally understood that communicating respect for other people or professionals within will enable one to reduce conflict and increase participation or assistance in obtaining information or completing tasks. For instance, to interrupt someone who is currently preoccupied with the task of obtaining information needed immediately, it is recommended that a professional use a deferential approach with language such as, "Excuse me, are you busy? I have an urgent matter to discuss with you if you have the time at the moment." This allows the receiving professional to make their own judgment regarding the importance of their current task versus entering into a discussion with their colleague. While it is generally understood that interrupting someone with an "urgent" request will often take priority, allowing the receiver of the message to judge independently the request and agree to further interaction will likely result in a higher quality interaction. Following these kinds of heuristics to achieve better professional results generally results in a professional being ranked as one with 'good interpersonal skills.' Often these evaluations occur in formal and informal settings.
Having positive interpersonal skills increases the productivity in the organization since the number of conflicts is reduced. In informal situations, it allows communication to be easy and comfortable. People with good interpersonal skills can generally control the feelings that emerge in difficult situations and respond appropriately, instead of being overwhelmed by emotion.

What does a computer systems analyst do?

Computer systems analyst is a blanket term for a computer professional that solves computer issues and uses technology to meet the needs of the company. These professionals might be employed under different titles: IT consultant, IT specialist, programmer analyst, business systems analyst, system architect and computer specialist, to name a few. These highly-trained professionals plan, design and expand new computer systems as well as configure software and hardware. They update/upgrade current computer systems and modify them for new or expanded functions. They are frequently charged with preparing cost reports for management.
Computer systems analysts usually collaborate with other professionals in the information technology field, such as programmers, network security specialists, and software engineers, and will sometimes specialize in specific systems such as accounting, business, engineering, financial, or scientific systems. Click here to find out how to become a computer systems analyst.

What kind of training does a computer systems analyst need?

Computer systems analysts are typically required to have a degree of at least bachelor level. Many employers may require a higher graduate level degree, as well as experience in the field for more complicated jobs and senior-level positions. Computer systems analysts have many different degrees, but typically, they have degrees in computer science, information technology, and management information systems. Click here to get a list of programs to get your management information systems degree online.
Qualifications vary by employer, but general qualifications include: broad computer systems knowledge, experience in employer’s field, specific computer system knowledge, logical thinking skills, great communication and interpersonal skills, and sound problem-solving and analytical skills. Internships are appropriate for students ready to graduate, as they do not usually require any experience.

What does a system analyst really do?


I had also read an article about a system analyst, she narrate her life during her two years of career. With that she gave me an idea of what does analyst do on his job. She received a job offer from a large petroleum company during her senior year in college. Her first assignment was on a development team to replace the entire accounting and operating system for the company. There were 70 people on the project, divided into various sub-groups based on business functions, such as accounts receivable, inventory control, accounts payable, general ledger, chart-of-accounts, etc. In this team, she worked on the inventory control subsystem. But she does other duties; she was the data dictionary coordinator. That meant that as project teams started identifying new data items, she had to give them a valid name and enter it into the dictionary. She also provided reports for the database design team who had to logically order all these data fields.

She is also the security request coordinator. Every time someone wanted access to a data set, she had to verify that they have a legitimate need to either read or read/write to a dataset. Fortunately, she passed the paperwork to the Security Administrator.
Her two years as a systems analyst for her were very exciting. In which she spent most of my time talking with users to understand the business and to other analysts to ensure compatibility between subsystems. She did a lot of design work, and created documentation for these designs, including reports, input forms, and programming specifications. She coded some of the programs myself (in COBOL and PL/1). For her 2 year of a system analyst was full of challenges in which she face it with chin high. She is able to adjust herself to people she interacts with.


--evidence--


SYSTEM ANALYST- SAD (ass-1)

Based on your learnings of chapter 1, identify and discuss some charateristics you have as a good Systems Analyst. (at least 2500 words)

SYSTEM ANALYST


The first topic that had been discussed was about the System analyst, this chapter was being reported by our group. We were a
able to interview a syestm analyst at EMCOR. Currently, EMCOR has one system analyst but fortunaly we were able to meet the two of their system anlyst, their recent analyst and the former analyst, they were able to share to us the nature of their work and the skills that they should possess. With the sahring we had, I had able to imagine myself I could be able to be a SYSTEM ANALAYST someday!

Below are the following information that I have to use to know what characteristics of a system analyst posses that i have.

What is a SYSTEM ANALYST?
According to WIKIPEDIA;
A systems analyst is responsible for researching, planning, coordinating and recommending software and system choices to meet an organization's business requirements. The systems analyst plays a vital role in the systems development process. A successful systems analyst must acquire four skills: analytical, technical, managerial, and interpersonal. Analytical skills enable systems analysts to understand the organization and its functions, which helps him/her to identify opportunities and to analyze and solve problems. Technical skills help systems analysts understand the potential and the limitations of information technology. The systems analyst must be able to work with various programming languages, operating systems, and computer hardware platforms. Management skills help systems analysts manage projects, resources, risk, and change. Interpersonal skills help systems analysts work with end users as well as with analysts, programmers, and other systems professionals.


What do systems analysts do?




The rapid spread of computers has generated a need for highly trained workers to design and develop new hardware and software systems and to incorporate technological advances into new or existing systems. Job titles used to describe the broad category of computer-related occupations evolve rapidly, reflecting new areas of specialization or changes in technology as well as the preferences and practices of employers. Although many narrow specializations exist, this professional specialty group is commonly categorized into computer scientists, computer engineers, and systems analysts.

Far more numerous than do computer scientists and computer engineers, systems analysts use their knowledge and skills to solve computer problems and enable computer technology to meet the individual needs of an organization. They study business, scientific, or engineering data processing problems and design new solutions using computers. This process may include planning and developing new computer systems or devising ways to apply existing systems' resources to additional operations. Systems analysts may design entirely new systems, including both hardware and software, or add a single new software application to harness more of the computer's power. They work to help an organization realize the maximum benefit from its investment in equipment, personnel, and business processes. Most systems analysts generally work with a specific type of system depending on the type of organization they work for for example, business, accounting or financial systems, or scientific and engineering systems. Companies generally seek business systems analysts who specialize in the type of systems they use.

Analysts begin an assignment by discussing the systems problem with managers and users to determine its exact nature. Much time is devoted to clearly defining the goals of the system and understanding the individual steps used to achieve them so that the problem can be broken down into separate programmable procedures. Analysts then use techniques such as structured analysis, data modeling, information engineering, mathematical model building, sampling, and cost accounting to plan the system. Analysts must specify the inputs to be accessed by the system, design the processing steps, and format the output to meet the users' needs. Once the design has been developed, systems analysts prepare charts and diagrams that describe it in terms that managers and other users can understand. They may prepare cost-benefit and return-on-investment analyses to help management decide whether implementing the proposed system will be financially feasible.

When a system is accepted, analysts determine what computer hardware and software will be needed to set it up. They coordinate tests and observe initial use of the system to ensure it performs as planned. They prepare specifications, work diagrams, and structure charts for computer programmers to follow and then work with them to "debug," or eliminate errors from the system.

In some organizations a single worker called a programmer-analyst is responsible for both systems analysis and programming. (The work of computer programmers is described elsewhere in the Handbook.) As this becomes more commonplace, these analysts will increasingly work with Computer Aided Software Engineering (CASE) tools and object-oriented programming languages, as well as client/server applications development, and multimedia and Internet technology.

Many others specialize in analysis, application, or design of a particular system or piece of the system. Network or systems administrators, for example, may install, configure, and support an organizations systems or portion of a system. Telecommunications specialists generally are involved with the interfacing of computer and communications equipment. Computer security specialists are responsible for planning, coordinating, and implementing an organizations' information security measures. These and other growing specialty occupations reflect the increasing emphasis on client-server applications, the growth of the Internet, the expansion of World Wide Web applications and Intranets, and the demand for more end-user support. An example of this is the growing number of job titles relating to the Internet and World Wide Web such as Internet and Web developers, or Webmasters.


How do you prepare to become a systems analyst?

While there is no universally accepted way to prepare for a job as a systems analyst because employers' preferences depend on the work to be done, a bachelor's degree is virtually a prerequisite for most employers. Relevant work experience also is very important. For some of the more complex jobs, persons with graduate degrees are preferred.

Regardless of college major, employers generally look for people who are familiar with programming languages and have broad knowledge of and experience with computer systems and technologies, strong problem-solving and analysis skills, and good interpersonal skills. Courses in computer programming or systems design offer good preparation for a job in this field. For jobs in a business environment, employers usually want systems analysts to have a background in business management or a closely related field, while a background in the physical sciences, applied mathematics, or engineering is preferred for work in scientifically oriented organizations. Since employers generally look for experience, entry-level employees enhance their employment opportunities by participating in internship or co-op programs offered through their schools.

Systems analysts must be able to think logically and have good communication skills. They often deal with a number of tasks simultaneously; the ability to concentrate and pay close attention to detail is important. Although many computer specialists sometimes work independently, they often work in teams on large projects. They must be able to communicate effectively with computer personnel, such as programmers and managers, as well as with users or other staff who may have no technical computer background.

Systems analysts may be promoted to senior or lead systems analysts with experience. Those who show leadership ability also can advance to management positions, such as manager of information systems or chief information officer.

Many people develop advanced computer skills in other occupations in which they work extensively with computers, and then transfer into computer occupations. For example, an accountant may become a systems analyst or computer support specialist specializing in accounting systems development, or an individual may move into a systems analyst job after working as a computer programmer.


--not yet done---more info will be added
http://en.wikipedia.org/wiki/Systems_analyst
http://www.math.utep.edu/mathmajor/system/home.html#how

Wednesday, November 25, 2009

Assignment 2

What should be the nature of the relationship between the business plan and the IS plan? (at least 2000 words)

Before I have to discuss the nature of the relationship between the business plan and the Information System plan, I prefer to make a distinction between the two. This will help me to understand the subject matter.

Business Plan

Why does a company or a business need to have a business plan?

A business plan is just like a blue print of a business. It just like a building a house, you would not walked over an empty lot and just start nailing boards. Therefore, it is foolish of you to start a business without having a business plan. This serve as a “road map” of a company.

In reality, having a business plan for any businesses will change over time as the business develops, and any particular business may have multiple business plans as its objectives change.

A business plan is the cornerstone of starting a business as well as a significant tool for monitoring the progress and growth of a company. With this, having a business plan is essential to the company or business with this following reason:

To test the feasibility of your business idea. Writing a business plan is the best way to test whether or not an idea for starting a business is feasible, other than going out and doing it. The business plan is a business safety net. Writing a business plan can save a great deal of time and money, if working through the business plan reveals that your business idea is unsustainable. With this you can test if having your idea business is feasible, and if not this help freeing you to move on to a new and better idea.
To give your new business the best possible chance of success. It is vital to the success of the business. Writing a business plan will ensure that you pay attention to both the broad operational and financial objectives of your new business and the details, such as budgeting and market planning. Taking the time to work through the process of writing a business plan will make for a smoother startup period and fewer unforeseen problems as your business becomes established.

To secure funding. To start a business, it needs to have both operating and start up capital. Some business has their capital from financial institutions such as banks in which they expect that business has a developed business plan. And established businesses usually need money for their business operations. With this, the role of having a business plan will at least gives you an assurance and chance to keep the business operating or maybe an expansion.
To make business planning manageable and effective. A business plan is essential if you're thinking of starting a business, but it's also an important tool for established businesses. The company's original business plan needs to be revised as new goals are set, to adopt the changes in business industry. Reviewing the business plan can also help a company or corporation see what goals have been accomplished, what changes need to be made, or what new directions to a company's growth should take.
To attract investors. Having a solid business plan, this is a plus factor to the company in which investors pull towards the company to invest. A company business plan will be the basis of the investor to do some background checks to the company.

Conclusion
Writing a business plan is time-consuming, but to have a successful business it is vital and essential to survive the start up phase of the business. The process of writing a business plan can do wonders to clarify where you've been and where you're going, thus this will serve as a company guide to the success.

Information System Plan

Today, most organizations in all sectors of industry, commerce and government are fundamentally dependent on their information systems. Thus, organizations or companies are increasingly looking toward the application of technology not only to strengthen existing business operations but also to create new opportunities that provide them with a source of competitive advantage.

Planning for information systems, as for any other system, begins with the identification of needs. In order to be effective, development of any type of computer-based system should be a response to need--whether at the transaction processing level or at the more complex information and support systems levels. Such planning for information systems is much like strategic planning in management.

Relationship between the Business Plan and the Information System Plan

Before, the relationship between the business strategy or plan and the information function was not made interest and awareness of the Top Management of the companies or firms. At that time, information systems were thought to be synonymous with the company data processing and were treated as some back-room operation in support of day-to-day ordinary tasks.
In the 80’s and 90’s, however, there has been a growing realization of the need to make information systems of strategic importance to an organization. As a result, strategic information systems planning (SISP) is a important issue. In many industry surveys, improved SISP is often mentioned as the most serious challenge facing by the Information System managers.

With this, strategic information system planning is the analysis of a corporation’s information and processes using business information models together with the evaluation of risk, current needs and requirements. The result is an action plan showing the desired course of events necessary to align information use and needs with the strategic direction of the company. Also, an article has emphasized the need to note that SISP is a management function and not a technical one. This is consistent with the earlier distinction between the older data processing (this was first era of three-era model information system application of John Ward) views and the modern strategic importance view of Information Systems. SISP thus is used to identify the best targets for purchasing and installing new management information systems and help an organization maximize the return on its information technology investment. A portfolio of computer-based applications is identified that will assist an organization in executing its business plans and realize its business goals. There is a growing realization that the application of information technology (IT) to a firm’s strategic activities has been one of the most common and effective ways to improve business performance.

The task of strategic information systems planning is difficult and often time organizations do not know how to do it. Strategic information systems planning is a major change for organizations, from planning for information systems based on users’ demands to those based on business strategy and plan.


Reference:
http://www.tn.gov/finance/oir/planning/ispprocess.pdf
http://viu.eng.rpi.edu/publications/strpaper.pdf

Assignment 1

Think about yourself worthy to be called as IT professional, how do you see yourself 10 years from now, what are your strategies to get there? (at least 3000 words)


"A DREAM without PLAN is a NIGHTMARE!"

These questions bother me so much. It makes me realize what really my goals here in Institute of Computing in which I am enroll in Information Technology course. I was thinking what made me decide taking this field, how did I came up with this decision.

Way back in my fourth year in my high school when everybody was planning to their path in college and busy thinking of what course to choose to their dream career . Also, they were preparing on taking up of entrance exams in different universities. It was the time I really got confuse and baffle with what course to take up. (Wheew! Honestly I had really had the hard time to think at that time.) Before I was left out with my classmates I just took several entrance exams offered by different schools but still I had not make my mind up on what course should I took up. Many of my classmates encourage and recommend me to take entrance exam in University of Southeastern Philippines and chose Information Technology as our course. Fortunately, I got passed with the entrance exam and preceded with an interview with one of faculty staffs. I had remembered that I was asked by my interviewee on what would my future career once I finish my degree and why I had choose IT as my course, I just answered IT is in demand here and abroad (where you can earn dollars, jejeje) and might end up as a call center agent or IT staff/professional (funny, I was not even know what kind of job it is) etc. With the different level I was into I try my best to be here. Luckily, I was one of the lists ready to enroll in Institute of Computing.

I had decided to pursue to stay here at the university and took IT because USEP offer the lowest rate per unit in tuition fee compared to other colleges here in Davao aside from University of Philippines. And being enrolled in one of the State Universities here in Philippines is an achievement to me and it surely made me proud of myself. In my first semester in my college days it was quite fine, I was able to pass the subjects. But in my second semester, I got failed in one of my major subjects and it was my first programming language, Turbo C++. Maybe I was not able to prepare and plan my college which was different to high school. Because the failure I made, I realized if I had to pursue this course that I chose. Instead of giving up, I had given it a second chance if I really belong to an IT world.

I started to appreciate this course when I took the second time in Turbo C++ with one of the best professor of Institute of Computing, she really good in teaching. It fascinated me how coded words create a simple computer program. It enhanced my logical analysis in making simple programs. With this, I made up my mind to continue and pursue this field which I had already started to love and to adopt. I admittedly not really good in this field I chose, but I had to. I did not have any choice. What I have realized is that we can able to learn to love everything, you just need to put effort on it and perseverance, and maybe you might win it in the end if you have determination.

I have been here in this university for five years, I have already invested so much and I think I must finish what I have started. I just merely have to sacrifice and face one and half year of suffer and pains and everything would be paid off. At this point I want to explore more to gain more knowledge. And if I get a hold with my bare hands of my diploma (because I promise to have it!!! Bongga..) I can able to use everything I learned and gained here in my course to my career someday. I might not good but I know I can able to share and to contribute what I have learned here.

One of my possible end point careers after college, it might be to be an IT professional. With this I am still wondering what the roles of this are in the real IT industry. With this I am able to research who is the IT professional for me to be able to visualize my self to be as one.


According to my research below:

Who is the IT professional?

For the purpose of this discourse, the key areas are those that relate to the Attitude, Skill and Knowledge of the IT professional. Interestingly these are the same areas of change that training focuses on. Training seeks to close or fill any gaps that an individual has in these areas. However, it must be noted that simply going for training programs does not make one a true and complete professional.

Are you meeting Expectations

To be a competent IT professional, you must know what the expectations of your colleagues, your industry, your clients and the general public are. Meeting these expectations is what qualifies you to call yourself a professional, and what gives you recognition as a professional.


In today's world the role of the IT professional is crucial. IT has become an essential resource for most organizations. The evolving scenario is one of a growing complexity of computer systems and businesses dependence on them. Qualified and competent IT professionals are needed to ensure the effectiveness and efficiency of computers.

The Diverse Nature of IT

Professionals work in areas such as Programming, Engineering, Database Administration, Networking, Web development and E-Commerce.


IT professionals create, operate, maintain and program computers. An IT professional must have the skills and knowledge required to carry out specialized tasks in a recognized field of IT. This is the minimum requirement. But IT skills demand far outstrips supply. Current IT skills shortage worldwide is enormous



With this I am able to know how can able to achieve my aspiration to be an IT professional.

To be worthily called an IT professional I think I must attain the following which I based on my research in which I actually become conscious.

  • Knowledge

  • Training and Certification

  • Experience

  • Lifelong Learning

  • Ethics

Knowledge

This aspect is important, it able us to perform well in our chosen field. With the learning from our more than four years in college we are able to gain and to expand the knowledge we already have.

To define what knowledge should acquire to be capable in this field.

Knowledge (intellectual and conceptual) can be acquired through formal education sources such as private training institutions, colleges, institutions of higher learning, as well as E-learning on the Internet. The focus is on the intellectual, i.e. understanding concepts, generating ideas.

Skills however, can be acquired and improved from work experience and practical training. The most effective form of skill building is through practical exercises.



Training and Certification

Training and certification assists in improving skills, increasing knowledge and gaining recognition. Certification exams identify the necessary skills for an individual to perform their job competently and most important, successfully. For example, A+ certifies the competency of service professionals in the computer industry. Anyone who wants an internationally recognized credential as a competent computer service professional can take the A+ examination.

Because Certification is becoming the vogue in the IT industry today, more and more potential and working IT professionals want to get certified. It makes sense. Certification gives an IT professional, a valued credential that is recognized in the IT industry. Not only that, it is a powerful tool for providing job and business opportunities and for meeting challenges on the field. Improved income and enhanced professional credibility are powerful motivators for becoming IT certified.

Does having a popular certification make you a competent and recognized IT professional? Is certification part of your career development plan? If it is, this must be based on a solid understanding of what certification entails and how certification fits into your personal work / career goals.

But as noted earlier, certification is only one way of ensuring you have the required skills and knowledge for IT professionalism. Formal education and Work experience, i.e. practical and relevant work experience, are also essential for IT skill and knowledge achievement.

Lifelong Learning

IT professionals must also address is the issue of currency. Professionals must find ways of staying current on IT and IT related issues. This requires continuous self-development on the part of the IT professional. Simply because you are certified, or you have many years of experience, does not mean you should go to sleep. The IT field is one of the fastest developing fields worldwide. You cannot afford to be outdated or allow your skills to stagnate. You cannot serve your clients or employers well if you only have outdated ideas and information. As an IT professional, you cannot be relevant to your society if you are not current.


Luckily with the digital age, there are many information, and learning opportunities available for serious and career-minded IT professionals. The Internet can be used for education and continuous self-development. Other tools that can be utilized for staying up to date include: books, publications, training, software, etc. But the presence of all these tools is not enough; as a professional you must have the ability and desire to update yourself on a continuous basis. We must never stop learning. This is especially crucial in IT. There must be a readiness and hunger to learn. Yesterday's knowledge may not be able to handle today's opportunities and challenges.


Ethics

This should acquire and attain by every IT Professionals because this is your attitude towards your work, your client and people around you. This factor can truly make you worthily called an IT Professional, aside from having IT expertise.

However, does having superior IT skills, knowledge and certification make you a true professional? "Administrators and network engineers do not live by Windows 2000 alone. " I have personally come in contact with IT certified individuals who I cannot dare to call professionals. Or what would you call an individual who has no regard for ethics and is ever ready to sacrifice professionalism at the altar of money? As a professional what is your attitude to the public, your work, your colleagues, or your clients?

What is your attitude towards business ethics? In today's fast and slick business environment, how relevant is ethics when you can take the easy way out? Everybody wants to be "fast and smart". To a professional, money is important but it is not everything. Money should not be your master. To maintain this attitude can sometimes be difficult, with the attendant daily pressures. But that is no excuse. If you want to be a true professional that is the price you must pay. IT professionals need to ask themselves: "Am I in IT for quick, short profit or am I in IT for the long distance?" The choice is yours.

----Just think of this paragraph below-----

Is the CCNA certified individual who defrauds his employers an IT professional? What about those who use their skills and knowledge for anti-social and destructive activities? Are they professionals too? The most notorious are hackers and Virus developers. These are highly skilled individuals but what they use those skills for are not in the interest of society. The same goes for IT fraudsters. If you have all certifications in this world and you use your knowledge and skills to steal and destroy you are nothing but a thief.

The right attitude also extends to how you treat your clients or employers. Are you dependable and trustworthy? There are many examples of so-called professionals who talk down to clients, and who cheat their clients or employers.

Is it truly ethical, for example, for a professional to take longer than necessary to perform a job? To say that he/she is sick in order to take a day off for leisure? To fail to report rule violations by a co-worker?

The public expects the IT professional to be socially responsible and disciplined and should be a role model for the youth.

Conclusion

In conclusion, one can state that IT professionalism does not end with getting certified and earning a fat pay. It isn't simply about being a skilled expert. Just as professionalism is about skills and knowledge, it is also about responsibility and duty. It is about using your skills and knowledge in a responsible and humane manner. It is about using your privileged status to bring about positive change in society.

And what ever skills and knowledge we attain, we should use it in a way we can help others.



10 years from now…..

What would I be ten years from now? What would be my status in an IT arena?

At this point of my college, this is the time I really need to do my career planning. I have to take a look ahead and create my future. It isn’t always easy, but it is better that just sitting back and taking whatever comes my way. I know it is not too late for me to do it. With this, doing some assessment in require for me to be able to know what I really want and desire in my life. Ten years from now I always dream to be one of in the field of IT professions.

Self-assessment

Career self-assessment requires to you ask and answer questions that relate to your career and life expectations. You must know who you are. Period! How can you know what you want if you don’t know who you are? What makes you tick? Know yourself – what is your passion? You must ask yourself the questions: What sort of working life do you want? What type of work or activity makes you happy? What are your career goals? What are your ambitions, personal or lifestyle preferences?

In terms of career satisfaction what is important to you? It is essentially about the direction you want your life to go. What matters? What is your purpose? Your love of IT is not enough. You should have a big picture. What is your purpose? What is your vision? Where are you going? Not where is everybody going? George Bernard Shaw had this say “Some men see things as they are and ask why. Others dream things that never were and ask why not.” What is your WHY?

Generally, the areas you should consider are: Nature of work, Work interests, Recognition, Security, Income (Salary and benefits), Personal / Family life, Opportunities for growth and Responsibility. What gives you career satisfaction in each of these areas? Which areas are of top priority, which are unimportant, which are you indifferent to? Through this you can identify IT jobs and computing environments that interest you. And getting answers isn’t like instant coffee.

Getting answers may not be immediate. Answers may also not be obvious. Use reliable resources available to help you learn more about your areas of interest. You may have to dig deep and be resourceful. Ask questions, talk to people in the field, network and attend professional and career forums.

It helps to state your goals in black and white. You may need to write down your professional short- and long-term goals. Be descriptive and edit them over and over until you are sure these goals are what you desire.

A valuable career self-assessment is one that is honest. Lying to yourself will not help. Also you need to drop the get-rich-quick mentality. Approach your IT Career like a marathon, not a short sprint. Be Wise. If immediate results are what you are after, then the IT field might not be for you.

Be realistic in your expectations. Fulfillment is a function of expectations. Don’t copy others. Don’t run with the goals of other people. Too many people set goals and take jobs not because they really want them but because they believe that’s what others expect of them. They want to be part of the in-crowd. Whose plan is it, anyway? Career planning is very much about choosing the direction that you want to take in your life. You must own your plan, you must own your goals. Understand, and be happy, with what you want to do.

Situation assessment

Next you need to do what I would call a career situation assessment. What is your current career situation? You know where you want to get to, but how near or far are you? What stage are you at in your career? What is your current situation with respect to your work or profession? Are you in a job that will take you to your ideal situation?

If you are out of work, what is your background? Are you self-employed? Or are you a student? Again you must use the criteria you used for your career self-assessment to assess your current career status.

Are you currently meeting your expectations in terms of Nature of work, Security, Income (Salary and benefits), Personal / Family life, Opportunities for growth, Responsibility, etc? This involves assessing your current skills and experience to identify what you must learn, or experience you need to acquire to excel. What practical knowledge do you have? What are your academic qualifications? Do you have a sound technical background? How relevant are your present skills and experience to your goals? Where are you in relation to where you want to go?


Which areas require improvement? Since you know your career goals it should be easy for you to identify your career gaps.

IT Professions and Career profile

I done some research of different IT Professions and career profile for me to able identify and indicate the area or field that suites me.

The IT industry offers a wide range of positions that vary in their requirements and expectations. To start an IT career, I should have a reasonable idea of the requirements of the area of my interest.



The following are the different IT Professions and Career profile.

THE ENGINEER

The Engineering profession is one of the oldest in IT. Engineering specifically has to do with designing and supporting Computer Hardware. Computer hardware covers a wide range including: Computer Monitors, printers, scanners, keyboards, Multimedia. Engineering is not limited to the PC world. Minicomputers and Mainframe computers are included too. Furthermore, in the IT environment, engineering equipment includes Power Protection equipment such as Stabilizers, Surge protectors and Uninterrupted Power Supplies (UPS).

The Engineer designs the different parts that make up the computer equipment. Design is the major function of the Engineer - design of microprocessors, integrated circuits and circuit boards used in computer equipment. Design is complex, challenging and definitely intellectually stimulating. It is for the creative minded. The creative ability must usually be complemented by research and study efforts. It is the design aspect of engineering along with research that accounts for most of the innovations and new products in Hardware technology. Design requires a solid intellectual background, logical thinking, attention to detail and the ability to focus for long periods.

Another important function of the Engineer is Technical Support. Common titles of Tech Support personnel include: Technical Support Representative, Systems Engineer, Customer Service Representative, Help Desk Support, PC Support Specialist, PC Maintenance Professional, Sales Support Technician, Maintenance Engineer.

Technical support involves the installation, configuration, maintenance and troubleshooting of computers and related equipment. To effectively carry out preventive and curative measures, logical skills and a real understanding of how the equipment works will come into play here.

It involves a fair amount of human interaction. Tech support therefore requires patience, as well as problem-solving and strong communication skills.

THE SOFTWARE PROFESSIONAL

Software professionals develop software that drives the hardware. Popular titles are Programmer, Systems analyst or System Developer. These individuals create, manage and maintain software programs. To create such programs you need to learn and master the art using programming languages (code). Popular programming languages are Visual Basic, C++ and Java. It involves gathering requirements, coding and testing.

Programmers create software products based on identified market needs, and or specific user requirements. This allows a lot of room for creative ability and innovative thinking while working to specifications and standards. In performing systems analysis, you interact with users, observe their workflow and attempt to create models that will satisfy the user. It means a certain degree of conceptualization is required. To give the user what the user wants, the analyst must know the working requirements of the user, sometimes to the minute details. You need to love paying attention to details.

Analysts in some organizations may not necessarily start out with a computing background. Often people bring their previous job experience to work with the programming team in understanding user requirements. A programmer may be involved in analysis, or may strictly focus on programming, or both. This depends entirely on the working environment.

Programming, just like engineering design requires logical thinking, attention to detail and the ability to focus for long periods. Although programming routines tend to be more predictable than jobs with a fair amount of troubleshooting, it can be quite intensive with regard to self-development. You must be ready to keep learning programming languages/tools/updates because of continuous enhancements in the way programs are written.

THE NETWORK SPECIALIST

With the growth of the Internet, driven primarily by the merging of Communications and Computers, there is a growing demand for individuals skilled in the technical aspects of this unique convergence. Networking is an area of IT that is developing rapidly, especially with new developments in wireless and mobile computing. No wonder the fastest growing sector in IT now is that of Wireless networking.

Networking encompasses Local Area Network (LAN), Wide Area Network (WAN) and Internet. Networking facilitates communications and the sharing of resources using IT. Just like the Engineer, the Network Engineer is involved in the design, maintenance and troubleshooting of all aspects of the Network environment - Network equipment, the physical Network, Network connections, Network management and Network Software. Popular Networking names and products include Microsoft Windows, Novell Netware, Banyan, US Robotics, Appletalk, Cisco, Agere, Orinoco, 3COM and Linux.

The Network professional not only deploys networks but must also ensure reliability and consistency of the network by handling problems efficiently, and reducing the risk of network failure. You're also expected to keep abreast of the latest in computers and network technology. The job can therefore be quite demanding as you should not only be flexible enough to provide service at any time, but as a network professional you should be expect to work long hours, weekends inclusive. This is a good position for those with problem-solving and analytical thinking skills.

RESEARCH & DEVELOPMENT / ACADEMICS

Research and Development is about carrying out scientific and technological investigations that contribute to knowledge for the benefit of society. Design is closely related to Engineering design mentioned earlier. However, research here is not limited to the engineering aspect of IT. Discoveries based on research are useful in virtually all spheres of human endeavour. Research in IT could be useful for mass production of scarce drugs, assisting in finding cures for diseases, Telecommunications, business optimization, Oil, Sports, etc. Today’s modern tools, which are now valuable everywhere are the results of years of research.

Research can be extremely satisfying for those who want to “create” or contribute to, knowledge. But a researcher must be extremely dedicated and persistent. Research can be very challenging, as results don’t usually come fast. It isn’t for “rapid results” people. Research requires patience and focus. A researcher must always realize that research is not an end in itself. Research must be of value to the society. Research obviously requires a solid intellectual background.

Most researchers are also Academics. Academics are involved in teaching and assessing students in all fields of IT. The academic is usually the first expert, aspiring professionals will encounter as they begin their career. Research can be flexible, and could be combined with office, business or industrial work. Obviously, the Researcher must enjoy studying, learning, testing and experimentation.

DATABASE ADMINISTRATION

In the digital world we all depend on databases for vital information. Popular database products are Oracle, Microsoft’s SQL Server, IBM’s DB2 and Sybase. Database experts make sure that these databases are secure, robust and functional for effective business performance.

The role a database administrator (DBA) plays is essential and can be quite complex. DBAs maintain the information the company needs to carry out its business and be successful. DBAs are responsible for setting up and maintaining corporate databases. It is the DBA’s duty to ensure availability, backup, security and efficiency of the database.

Common tasks of the DBA include report generation, backup management, security management, and performance monitoring and tuning. A Database administrator is more of a data facilitator – making sure data is secure, available and is used productively.

Do you love responsibility, planning and attention to detail? Maybe you should consider becoming a DBA. Database administration requires planning and organizational skills as well as a programming background.



THE SOFTWARE PROFESSIONAL

Software professionals develop software that drives the hardware. Popular titles are Programmer, Systems analyst or System Developer. These individuals create, manage and maintain software programs. To create such programs you need to learn and master the art using programming languages (code). Popular programming languages are Visual Basic, C++ and Java. It involves gathering requirements, coding and testing.

Programmers create software products based on identified market needs, and or specific user requirements. This allows a lot of room for creative ability and innovative thinking while working to specifications and standards. In performing systems analysis, you interact with users, observe their workflow and attempt to create models that will satisfy the user. It means a certain degree of conceptualization is required. To give the user what the user wants, the analyst must know the working requirements of the user, sometimes to the minute details. You need to love paying attention to details.

Analysts in some organizations may not necessarily start out with a computing background. Often people bring their previous job experience to work with the programming team in understanding user requirements. A programmer may be involved in analysis, or may strictly focus on programming, or both. This depends entirely on the working environment.

Programming, just like engineering design requires logical thinking, attention to detail and the ability to focus for long periods. Although programming routines tend to be more predictable than jobs with a fair amount of troubleshooting, it can be quite intensive with regard to self-development. You must be ready to keep learning programming languages/tools/updates because of continuous enhancements in the way programs are written.

THE NETWORK SPECIALIST

With the growth of the Internet, driven primarily by the merging of Communications and Computers, there is a growing demand for individuals skilled in the technical aspects of this unique convergence. Networking is an area of IT that is developing rapidly, especially with new developments in wireless and mobile computing. No wonder the fastest growing sector in IT now is that of Wireless networking.

Networking encompasses Local Area Network (LAN), Wide Area Network (WAN) and Internet. Networking facilitates communications and the sharing of resources using IT. Just like the Engineer, the Network Engineer is involved in the design, maintenance and troubleshooting of all aspects of the Network environment - Network equipment, the physical Network, Network connections, Network management and Network Software. Popular Networking names and products include Microsoft Windows, Novell Netware, Banyan, US Robotics, Appletalk, Cisco, Agere, Orinoco, 3COM and Linux.

The Network professional not only deploys networks but must also ensure reliability and consistency of the network by handling problems efficiently, and reducing the risk of network failure. You're also expected to keep abreast of the latest in computers and network technology. The job can therefore be quite demanding as you should not only be flexible enough to provide service at any time, but as a network professional you should be expect to work long hours, weekends inclusive. This is a good position for those with problem-solving and analytical thinking skills.

RESEARCH & DEVELOPMENT / ACADEMICS

Research and Development is about carrying out scientific and technological investigations that contribute to knowledge for the benefit of society. Design is closely related to Engineering design mentioned earlier. However, research here is not limited to the engineering aspect of IT. Discoveries based on research are useful in virtually all spheres of human endeavour. Research in IT could be useful for mass production of scarce drugs, assisting in finding cures for diseases, Telecommunications, business optimization, Oil, Sports, etc. Today’s modern tools, which are now valuable everywhere are the results of years of research.

Research can be extremely satisfying for those who want to “create” or contribute to, knowledge. But a researcher must be extremely dedicated and persistent. Research can be very challenging, as results don’t usually come fast. It isn’t for “rapid results” people. Research requires patience and focus. A researcher must always realize that research is not an end in itself. Research must be of value to the society. Research obviously requires a solid intellectual background.

Most researchers are also Academics. Academics are involved in teaching and assessing students in all fields of IT. The academic is usually the first expert, aspiring professionals will encounter as they begin their career. Research can be flexible, and could be combined with office, business or industrial work. Obviously, the Researcher must enjoy studying, learning, testing and experimentation.

DATABASE ADMINISTRATION

In the digital world we all depend on databases for vital information. Popular database products are Oracle, Microsoft’s SQL Server, IBM’s DB2 and Sybase. Database experts make sure that these databases are secure, robust and functional for effective business performance.

The role a database administrator (DBA) plays is essential and can be quite complex. DBAs maintain the information the company needs to carry out its business and be successful. DBAs are responsible for setting up and maintaining corporate databases. It is the DBA’s duty to ensure availability, backup, security and efficiency of the database.

Common tasks of the DBA include report generation, backup management, security management, and performance monitoring and tuning. A Database administrator is more of a data facilitator – making sure data is secure, available and is used productively.

Do you love responsibility, planning and attention to detail? Maybe you should consider becoming a DBA. Database administration requires planning and organizational skills as well as a programming background.

INTERNET / WEB DESIGN

Web sites are coming up all the time all over the world. Web professionals develop and maintain web pages and web sites on the Internet. Internet design and development is a combination of two skill sets: Programming as well as art/graphic design. Web development can be regarded as a special form of programming. Web developers are involved in creating models, graphic designs, web page designs, testing and troubleshooting.

Popular Web development tools include HTML, Macromedia’s Dreamweaver and Microsoft’s Frontpage.

Web development requires creativity and attention to detail. Although programming skills are important, it is also vital that the Web developer has a flair for presentation and aesthetics. Web development in addition involves a fair amount of testing and problem solving.

With the enumerated career in an IT arena, I am able to have some overview IT professions. As you can see, in an IT world there really are wide varieties of positions available to us. But, it up to me to find a ---category of work that fits on my background, passion and personality.



According to my research that choosing a career path is not all that you need to succeed in IT. Attitude, knowledge and experience are all key success factors.

While there are opportunities in all areas of IT, Technical support is usually regarded as the best area for a beginner to gain a good working knowledge of the basics of the IT profession. Hands-on experience gained especially in the area of problem solving is invaluable for starting an IT Career. PCs can be seen in every sphere of life now. What this means is that it is easier for a newcomer in tech support to get experience and get a foot in the door, as opportunities are virtually limitless. This is quite unlike a newcomer with skills in more complex applications that are not commonplace.



In making decision in choosing a career in Information Technology I have here some tips help me out to choose. This will give me a better view of what I need to consider in making a career choice in IT.

10 Tips for making a Career Choice in IT

Considering a career in Information Technology (IT) - beginner, fresh graduate, enthusiast or career changer? What is your reason for choosing a career in IT? Your motive may differ from mine, but does it make sense? Not all reasons people give for wanting to go into IT are reasonable. It is always in your interest to make your career choice for the right reasons.


Here are some suggestions of what you should consider in making a career choice in IT.


1. There is financial reward in IT but don’t choose your career simply for the money. IT is financially rewarding when you choose the right field, make sensible career choices and work hard. Although the economic factor must come into play when making a career decision, it shouldn’t be the sole determining factor.

2. Avoid the “bandwagon effect”. Don’t jump on anybody’s bandwagon. What is good for Lagbaja may not be good for Tamedun. For some it has been described as the “Feel Good, Rave of the moment or Go with the flow” factor. Everybody seems to rush for the hot career choices.

3. With specific reference to IT, don’t jump on IT because IT is the in thing. There is no doubt that the scope of IT is quite wide. In a world ruled by fads and trends, IT may be the “reigning champion”, but the significance of IT is more than that – IT adds value. Do you really appreciate the power of IT or are you simply pursuing the latest craze?

4. First and foremost, you must answer the “Who Am I” question. Understand yourself. Sincere self-evaluation is a necessity for quality career management. Knowing who you are helps you in determining what you want and don't want in a career, and in providing career direction.

5. With specific reference to IT, what is your interest? Do you want to create, provide or use IT, or create with IT? Are you the sort of person who wants to know how IT itself works, i.e. the inner workings and how you can be an IT creator, or you are more interested in how to get results using IT?


6. You desire an IT career because IT is not boring. Note that we perceive things differently - what may be fun to you may be boring to me. This has to do a lot with your perspective, your values. Does the idea of an IT career appeal to you? Many come into IT because of the stimulating opportunities and rewards.


7. Do you want to work in IT because it is a well-respected profession? The IT profession is respected globally because of the impact Information Technology (IT) has on society. It is certainly a field where if you make the right impact you can get the respect you deserve.

8. The sheer diversity is what attracts many to IT. The diverse nature of IT offers many professionals the opportunity to work in different areas over time, and sometimes even on an ongoing basis.

9. IT is a field that emphasizes knowledge and contribution. Individuals in IT need knowledge and skills as noted previously in (3).Do you want the power of knowledge? Do you enjoy and hunger to learn new things?

10. It should be obvious that your passion is key. You need to have a huge passion for IT and how it works. Be honest and sincere with yourself: how passionate and committed are you to a career in IT?


But before anything else I first plan to finish my college and be able to proceed on a field that suites me.


What are your strategies to get there?

A dream without a plan is a nightmare".

Make a career planning.

Planning helps me focusing and organizing myself. Get my priorities right. Sometimes we do things right but focus helps me to do the right thing. With this I need to do is to develop a step-by-step plan. This will make me do everything as organize. The essence of a career plan is in knowing what you want and determining how to get it.

Consider the challenges and obstacles that I might encounter.

The road might be thorny and rocky. Nobody said it would be easy. Don’t avoid challenges. Some roadblocks could actually be opportunities in disguise. Attitude is key when challenges come to our way. A strong Why will carry you through such situations. But which other resources can you muster to overcome each obstacle?

Identify the time to achieve my goals.

Time to achieve my goals is a serious issue that I must consider. I need this to have a means of measuring my progress. Like what happen right now, I am here in college for five years in which I never planned but because I had not make some plan before my college this is the result.

Decide on the step-by-step process.

I must also decide on everything on a step-by-step process to achieve my ultimate career goal.

I should do other things that will still assist me in moving forward. And keep on doing things that contribute positively to my growth. Be creative and display initiative. Invest in other useful areas and be creative. But make sure I should focus on things that matter.

Motive my self.

In everything I do for me to achieve it I need to do some motivation. I should think why I need to reach my goals. To whom I dedicate my all achievement.

Have Faith.

With the great faith and belief to our Creator, this will make me more strong for what ever comes to my way to attain all my dreams.


http://www.jidaw.com/article2.html



http://www.jidaw.com/certarticles/career2.html