A Friend in Need is a Friend in Deed.
Become a Member at ITTreats.com !! Share Your invaluable Experience to Fellow Programmers. Signup, Start Blogging and support fellow Techies.

coding standards in JAVA

introduction having worked as a software developer and consultant for many years, i have seen a large amount of code in a variety of programming languages. it has run the gamut from elegant to ugly, and unfortunately much of it has been ugly. i hope to persuade you, and my fellow developers, that we should give as much attention to the style of our code as we give to the user interface and other .. .. ..

Created By : bhaskar

SCJP Practice questions – 1

questions ________________________________________ question 1) what will happen when you attempt to compile and run this code? abstract class base{ abstract public void myfunc(); public void another(){ system.out.println(“another method”); } } public class abs extends base{ public static void main(string argv[]){ abs a = new abs(); a.amethod(); } public void .. .. ..

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

Created By : bhaskar

Best practices for JAVA Programmers

there are many standards and best practices for java developers out there. this article outlines ten most basic rules that every developer must adhere to and the disastrous outcomes that can follow if these rules are not followed. 1. add comments to your code. –everybody knows this, but somehow forgets to follow it. how many times have you “forgotten” to add comments? it is true .. .. ..

Pages: 1 2 3

Created By : bhaskar

Pagination using JSP

pagination in jsp custom jsp taglib for paging. this taglib takes some data and dynamically splits up this information into several pieces (pages) as well as generates automatically an index for available pages. you have seen some like this many times in any search engine for example: a list of data plus some index with links to next pages. so body tag paging is a common wrapper. body tag item .. .. ..

Created By : bhaskar

SCJP 1.5 syllabus

how is the scjp 1.5 exam different from the scjp 1.4? · exam objectives: several important new language features have been added, including enums, generics, static imports, and autoboxing/unboxing. api features added to the exam include java.lang.stringbuilder, java.util.locale, java.util.formater, java.util.scanner. java.util.regex.pattern, and java.util.regex.matcher. java io features have .. .. ..

Pages: 1 2

Created By : bhaskar

Glossary of Software Testing/QA Terms

source: the following definitions are taken from glossary of computerized system and software development terminology audit. (1) (ieee) an independent examination of a work product or set of work products to assess compliance with specifications, standards, contractual agreements, or other criteria. see: functional configuration audit, physical configuration audit. (2) (ansi) to conduct an .. .. ..

Pages: 1 2 3 4 5 6 7

Created By : babafakruddin

Software Testing Life Cycle Explained

software testing life cycle consists of six (generic) phases: test planning, test analysis, test design, construction and verification, testing cycles, final testing and implementation and post implementation. read the rest of this entry .. .. ..

Created By : babafakruddin

Software Testing Interview Questions

test automation job interview questions: 1. what automating testing tools are you familiar with? 2. how did you use automating testing tools in your job? 3. describe some problem that you had with automating testing tool. 4. how do you plan test automation? 5. can test automation improve test effectiveness? 6. what is data – driven automation? 7. what are the main attributes of test .. .. ..

Created By : babafakruddin

Software Testing in Detail

software testing is probably the most complex task in the software development cycle. it often takes longer to test the software than it does to write the code. the problems discovered during the software testing phase add more time onto the coding phase, resulting in further delays in the product’s release, and so this vicious cycle goes. it’s nearly impossible to attribute the .. .. ..

Pages: 1 2

Created By : babafakruddin

Software testing Outline

1. the software life cycle an introduction to the fundamental elements of the software life cycle, and several life cycle models that are commonly in use. also, how testing is integrated into the life cycle. a. life cycle models b. types of testing and where they fit in i. unit testing ii. regression testing iii. integration testing iv. system testing read the rest of this entry .. .. ..

Pages: 1 2 3 4

Created By : babafakruddin