Dec 21, 2020Spring MVC…Spring MVC helps in building flexible and loosely coupled web applications. the model-view-controller design pattern helps in separating the business logic, presentation logic, and navigation logic. models are responsible for encapsulating the application data. the views render a response to the user with the help of the model object. …4 min read4 min read
Dec 14, 2020Spring Framework…Spring Framework is an open-source framework for building web applications with Java as a programming language. It is a powerful lightweight application development framework used for Java Enterprise Edition (JEE). …6 min read6 min read
Dec 7, 2020Servlet and JSP…Servlet JSP technologies are the backbone of Java EE programming. A Web application contains an application’s resources, such as servlets, JavaServer Pages (JSPs), JSP tag libraries, and any static resources such as HTML pages and image files. …5 min read5 min read
Nov 30, 2020CSS GridCSS grid is a powerful tool that allows for two-dimensional layouts to be created on the web. It offers a grid-based layout system, with rows and columns, making it easier to design web pages without having to use floats and positioning. A grid layout consists of a parent element, with…4 min read4 min read
Nov 30, 2020CSS FlexboxCSS flexbox layout allows us to easily format HTML elements. It is a set of properties in CSS introduced to provide a new layout system. Flexbox makes it simple to align items vertically and horizontally using rows and columns. Flexbox allows us to layout elements in a container, arrange them…4 min read4 min read
Nov 23, 2020Normalization in DatabaseEnormous data is store in the database and it will be very difficult to manage, update, delete, or retrieve data from the database if it is not stored in an organized manner. Normalization is a way to organize the data and minimize the redundancy of the data. In this blog…5 min read5 min read
Nov 17, 2020Java Collections Framework…The collection framework provides a well-designed set of interfaces and classes for storing and manipulating a group of data as a single unit or collection. The Collection interface and Map interface are the two main “root” interfaces of Java collection classes. The Collection Interfaces11 min read11 min read
Nov 15, 2020Time complexity of AlgorithmsSometimes, there is more than one way to solve a particular problem. So It is important to find the most efficient way to solve the problem. Analysis of algorithms is very important while solving problems in computer science. To solve a problem in an efficient way we need to learn…5 min read5 min read
Nov 9, 2020Inheritance In Java…Java is an approximately 100% object-oriented programming language. Everything which we deal with in java is an object or part of an object(except primitive data types).Java OOPs concept provides features like Inheritance, Encapsulation, Abstraction, Polymorphism. …4 min read4 min read