Articles on Trending Technologies

Technical articles with clear explanations and examples

Runtime JAR File in Java

Shriansh Kumar
Shriansh Kumar
Updated on 15-May-2023 935 Views

The full form of JAR is Java Archive File. Java provides this feature to bundle multiple java program files as well as their corresponding class files into one single unit. Perhaps, it is the only file format that can store audio, video, text files and so forth in one place. In this article, we will discuss how we can create and access a JAR file in Java. Java JAR File The need for data compression was felt to store and transmit large amounts of data without any hassle. For this purpose, a ZIP file was introduced that encouraged Java creators ...

Read More

What are differences and Similarities between the Indian Council Act [1861,1892,1909]?

Naresh Soni
Naresh Soni
Updated on 15-May-2023 2K+ Views

Introduction The British government passed the Indian Council Acts in 1861, 1892, and 1909, which were significant pieces of legislation for the administration of British India. These actions had a big impact on the political landscape of India and how the British government interacted with the Indian population. In this article we will tell you about What are differences and Similarities between the Indian Council Act [1861, 1892, 1909]? These laws all had different clauses and goals, but they also had some things in common. What Was the Indian Councils Act 1861? The Indian Councils Act 1861 was an ...

Read More

Union of States: A Comprehensive Guide to India\'s Federal System

Naresh Soni
Naresh Soni
Updated on 15-May-2023 281 Views

Introduction Union of states: The constitution of India Defines the structure of Indian Federal system and its key specialties as Union of States. This is why, in Indian competitive examinations, “The Union of states” is a very important topic for candidates. In this article, we are going to inform and educate you almost everything about Union of states such as Meaning of Union of States, Constitutional Provisions related to Union of States & why India is Union of States. So, let’s start- What is Meaning of Union of States? To understanding it in a smooth way, the Union of States ...

Read More

Rounding off errors in Java

Shriansh Kumar
Shriansh Kumar
Updated on 15-May-2023 1K+ Views

While writing codes we all do various mistakes that lead us to errors like overflow errors and syntax errors. Rounding-off error is one of the common errors that may result in a wrong solution for a given mathematical problem. Generally, this error occurs when we work with floating point numbers. In this article, we will explore the reason for this problem and try to find a way to get rid of this kind of error. Rounding off Errors Floating Point Types They are also known as real numbers and are used when the calculation requires fractional values. It represents numbers ...

Read More

The Meaning and Significance of India\'s Citizenship

Naresh Soni
Naresh Soni
Updated on 15-May-2023 804 Views

Introduction The Meaning and Significance of India's Citizenship: Indian Citizenship is a very important Topic of Indian Polity. If you are preparing for Competitive exams in India, then you should have to know about The Meaning and Significance of India's Citizenship in detail. We have provided you all the related information about The Meaning and Significance of India's Citizenship with proper details in this article. So, let’s start- The Meaning and Significance of India's Citizenship India's citizenship refers to the legal status of an individual as a citizen of the country, based on the Citizenship Act, 1955. The Constitution of ...

Read More

Python Program to Recursively Linearly Search an Element in an Array

Gireesha Devara
Gireesha Devara
Updated on 15-May-2023 3K+ Views

Linear search is the simplest method of searching for an element in an array. It is a sequential searching algorithm that starts from one end and checks every element of the array until the desired element is found. Recursion means a function that calls itself, while using a recusive function we need to use any loop to generate the iterations. The below syntax demonistrates the working of a simple recursion function. def rerecursiveFun(): Statements ... rerecursiveFun() ... rerecursiveFun Linear Search of an Element ...

Read More

The Interim Government of 1947: A Stepping Stone Towards Independence

Naresh Soni
Naresh Soni
Updated on 15-May-2023 393 Views

The Interim Government of 1947 The Interim Government of 1947 paved the way for the end of the struggle to free our nation from British rule. India made a significant advancement towards achieving self-governance and asserting its sovereignty with the establishment of this government. The Interim Government's history, significance, and role in laying the groundwork for India's eventual independence are all covered in this article. We will examine the significant figures, occasions, as well as how they influenced India's future as a country. What Led to The Formation of Interim Administration? Interim Government of India was established as a ...

Read More

Python Program To Find the Trace and Normal of a given Matrix

Gireesha Devara
Gireesha Devara
Updated on 15-May-2023 3K+ Views

A matrix is defined as a set of numbers arranged in rows and columns. A matrix with m rows and n columns is called an m X n matrix and m and n are called its dimensions. A matrix is a two dimensional array, which is created by using lists or NumPy arrays in python. The Trace of a Matrix The trace of a matrix is defined as the sum of its diagonal elements (i.e, elements from upper left to lower right ). Calculating the Trace of a matrix can be possible only for a square matrix (i.e., the matrix ...

Read More

The Drafting Committee of India\'s Constitution: Key Members and Contributions

Naresh Soni
Naresh Soni
Updated on 15-May-2023 2K+ Views

Drafting Committee for India’s Constitution The Indian Constitution is an outstanding piece of writing that has stood the test of time and continues to serve as the cornerstone of the largest democracy in the world. The Drafting Committee is a group of outstanding individuals who are the inspiration behind this colossal work of law, politics, and philosophy. When tasked with drafting the Constitution, these pioneers rose to the occasion with extraordinary fervour and skill. The important members of the Drafting Committee, their contributions, and their effects on the creation of the Indian Constitution will all be covered in ...

Read More

Python Program to Multiply to Matrix Using Multi-dimensional Arrays

Gireesha Devara
Gireesha Devara
Updated on 15-May-2023 582 Views

A matrix is a set of numbers arranged in rows and columns. A matrix with m rows and n columns is called an m X n matrix and m and n are called its dimensions. A matrix is a two dimensional array, which is created by using lists or NumPy arrays in python. In general, Matrix multiplication can be done by multiplying the rows of the first matrix by the column of the second matrix. Here, the number of columns of the first matrix should be equal to the number of rows of the second matrix. Input Output Scenarios Assuming ...

Read More
Showing 21891–21900 of 61,248 articles
Advertisements