Browse by Domains

Java

reversed linked list

How to find Array Length in Java

Java Array Length: How do you find the length of an array? The length attribute of Java holds the number of elements in the array. In Java, there is no predefined method by which you can find the length of an array. But you can use the length attribute to find the length of an […]

How to find Array Length in Java Read More »

JSP Interview Questions

Top 45 JSP Interview Questions and Answers- 2022

In the early days, there were various tools to develop dynamic web content such as Common Gateway Interface (CGI), mod_perl from Apache, ISAPI from Microsoft. All of them tried to generate web pages by embedding HTML directories into a programming language. Creating dynamic web pages enters the realm of programmers due to this. Java Server

Top 45 JSP Interview Questions and Answers- 2022 Read More »

Top 5 Data Science Programming Languages

Choosing a Language for Your Data Science Projects For freshers and graduates looking to break into the world of data science, picking the right programming language can be a make or break decision. This guide to programming languages and their uses will help enhance students’ knowledge of data science-related languages and encourage them to make

Top 5 Data Science Programming Languages Read More »

Java Server Pages

Reflection in Java

Introduction Reflection of Java Classes Reflecting Constructors, Methods and Fields Advantages of Reflection Introduction Reflection in java is an Application Programming Interface (API) that is used for examining or modifying the behaviour of interfaces, methods, classes at runtime. The java. lang. Class classes provide many different methods that can be used for metadata, examine and

Reflection in Java Read More »

Multithreading in Java

String manipulation in java

What is a string?  String manipulation is a sequence of characters. They are widely used in Java. In java, strings are used to create objects. It is not a primitive type and is used to create and store immutable things. Simply you can take it as constant because you can’t change it once created. In

String manipulation in java Read More »

Java Servlet

Java Servlet

Introduction When we go through the timelines of our social media websites or make our favourite purchase on the e-commerce website, or search for something in Google, we use the term ‘Server’ to refer to the remote entity which responds to all our ‘requests’. The requests are nothing but our requirement for information from our

Java Servlet Read More »

java

Java Super Keyword and Wrapper Class

Introduction Super Keyword in Java Wrapper Classes in Java Conclusion Introduction Java is an object-oriented programming language that uses objects, classes and multiple keywords. One such is ‘super’ the name as it suggests means that a user creates a bridge between the child class and the parent class (superclass). Talking about Wrapper classes these are

Java Super Keyword and Wrapper Class Read More »

Scroll to Top