javadevpro.hashnode.devJava Basics and OOPS basicsNEED OF LOOP Loops is the set of instructions which runs multiple times based on the given conditions. Based on the Condition there are 3 types of looping methods: for loop while loop do while loop FOR LOOP The for loop is used to iterate over a...Nov 13, 2025·6 min read
javadevpro.hashnode.devJAVA BASICS Part 2TOPICS COVERED: WRAPPER CLASS As we know that there are two types of data types in the Java i.e. Primitive and Non- Primitive. As Java Collections don’t work with the Primitive Data Types . So the Wrapper class converts the Primitive data type into ...Oct 21, 2025·4 min read
javadevpro.hashnode.devJava Basics Part 1INTRODUCTION TO JAVA PROGRAMMING Java is the high level , object-oriented and platform-independent programming language developed by the James Gosling and his team at Sun Microsystems in 1995. It is one of the most popular languages in the world, kn...Oct 20, 2025·5 min read
sohamsandbhor.hashnode.devDay 6 of Python ProgrammingPoints to be Covered:- if __name__=="__main__" Method Enumerate Function Local and Global Variable Errors in Python Project on Functions (caesar cipher) if name == "__main__" Method This method is used to Assign a special value to the varia...Jul 1, 2025·6 min read
cbasic-to-advanced-by-tim-buchalka.hashnode.devDay 10 of C:Basic to Advanced : StringsINTRODUCTION String is basically a sequence of characters or symbols between a pair of double quotes “__” in which the characters of different data types can also be stored in a string. Strings basically stores every character/symbol of the given s...Jan 25, 2025·3 min read