Apply waterfall model for railway reservation system?
i need water fall model of railway reservation system.
Why does int has the same range as short?
The int is a data type in c, c++ or java, It can divided in to two parts that is short and long. Int short if of same size as int (2).
Why you chose Software testing as a Career?
In the recessation market of IT I think testing is the only industry which is showing a growth of 30% every year. Moreover it is not dependent on any technology so if one technology market say Java is down that does not mean you cannot have a testing project. In all technologies you need a testing team to test your application. As a rule of thump 30% of your team should be part of QA.
So joining testing means securing your career.
Difine what is fixed tapped resistor?
This is usually a resistance wire wound resistor that has a physical connection on the body of the resistor called a tap. It about the same as tapping a water line to attached a hose line to your icemaker.
Answer
It is difficult for the customers to state the requirements clearly and well understood at the beggning.
Why grasshopper operating system called as a grasshopper?
because it does simultaneous action for accessing the memory.
Relay are mainly use to isolate one source from another. It is old technology new circuits can surpass that requirement.
What is limitation of prototyping process model?
The prototype is not used as final product hence may require extra cost.Participation of user and customer feedback is not always possible.
How do you determine the size of a structure?
Add up the sizes of the individual pieces, plus the slack space between them that might be there (depending on the computer, compiler, and options) for memory alignment purposes. In C or C++, you can usually use the sizeof() operator to determine this.
For IT seminar, the topics could be:
Cloud computing
Android
Ethical hacking
or on any new technology .
Who created the SPR Software Productivity Research website?
The Software Productivity Research (SPR) website was created by Capers Jones. The website offers the latest news, articles, and research in the world of software metrics.
What qualifications abilities and strong points will help you succeed in this position?
Job applicants need to think about this question in two ways:
Personal skills and qualities may be hard to define, especially for younger adults. An easy way to prepare for this question is to think of 5 things you like about yourself and what you really enjoy doing. For example, a list might include:
Then, ask your family and friends to tell you 5 single words that describe you. The words might include negatives, so you will need to identify the opposite word for each negative. So as an example, you are:
Now, let's say you are applying for an entry-level customer service job with a cable company. The job involves taking calls from customers when their service has a repair problem. The company uses computers to track calls and resolution of problems. You'll be expected to answer at least 1 call every 10 minutes and to either resolve the problem or to transfer the call to the right department. You will be expected to do basic trouble-shooting for the customer's Internet connection.
On a job application or in an interview, take the qualities you identified and tailor your skills to the job you are applying to do, but don't lie. For example: I'm experienced with basic troubleshooting steps for re-establishing an Internet connection between a home computer and a cable modem. (The interviewer might ask you to list those steps.) My friends say I'm laid-back and because I enjoy listening to people's problems, it's easy for me to quickly realize the major concern a customer has. If I don't know an answer, I can recognize when I might need additional help in order to fully assist the customer.
These basic steps in identifying personal skills and qualities can be done for any type of job.
In what situations that the impact printer is a better choice than the non-impact printer?
An impact printer makes its image by striking the paper through an ink ribbon, using a hammer in the shape of the image (think typewriter hammer) or with wires that make dots (think dot-matrix printer). The advantage of the impact printer is that it can make multiple copies at the same time, either when you use multi-part paper with interleaved carbon paper, or with special paper (NCR type paper) that is pressure sensitive. A non-impact printer, such as a laser or ink jet printer can not do this. Multiple copies must be made by running multiple sheets of paper through the printer. One case of an impact printer is in a point-of-sale situation, where you want a copy for the store, another copy for the customer, another copy for billing, etc. While you can do this with non-impact printers, one advantage is auto-collation, and another is that you can write on the top copy (think "Paid on a certain date") and that will transcribe to the other copies.
Why software engineering is neither a form of science nor an arts?
Were it art, the product would be meaningful only in invoking thought or providing a comforting sense of beauty. I mean, you don't use a painting or a concerto for something other than enjoying the painting or concerto. Unless you're breaking prisoners of war with them or something.
Were it science, the product could be replicated over and over again by others in other organizations and come up with the exact same result. I'm not talking about duplicating CDs or packaging distros; I mean when one wanted to connect to a database, one would use the proven method that had been established, basically, by Isaac Newton. Software development is not that way; its experiments-that is, the development of individual projects or products-do not yield a similar result when done over a series of time and in different location.
Where is the UFIDA software engineering company?
UFIDA Software Engineering Co., Ltd. is dedicated to providing world-class information technology services to clients across the world. Leveraging 20 years experience of UFIDA, we offer full range of professional software outsourcing services such as software products development, application development & maintenance and testing, with flexible models including offshore development center (ODC), onsite service and total project outsourcing. Headquartered in Beijing, USE has its branches in USA, Japan and other big cities of China, including Shanghai, Dalian, Xi'an, and Chengdu, with expertise in divers technologies including Java/J2EE, .NET, C++, etc... USE, the CMMI 5 and ISO 27001 certified company offers improved scale, efficiencies and a combined talent pool to deliver quality-centric, cost-effective, and scalable IT outsourcing services to all our customers. * Address: No 68, Beiqing Road, Haidian District, Beijing 100094, P.R. China * Phone: 86-10-62431717-31847 * Fax: 86-10-62431800 * E-mail: zhuwei@use.com.cn
What is the data type for a company's profit?
Although it may seem obvious that currency should be represented by some floating point data type, floating point values are merely approximations, and these approximations can introduce rounding errors that can be difficult to predict. For instance, when dealing with Sterling, we physically deal with whole pounds (£) and hundredths of a pound (pennies). However, tax and interest rates are typically expressed as percentages, so we inevitably need to introduce fractions of a penny into our calculations, rounding up or down to the nearest penny. But a penny is already a fraction (one hundredth of a pound), so we immediately lose two digits of precision before we've begun.
In order to retain the precision we require, we need to introduce a scalar, such that we deal in whole pence rather than whole pounds. A scalar of 100 would allow us to treat £1.23 as if it were really 123 pence. Now we can store monetary values as integers instead of floating point values and that alone can have a significant benefit in terms of performance (integer arithmetic is significantly quicker than floating point arithmetic).
We still have the problem of how to deal with unpredictable rounding errors that might occur within the fractions of a penny we create when working with percentages. However, this is easily resolved by raising our scalar by a higher power of 10. Thus a scalar of 1000 would mean our 123 pence then becomes 1230 tenths of a pence, while a scalar of 10,000 would create 12,300 hundredths of a pence. That's about as much precision as we require for currency values. We could go further, but we have to keep in mind that the greater the scalar, the lower the range of values we can represent.
Assuming twos-complement signed notation, a 32-bit signed integer can accommodate whole values in the range -2,147,483,648 through 2,147,483,647. With a scalar of 10,000, this would accommodate all monetary values in the range £-214,748.3648 through £214,748.3647. While adequate for many smaller businesses, this would be highly unsuitable for large corporations with a profit/loss in excess of this range. However, each additional bit doubles the range such that a 64-bit integer could easily accommodate all monetary values in the range £-922,337,203,685,477.5808 through £922,337,203,685,477.5807.
So, the data type we actually use will be an integer, typically a 64-bit integer. However, in order to make the integer more intuitive and easier to work with, it will ideally be encapsulated by a class that can also encapsulate a user-defined scalar and currency enumerator (such as GBP or USD). In this way, users can work with actual currency in real numbers, such as pounds and pence (including fractions of a penny where appropriate), while the class performs its calculations upon the scaled integer and presents the result back to the user in pounds and pence.
XML stands for "eXtensable Markup Language." It is a method of marking information with tags very similar to HTML. By marking data with these tags, you can easily programatically parse data. Example: John 20 Male Sue 35 Female
How do you move Scoresaver 2 to a different computer without paying for it?
Contact the manufacturer.