Thursday 30 August 2012

Rational Rose Software Download

Rational Software, Inc. was a company founded by the "three amigos" (Booch, Jacobson, Rambaugh) , the creators of UML. The company's main product was Rational Rose, a CASE Tool to forward and reverse engineer UML models. It is now a division of IBM. Rational Rose has multiple "views" or models of an application. The two most important ones are the "logical view" which is the actual class model (in UML notation), and the "physical view" that consists of "components" that contain the actual (code) implementation of the classes of in the logical view

Click here To Download Software...
http://kat.ph/rational-rose-enterprise-edition-7-7-0204-3001-release-version-t413209.html

C# Program Examples

  1. Even or odd  program in C#

Find The Value of Even or Odd in C# Program
Description:
Here in this program, The conditional statement (If statement)is used with the condition (i.e) The remainder value is zero or non zero when dividing the given value by 2, Conslole.WriteLine is used to display the given value is even or odd and Console.ReadLine is used to get the input value.
Sample Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace codeforevenorodd
{
class Program
{
static void Main(string[] args)
{
string g;
int j = 0;
int i;
Console.WriteLine(" Enter the value: ");
g = Console.ReadLine();
i = Convert.ToInt32(g);
j = (i % 2);
if(j == 0)
{
Console.WriteLine("The given value is even ");
}
else
{
Console.WriteLine("The given value is odd ");
}
}
}
}
Sample Input_1:
Enter the value:
88
Sample Output: The given value is even
Sample Input_2:
Enter the value:
23
Sample Output: The given value is odd
 
  2 Palindrome  program in C#
A sample program in C# is used to find the given value is palindrome or not both for string value and numbers.
Description:
In this program, either string or number is taken as a input for checking palindrome.
Palindrome is a specific name given for the word or number which shows the same name or number when reversed from right to left or vice-versa. While loop is used to check the given condition is palindrome or not. Conslole.WriteLine is used to display the given value is palindrome or not and Console.ReadLine is used to get the input value.
Sample Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace codeforpalindrome
{
class Program
{
static void Main(string[] args)
{
string s1;
int j = 0;
int i = 0;
Console.WriteLine(" Enter the value ");
s1 = Console.ReadLine();
j = s1.Length;
while (i != (j - 1))
{
if (s1[i] == s1[j - 1])
{
i++;
j = j - 1;
}
else
{
Console.WriteLine(" The given value is not a palindrome");
break;
}
}
if (i == (j-1))
{
Console.WriteLine("The given value is a plaindrome");
}
}
}
}
Sample Input_1:
Enter the value:
malayalam
Sample Output: The given value is a palindrome.
Sample Input_2:
Enter the value:
sir
Sample Output: The given value is not a palindrome.
Sample Input_3:
Enter the value:
12321
Sample Output: The given value is a palindrome.
Sample Input_4:
Enter the value:
12345
Sample Output: The given value is not a palindrome.
Matrix representation –program in C#
The matrix representation program is used to display the given number of rows and columns in a matrix format.
Description:
In this program, number of rows and columns are taken as input. For loop is uesd to diplay the output in a matrix format with each values in a rows and columns as a specific character(*). Try-catch block (Exception) is used to handle errors.
Sample Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace codeformatrix
{
class Program
{
static void Main(string[] args)
{
try
{
string i;
string j;
int m;
int n;
int no_of_rows = 0;
int no_of_columns = 0;
Console.WriteLine("Enter the number of rows ");
i = Console.ReadLine();
no_of_rows = Convert.ToInt32(i);
Console.WriteLine("Enter the number of columns ");
j = Console.ReadLine();
no_of_columns = Convert.ToInt32(j);
for (n = 0; n < no_of_rows; n++)
{
for (m = 0; m < no_of_columns; m++)
{
Console.Write(" * ");
}
Console.WriteLine(" \n " );
}
}
catch (Exception e)
{
Console.WriteLine("Exception occured: " + e.Message);
}
}
}
}
Sample Input :
Enter the number of rows: 3
Enter the number of columns: 3
Sample Output:
The matrix format for given number of rows and columns is
* * *
* * *
* * *
Triangle representation –program in C#
A sample program in C# is uesd to display the given charcter in a trianglular format.
Description:
This triangle representation program is used to diplay the given character in a triangular format. In this program, no of rows is taken as input and For loop is used to represent the given character in a triangle format. Conslole.WriteLine is used to display the given character and Console.ReadLine is used to get the input (no_of_rows) value.
Sample code:
using System;
using System.Collections.Generic;
using System.Text;
namespace codefortriangleformat
{
class Program
{
static void Main(string[] args)
{
string j;
int k = 0;
int m = 1;
int i = 1;
int y = 0;
int a = 0;
int no_of_rows = 0;
Console.WriteLine(" Enter the number of rows ");
j = Console.ReadLine();
no_of_rows = Convert.ToInt32(j);
a = (2*no_of_rows) - 1;
y = (a-1)/2;
for (i = 1; i <= no_of_rows; i++)
{
for (a = 0; a < y; a++)
{
Console.Write(" ");
Console.Write(" ");
}
for (k = 0; k < m; k++)
{
Console.Write(" * ");
}
Console.WriteLine(" \n");
m = m + 2;
y--;
}
}
}
}
Sample Input :
Enter the number of rows: 5
Sample Output:
*
* * *
* * * * *
* * * * * * *
* * * * * * * * *

