Home > Anand Trasad

Macros for record and replay of browser actions

ObjectiveBasic use of iMacros for performing repetitive day-to-day tasks in the web browser.About iMacrosiMacros is a browser-based macro recorder and is free. It allows you to easily record web surfing and replay it. The web browser is probably the most frequently used software today, but many tasks are repetitious: checking

This Article is TAGGED in , . Read more

Early involvement of testing team in requirement phase

ObjectiveThe main objective of early involvement of testing team in the requirement phase is to prevent the defects in requirements. Otherwise these defects will be passed on to the design and coding phases. When the application comes to testing it becomes expensive to fix these defects as these are incorporated

This Article is TAGGED in , , , . Read more

Flowchart in Software Engineering / Testing

What is FlowchartA pictorial representation of an algorithm is called a 'Flowchart'. In flowchart, the steps in the algorithm are represented in the form of different shapes of boxes and the logical flow is indicated by interconnecting arrows. The boxes are used to represent different operations and the arrows are

This Article is TAGGED in , . Read more

Testing of the website translated from English to other languages

Testing Translated Content:-One may follow the below approach for testing the translated website:-Always refer the reference document to verify the translated content, no need to use any other external translators and thereby no guess work.The content in the reference document should exactly match with the content in the website otherwise

This Article is TAGGED in . Read more

Method overloading in Java – Part 1

What is method overloading in Java?If two or more methods in a class have same name but different parameters, it is known as method overloading. Method overloading is one of the ways through which java supports polymorphism. Method overloading can be done by changing number of arguments or by changing

This Article is TAGGED in , , , , , . Read more

Method overloading in Java – Part 2

Method overloading with type promotion:One type is promoted to another implicitly if no matching datatype is found. Let's understand the concept by the figure given below: Example: Method Overloading with Type Promotion[crayon-662b774db2eeb836376854/][crayon-662b774db2ef5703452511/]If there are matching type arguments in the method, type promotion is not performed:Example: Method Overloading with Type Promotion if

This Article is TAGGED in , . Read more

Method Overriding in Java: – PART-2

 Real example of Java Method Overriding:-Consider a scenario, Bank is a class that provides functionality to get rate of interest. But, rate of interest varies according to banks. For example, SBI, ICICI and AXIS banks could provide 5%, 6% and 7% rate of interest. [crayon-662b774db37f2199369260/] [crayon-662b774db37fb429515467/]Advantages of method overridingThe main advantage of

This Article is TAGGED in , , . Read more