Blog

Adding two byte/short values cannot store in same datatype

Hi Friends, Today we going to see about reason why two byte/short cannot be store in same datatype. In general, the value assign to variable can be convert into binary format. byte a = 5; byte b = 4; byte c = a + b; The line 3 will have compile error, even though the […]

Read More

Software Testing Interview Scenario Based Questions

Hi, we will discuss about various Software Testing Interview Scenario based questions here with.  In every software testing interview, the candidates will be requested to write test cases.  Usually, organizations will ask us write scenarios for which we know the functionality already. Eg.  Write test cases for pen, Please share test cases for a chair, […]

Read More

Data Types: Storing character in integer and vice versa with Program

Data Types: Storing character in integer and vice versa with Program This blog explains about Data Types: Storing character in integer and vice versa with Program and is given below : _______________________________________________________________________________ Hi Friends, Today, we are going to see about how to Data Types: Storing character in integer and vice versa with Program  store character […]

Read More

Find Even or Odd without using if and switch case

Find Even or Odd without using if and switch case This blog explains about how to Find Even or Odd without using if and switch case and is illustrated below : _______________________________________________________________________________ Hi Friends, Today, we are going to find Even or Odd Without using if and switch case.  The question asked here is – Write a […]

Read More

Learn Programming through Logical Thinking Series – 12

Learn Programming through Logical Thinking Series – 12 This blog explains about Learn Programming through Logical Thinking Series – 12 and is given below :  _______________________________________________________________________________ Hi Guys, Logic in programming is a fundamental key to be a good developer. Maybe, depending of your job place you are going to use more algorithms or not. If you are […]

Read More

Learn Programming through Logical Thinking Series – 11

Learn Programming through Logical Thinking Series – 11  This blog explains about Learn Programming through Logical Thinking Series – 11 and is given below : _______________________________________________________________________________ Print a ‘Y’ shaped pattern from asterisks in N number of lines. Note: N is even. Input: The first line of input contains an integer T denoting the number of test […]

Read More

Learn Programming through Logical Thinking Series – 10

Learn Programming through Logical Thinking Series – 10 This blog explains about Learn Programming through Logical Thinking Series – 10 and is given below :  _______________________________________________________________________________ Hi, In today’s post, we discuss about printing X pattern.  Already we know how to use looping statements in Java.  Here I am using while – nested while looping statements […]

Read More

Learn Programming through Logical Thinking Series – 9

Learn Programming through Logical Thinking Series – 9 This blog explains about Learn Programming through Logical Thinking Series – 9 and is given below : _______________________________________________________________________________ In this series, probably this could be the toughest program I ever tried.  Already our colleague Srilatha Akka shared the logic for this program in the previous post  in C Language […]

Read More

Learn Programming through Logical Thinking Series – 8

This is one of the toughest questions, we discussed in our Programming class.  I spent almost 3 hours (or even more than that) to solve the below program.  My trainer asked to work on printing the below pattern program. I wrote in C language.  Please go through the program below.  As it is mainly dealing […]

Read More

Learn Programming through Logical Thinking Series – 7

Learn Programming through Logical Thinking Series – 7 This blog explains about Learn Programming through Logical Thinking Series – 7 and is given below : _______________________________________________________________________________ Learn Programming through funny ways!  Here, we are going to solve Profit and Loss related Aptitude through our Logical Thinking series. QUESTION A, B, C subscribe Rs. 50,000 for a […]

Read More