Fibonacci series in C# Program

Desciption:
This is the code fibonacci series is dispalyed. The fibonacci series is the set of values which are unique and come in certain sequence i.e. The first two values 0 and 1 are displayed as per initialization, the next successive values are diaplyed by adding the preceeding two values.
 
C# Code:
using System;
using System.Collections.Generic;
using System.Text;
namespace codeforfibonacciseries
{
class Program
{
static void Main(string[] args)
{
int i = 0;
int j = 1;
int k = 1;
int n = 0;
int m = 0;
m = Console.Read();
m++;
Console.WriteLine("The Fibonacci series values are:");
Console.Write(" {0}, {1}", i,j);
for (n = 0; n <= m; n++)
{
k = i +j;
i = j;
j = k;
Console.Write(" {0} ", k);
}
}
}
}
Sample Output:
The Fibonacci series values are:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597 ….

Wednesday 29 August 2012

USE CASE DIAGRAMS EXAMPLES

Bank ATM system For Use case Diagram










Online shopping system use case diagram







See the example of Sequence Diagram

UML USE CASE DIAGRAM DESIGN FOR ONLINE SHOPING SYSTEM

The Microsoft Word 2007 Complete Notes


Microsoft Word 2007's document types, interface, and some features--very nearly every aspect of this word processor--have changed. With this update, Microsoft Word 2007 becomes a more image-conscious application. New picture-editing tools help you deck out documents and play with fancy fonts. Bloggers and researchers may also benefit. It's easier to get a handle on document security, but those who only need basic typing features may not want to relearn the interface or deal with the new file formats.


Click here to Download this File..

<a title="View Word Full n Final on Scribd" href="http://www.scribd.com/doc/104213957/Word-Full-n-Final" style="margin: 12px auto 6px auto; font-family: Helvetica,Arial,Sans-serif; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: none; font-stretch: normal; -x-system-font: none; display: block; text-decoration: underline;">Word Full n Final</a><iframe class="scribd_iframe_embed" src="http://www.scribd.com/embeds/104213957/content?start_page=1&view_mode=scroll&access_key=key-1lq0is7gg0b1nthtvpeg" data-auto-height="true" data-aspect-ratio="0.772727272727273" scrolling="no" id="doc_49891" width="100%" height="600" frameborder="0"></iframe>

Tuesday 28 August 2012

Define Data Communication and Characteristics

