Day 1: if else

In Java, if-else is a control flow statement used to execute certain blocks of code based on whether a condition is true or false. Syntax: ⛶if (condition) { // Code to execute if conditi...
0 Read More

📆 10.5 Datas inválidas

✅ 1. Calendar permite datas inválidas silenciosamente Código exemplo: ⛶Calendar instante = Calendar.getInstance(); instante.set(2014, Calendar.FEBRUARY, 30); SimpleDateFormat dateFormat = new Si...
0 Read More

☕Java programming language Notes

☕Java programming language Notes
💻 Sharing my ☕ Java notes!✨ I’ve put together topic-wise notes on Java that are super easy to follow and understand. Great for anyone learning or revising Java!☁️ Feel free to check them ...
0 Read More

Day 11:Naming Convention java class

Should be followed by camelcase should be start with uppercaseletter should be avoid start with small letter,hyphen,numbers,specail charcter not allowed naming convention used for Developers can ...
0 Read More