This Blog Demonstrates and help the user to skilled up in Salesforce And Automation Testing through multiple article on Automation testing , Selenium, Appium, Interview Questions, SQL, Java Programs with output and manual testing also.
HTTP Status Codes 1. 2xx class of status codes indicates that the action request by client was received and processed successfully without any issues. 2. 3xx class of status code indicates the client must take additional …
Difference between Set and List Interface in JAVA List 1.List an Ordered grouping of elements i.e.Maintain order of added Element(add the element in List and print on Consol). 2.List can contain duplicate elements 3.New …
package javaPrograms; import java.util.Scanner; public class PalindromeNumber { public static void main(String args[]) { int reversedNumber=0; System.out.println("Enter no to test palindrome or not")…
package javaPrograms; import java.util.Scanner; public class FibonacciSeries { public static void main(String arr[]) { Scanner sc=new Scanner(System.in); int a=0,b=1; System.out.println("Enter no. to rep…
package javaPrograms; import java.util.Scanner; public class ArmstrongNumber { public static void main(String a[]) { Scanner sc=new Scanner(System.in); System.out.println("enter no to verify Armstrong no.&qu…
package Prog; /** * The Class StringOperations //multiline comment */ public class StringOperations { public static void main(String a[]) throws ArrayIndexOutOfBoundsException { String str="my name is An…
package Prog; import java.util.Scanner; public class Factorial { public static void main(String args[]) { int n; Scanner sc=new Scanner(System.in); System.out.println("Enter the no. for factorial&quo…
package Prog; import java.util.Scanner; public class PrimeNo { public static void main(String a[]) { System.out.println("Enter no. to verify, prime or not"); Scanner sc=new Scanner(System.i…
HTML Page <html> <head><title>Selenium webdriver - Selecting checkbox based on table value or specific value</title> </head> <body> <table border=2> <tr> …
package Prog; import java.util.Scanner; public class BubbleSort { public static void main(String a[]) { Scanner sc=new Scanner(System.in); System.out.println("Enter no. of intger to be sort" ); …
package Prog; import java.util.Scanner; public class AddMatrix { public static void main(String a[]) { System.out.println("Enter the rows and columns of matrix"); Scanner sc=new Scanner(Sys…
package Prog; /** * The Class Addition. */ public class Addition { /** * The main method. * * */ public static void main(String args[]) { Addition a=new Addition(); a.sum(); } /** *…
Social Plugin