Data communications are the exchange of data between two devices via some
form of transmission medium such as a wire cable. For data communications to occur,
the communicating devices must be part of a communication system made up of a com-
bination of hardware (physical equipment) and software (programs). The effectiveness
of a data communications system depends on four fundamental characteristics: deliv-
ery, accuracy, timeliness, and jitter.

I. Delivery. The system must deliver data to the correct destination. Data must be
received by the intended device or user and only by that device or user.
Accuracy.
7 The system must deliver the data accurately. Data that have been
altered in transmission and left uncorrected are unusable.
3. Timeliness. The system must deliver data in a timely manner. Data delivered late are
useless. In the case of video and audio, timely delivery means delivering data as
they are produced, in the same order that they are produced, and without signifi-
cant delay. This kind of delivery is called real-time transmission.
-\.. Jitter. Jitter refers to the variation in the packet arrival time. It is the uneven delay in
the delivery ofaudio or video packets. For example, let us assume that video packets
are sent every 3D ms. Ifsome ofthe packets arrive with 3D-ms delay and others with
4D-ms delay, an uneven quality in the video is the result.

Download Mozzila Firefox Complete

Tuesday 21 August 2012

Top 10 JOBS In Information Technology

This Post contain to show the top 10 JOBS in information technology...
here are the Information Technology Feild

Information technology (IT) professionals don't always get the best rap. Employees grumble about the help desk, how IT workers think they're so smart - heck, "IT nerd" is even a searchable phrase on the Internet.


Here are the top 10 jobs in IT, based on increases in salary offers, according to the salary guide.


1.?Lead applications developer
What they do: Manage software development teams in the design, development, coding, testing and debugging of applications. **
What you need: Bachelor's degree in computer science or a related field and three to five years experience in specific technologies.
Salary range: $80,250 - $108,000
Salary change*: 7.6 percent


2.?Applications architect
What they do: Design components of applications, including interface, middleware and infrastructure; comply with employer's design standards.
What you need: Bachelor's degree in computer science or information systems; a master's degree is desirable. Employers request a minimum of eight years related work experience and specific software skills.
Salary range: $87,250 - $120,000
Salary change: 7.5 percent


3.?Messaging administrator
What they do: Control e-mail and groupware systems, including associated servers, operating systems, and backup and recovery programs; fix system problems and attend to service requests.
What you need: Bachelor's degree in computer science, computer information systems or a related field, plus two to three years or more of experience working with the messaging systems used by the employer.
Salary range: $87,250 - $120,000
Salary change: 7.5 percent


4.?Data modeler
What they do: Analyze organizational data requirements and create models of data flow.
What you need: Bachelor's degree in computer science, IT or mathematics, and several years of data management experience.
Salary range: $74,250 - $102,000
Salary change: 7 percent


5.?Network manager
What they do: Direct day-to-day operations and maintenance of the firm's networking technology; collaborate with network engineers, architects and other team members on the implementation, testing, deployment and integration of network systems.
What you need: Ten years (or more) experience in a networking environment combined with several years of experience managing technical personnel. Professional certifications are also valuable.
Salary range: $74,500 - $98,500
Salary change: 7 percent


6.?Senior IT auditor
What they do: Establish procedures for audit review of computer systems; develop and apply testing and evaluation plans for IT systems and ensure compliance with industry standards of efficiency, accuracy and security.
What you need: Bachelor's degree in computer science, information systems, business or a related field, and an average of five years experience in IT auditing.
Salary range: $86,750 - $114,750
Salary change: 6.9 percent


7.?Senior Web developer
What they do: Plan and implement Web-based applications; coordinate with product development, marketing, product management and other teams in bringing new applications online.
What you need: Bachelor's degree in computer science, electrical engineering or a related field, plus a minimum of five years of experience working with a mix of Web technologies.
Salary range: $76,250 - $108,250
Salary change: 6.6 percent


