Skip to content
  • Contact me
  • About me
  • Demo
  • DemoForm
  • TechStuff
Top Menu
Facebook page opens in new windowFacebook page opens in new windowX page opens in new windowYouTube page opens in new window
qavalidation
QA tools and automation testing techniques
qavalidationqavalidation
  • HOME
  • Selenium
    • Selenium-Java
    • Selenium-Python
    • Demo2
  • Appium
    • Appium tutorial
  • WebdriverIO
  • JavaForQA
    • Java interview questions for QA
    • ExcelRW
    • TestNG
  • More
    • Cypress
    • TestingBasics
    • MavenBuild
  • Training
Search:
  • HOME
  • Selenium
    • Selenium-Java
    • Selenium-Python
    • Demo2
  • Appium
    • Appium tutorial
  • WebdriverIO
  • JavaForQA
    • Java interview questions for QA
    • ExcelRW
    • TestNG
  • More
    • Cypress
    • TestingBasics
    • MavenBuild
  • Training

Monthly Archives: February 2017

You are here:
  1. Home
  2. 2017
  3. February

Print prime numbers in java

JavaForQABy sunil patroFebruary 21, 2017Leave a comment

A prime number which can not be divided by any other number except 1 or by itself. The only even prime number is 2. All other even numbers can be divided by 2. Zero and 1 are not considered prime numbers. e.g – 3 – prime number (3 can not be divided by any other…

Difference between WebDriver and FirefoxDriver

SeleniumTestingBy sunil patroFebruary 15, 2017Leave a comment

  WebDriver is an interface FirefoxDriver is a class, which inherit RemoteWebDriver class that implements WebDriver interface.  

Easy ways to check Armstrong number in java

JavaForQABy sunil patroFebruary 14, 2017Leave a comment

An Armstrong number is an n-digit number that is equal to the sum of the nth powers of its digits. e.g – Numbers 1 to 9 (1 digit, so to the power 1) 1^1 = 1, 2^1 = 2, 3^1 = 3 Number 371 (3 digit, so to the power 3) 371 is of 3 digits, so sum…

Print fibonacci series numbers in java

JavaForQABy sunil patroFebruary 2, 2017Leave a comment

Fibonacci series numbers – A particular sequence of integers logic – First two numbers are 0 and 1, then next subsequent integer will be sum of the previous 2 numbers let’s see few easy ways to achieve this – public static void main1(String[] args) { int max = 10; int prev = 0; int next =…

All rights reserved | qavalidation
  • Contact me
  • About me
  • Demo
  • DemoForm
  • TechStuff
Top Menu
Go to Top