How to Host a Simple Java Application on AWSI Let ChatGPT Write this ArticleDec 9, 2022·2 min read·289
Fundamentals of JavaLearn about keywords, identifiers, literals, data types, operators, separators and comments in JavaJun 26, 2022·7 min read·152
Java Platform ArchitectureIntroduction A platform is an environment in which programs run. Common examples are Windows, Ubuntu and macOS. The Java platform differs from these platforms because it is a software-only platform running on top of other hardware-based platforms. Ja...Jun 15, 2022·5 min read·173
Introduction to JavaJava is a high-level, object-oriented, robust and secure programming language used for application development. History of Java Patrick Naughton, an engineer at Sun Microsystems, was frustrated at Sun’s APIs and tools that were using C and C++. He ...Jun 5, 2022·3 min read·426
Tips to Start Programming in JavaLet's start with a burning question that is always discussed in the developer community. 🤔 Is it worth learning Java now? With programming languages like JavaScript and Python surpassing Java in popularity and usage, one would think Java has lost i...Jun 3, 2022·3 min read·207
Java Solution - LeetCode Problem 9 Palindrome NumberProblem Description: Given an integer x, return true if x is palindrome integer. An integer is a palindrome when it reads the same backward as forward. For example, 121 is a palindrome while 123 is not. Link to the problem Solution: class Solution ...Feb 27, 2022·1 min read·166