JavaScript for Beginners: Understanding the BasicsLet’s first describe about the data types in JavaScript there are 3 types of datatypes they are var, let const var can be redeclared and reassigned var x=10 var x=23 console.log(x) //23 these is allowed in var Let can be re assigned but not re-declar...Apr 3, 2025·2 min read
The Basics of Display: Flex in CSS for Beginnersdisplay: flex A one dimensional layout system (either in rows or columns ,but not in both directions simultaneously. Items are aligned in main axis (horizontal by default). These helps to align and distribute space among items in a container. Propert...Jan 10, 2025·5 min read
Understanding CSS Float: A Beginner's GuideWhat is float property? float in CSS is used to position an element to left or right within its containing block ,allowing text or inline elements to flow around it . PROPERTY VALUES: left: The element is floated to the left of its container. Content...Jan 8, 2025·2 min read
Understanding CSS Box-Sizing: A Complete GuideLearn how box-sizing affects element width and height calculations.Jan 8, 2025·2 min read
Mastering Table Design in HTML for BeginnersTables are generally the combination of rows and columns. Tables allows the user to arrange the data into rows and columns. Which makes easier to understand. Table Definition:<td> Each table cell is defined by <td> and a </td> tag. td stands for tabl...Jan 8, 2025·2 min read
A Guide to Spring Container BasicsSpring / spring boot frameworks we get two IOC containers They are a)Bean Factory b)Application Context Spring/Spring Framework are given for two basic operations: 1) Spring Bean Life Cycle Management activities are: loading spring bean ,creating the...Jan 8, 2025·2 min read
Data Base Management SystemSQL IS CATEGORIED INTO 5 TYPES BASED ON OPERATION ON DATABASE THEY ARE: 1).DDL[Data Definition Language] example: create ,truncate ,alter, flashback, rename, drop 2).DML[Data Manipulation Language] example: update ,delete ,insert, insert all, merge 3...Jan 8, 2025·1 min read