8.?Business intelligence analyst
What they do: Design and develop company data analysis and report solutions; review and analyze data from internal and external resources; communicate analysis results and make recommendations to senior management.
What you need: Bachelor's degree in computer science, information systems or engineering, and several years of experience.
Salary range: $78,250 - $108,250
Salary change: 6.6 percent


9.?Help desk (Tier 2)
What they do: Resolve difficult issues that derive from Tier 1 support and require five to 15 minutes to settle; decide when to create work tickets for issues that can't be solved by phone or e-mail and require a visit to the user's workspace.
What you need: Besides patience and a positive attitude, requirements depend on your position level. Tier 2 positions call for two to four years work experience, and a bachelor's degree or a two-year degree and additional work experience in a help desk setting.
Salary range: $35,750 - $46,250
Salary change: 6.5 percent


10.?Staff consultant
What they do: Assist with project planning and requirement specifications; create prototypes and alternatives with colleagues.
What you need: Bachelor?s degree in computer science, business or a consulting-related field. Industry-specific proficiency, plus business experience and two or more years of consulting experience are also typical requirements.
Salary range: $59,250 - $82,250
Salary change: 6.4 percent

How to Start Career in Information technology

Many people love the people in IT (Information Technology). This is a good field but it does not mean that you work with computers only. Helping others use their computers is often a big part of the job. This field is very big. From an ATM machine, to PC techies, to a network administrator to a graphic designer to a webmaster, to the record producer, these people are all in IT.

Help keep Intel moving at the speed of global business as part of the team responsible for building and operating our world-class Information Technology infrastructure. You'll get the chance to analyze, design, and evaluate the latest technologies, help us build our Internet presence by providing data hosting, Internet connectivity, and Web consulting services. You’ll also support a variety of systems, including network infrastructure, O/S and applications, database management, and software security and anti-virus.

Information technology is a very wide field, and if a person is thinking of choosing a career in it, he may have to be very specific as to what he actually wants to do. There are several positions available in this field which may differ according to the responsibilities and duties of the IT professional. Moreover, these professionals are highly paid in comparison to other jobs. Certifications and IT-related trainings are very essential, if one has to prosper in this field, as they are even more important than basic educational qualifications such as bachelor's and master's degree. Furthermore, previous IT experiences also counts. Let's know some of the famous careers in IT one can choose from.

Software Engineering: It is one of the most demanding careers in the information technology sector. The basic requirements to become a software engineer is a bachelor's degree in computer science, though a master's degree may be preferred for senior positions. Software engineers are responsible for coding, linking application modules and functionalities, and locating and correcting errors in a program code. Senior software engineers are responsible for guiding and assisting the junior ones in the tasks they have already performed in the past. The pay scale of junior engineers is $50,000-$60,000 p.a., whereas, for senior engineers, the salary may differ depending on their years of experience.

Database Administrator: An IT professional who handles the administrative work of information databases is known as a database administrator. They are also called DBAs; and carry out database designing, preserve and develop databases, and also perform several tests. They play a vital role in creating and taking backups of data, and ensure that the data is recoverable in the case of an accident. They are involved in planning, coordinating, and implementing security systems to safeguard the company's data. Their pay scale ranges from $70,000 to $95,000. One who wants to become a database administrator should at least possess a bachelor's degree in computer science or have an equivalent experience. Additional qualifications are an added advantage.

Web Developer: The primary job of web developers is to design websites for their clients. They are required to be well-versed in web designing languages such as HTML, XML, CSS, Flash, PHP, etc. They use their coding skills and create websites and web pages which are viewable and compatible with any browser. Moreover, they are proficient in using other applications like Photoshop, Illustrator, Dreamweaver, etc. They have a complete understanding of how websites and web pages work. They may be required to work for longer hours due to the project deadlines. They get paid in a range of $40,000 to $60,000 p.a., however, experienced professional can draw a significant salary.

Featured post

10 Best Ways to Earn Money from Facebook

10 Best Ways to Earn Money from Facebook Facebook is a household name all over the world. The social networking platform has more than...