Google a word using QTP

Quick Test Professional (QTP) is an automation testing tool by Hewlett Packard that help automation engineers to create and execute almost any type of test on an application. In this post, l just want to write a little function that you can use to google a word and choose one of the links that showed up in […]

Read More

Java Program to calculate the Angle in degrees between the hour and minute hand of a clock

import java.util.Scanner; /** * * @author Vincent Amedekah */ public class TimeAngle { public static void main(String[] args) { String time = null; String timeArray[]; int hr,min; double hrAngle, minAngle,diffAngle; Scanner scan = new Scanner(System.in); System.out.print(“Enter the time:”); time = scan.nextLine(); timeArray = time.split(“:”); hr = Integer.parseInt(timeArray[0]); min = Integer.parseInt(timeArray[1]); hr = hr % 12; […]

Read More