Compile time constant and Risk public static final variables are also known as a compile-time constant, the public is optional there. They are replaced with actual values at compile time…
Author: kumaresan
What is a good team lead in your opinion?
Posted in Education, and WhoCodeFirst
What is the most important quality for the team lead? The strongest side of team lead (IMO) is human skills. The main task of team lead is to support morale…
Repeated Substring Pattern
Posted in Education, and WhoCodeFirst
Given a non-empty string check if it can be constructed by taking a substring of it and appending multiple copies of the substring together. You may assume the given string…
Decode a Binary Message
Posted in Education, and WhoCodeFirst
We are going to see how to decode a binary message using JavaScript. A message that was in binary format : 01010100 01101000 01100001 01110100 00100111 01110011 00100000 01110011 01101111…
Staircase Problem
Posted in Education, and WhoCodeFirst
Consider a staircase of size n=4 ###### Observe that its base and height are both equal to n, and the image is drawn using # symbols and spaces. The last…