Aishwarya Naglot has Published 180 Articles

Difference between Java and JavaScript.

Aishwarya Naglot

Aishwarya Naglot

Updated on 14-Nov-2024 11:03:37

1K+ Views

As we know, both Java and JavaScript are programming languages and are used in application development. But there are significant differences between the languages, which we will discuss below. Java Java is a high-level language that is also a platform-independent language. It is mainly used in the development of web ... Read More

Difference between Servlet and JSP

Aishwarya Naglot

Aishwarya Naglot

Updated on 14-Nov-2024 10:41:35

7K+ Views

Both Servlets and JSP are used in web development. The Servlets handle the logic (processing our requests and interacting with databases), and JSPs handle the presentation (displaying dynamic content on the web page). By separating the logic and presentation, our web applications become more manageable and scalable. In brief, we ... Read More

What are different operators and expressions used in C language?

Aishwarya Naglot

Aishwarya Naglot

Updated on 12-Nov-2024 10:37:28

14K+ Views

Operators are special symbols in C that performs an operation on values and variables. These special symbols allow us to manipulate data and variables in different ways. Those Operators are classified into the following − Arithmetic operators. Relational operators. ... Read More

Number of pairs with maximum sum in C++

Aishwarya Naglot

Aishwarya Naglot

Updated on 12-Nov-2024 10:33:30

468 Views

We need to find a number of all the pairs that has the maximum sum, In a given array of integers. A pair consists of two numbers, and the sum is simply the result of adding them. We will see multiple solutions to this problem, starting with a naive (brute ... Read More

Create a Date object using the Calendar class in Java

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 19:35:20

2K+ Views

In Java, we can create a date object using the calendar class, which gives us more control on date and time. We will discuss the process in this article. What is the Calendar class? In order to understand the usage of we must know what is the calendar class. The ... Read More

Multiply Strings in C++

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 15:46:46

9K+ Views

We have given two strings consisting of integers and can have lengths up to 200. both strings do not contain any leading 0, but 0 as the number itself can be present. We have to multiply integer strings, so we need to find a solution. Let's see how we can ... Read More

Natural Numbers in C++ Program

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 15:30:26

4K+ Views

In this article, we will cover C++ programs to work with natural numbers. we use natural numbers in various operations, such as indexing arrays, performing loops, and validating user input. we will also write code to demonstrate how natural numbers can be used for these purposes in C++. Natural Numbers ... Read More

Difference between Groovy and Java

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 15:23:48

1K+ Views

Programmers have been using scripting languages for quite some time. When it comes to Linux and Unix computers, scripting languages were mostly utilised for things like scripting tasks that automate platform customizations, software installations, and one-shot command line jobs with bash scripts. Groovy is an authentically creative language that runs ... Read More

Explain the pre-processor directives in C language

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 13:16:35

7K+ Views

The pre-processor is a tool that processes the source code before it passes through the compiler. It work as an initial phase of compilation where it operates under the control of different command lines or directives. Pre-processor Directives in C Pre-processor is placed in the source program before the main ... Read More

What are primary data types in C language?

Aishwarya Naglot

Aishwarya Naglot

Updated on 11-Nov-2024 13:14:18

10K+ Views

Fundamental Data Types in C Primary data types, also known as fundamental data types, are built-in data types in C. C compilers support four fundamental data types. They are as follows − Integer Character Floating-point Double precision floating-point Primary data types are the building blocks for storing and ... Read More

Advertisements