Blog

Resume Preparation – Skills – 2

Hello, In our Resume Preparation – Skills series, this is part 2.  In this post, we are going to discuss about various skills set needed for Java, J2EE and Android skills. Iet me iterate the same thing which I stressed in the previous post. Very important note here is, you should know your skill set prior […]

Read More

Resume Preparation – Skills – 1

Hi Everyone, In this series, we are going to see about resume preparation. While preparing resume, it is very essential to mention the necessary skill sets. The main focus of this article is going to be updating necessary skills for various jobs in IT. Let us see for Software Testing jobs at first. For a […]

Read More

Add Two Numbers without using Addition Operator

Most Probable Interview Question: Add two numbers without using Addition Operator by both normal and Recursion method.  The condition given here is, we should not use Addition Operator.  Let us think about other ways now as we are restricted not to use + operator. Logic is, Bitwise operator can be used for solving this problem.  First, we […]

Read More

Learn Java Typecast through simple programs

Hi friend, This blog will help to better understanding of typecasting of datatypes in Java. PROGRAM: public class TypeCasting { public static void main(String[] args) { int a = 140; byte b =(byte) a; System.out.println(b); } } OUTPUT : -116 EXPLANATION: This type of type casting will have loss of data. Lets see how 140 […]

Read More

Addition of Consecutive Digits in a given Number Program

Addition of Consecutive Digits in a given Number Program In this blog we are going to discuss about Addition of Consecutive Digits in a given Number Program . They are illustrated very well below : ______________________________________________________________________________________ Hi, In this post, we are going to discuss Addition of Consecutive Digits in a given Number program. Add numbers […]

Read More

Alphabet in ZigZag Pattern with Answer

Hi Friend, Today we can see about how alphabets can be displayed in ZigZag pattern using array method in Java. Here i made it in 5 row. It can be done simple decision making concept. The first understanding of this pattern program is the characters can be printed in row by row manner. So firt […]

Read More

Mainframe Interview Questions with Answers – Part I

Mainframe Interview Questions with Answers – Part I  This blog explains about Mainframe Interview Questions with Answers – Part I . It is illustrated below .  _____________________________________________________________________________________ Hi, This is Geetha.  I have 11 years of experience in IT Industry.  Mainly I spent my time in Mainframes and team management.  Here, I started sharing Mainframe Interview […]

Read More

W Pattern Programming Questions in Java

W Pattern Programming Questions in Java This blog explains about W Pattern Programming Questions in Java . It is explained very well below : ______________________________________________________________________________________ Here, we are implementing a java program that will print a pattern like ‘W’ alphabet using stars. It is a pattern printing program in java. Given number of rows for pattern and […]

Read More

CanGo Networks – Interview Questions with Answers

In this post, we will discuss about CanGo Networks – Interview Questions with Answers. 1) What is the output for the below code snippet? public class CanGo { int a = 1111; static { a—–a; } static { a+++++a; } public static void main(String[] args) { System.out.println(a); } } Output: Will throw Compilation error saying […]

Read More

Software Testing – What I should focus?

This is the primary question – in Software Testing – What I should focus? for everybody who enters into Software Testing.  Here with, I have mentioned some of the major things which should be given enough importance while testing software. Files Related Testing: If we test downloading a File, We should test Special Characters in […]

Read More