Nikitasha Shrivastava

Nikitasha Shrivastava

52 Articles Published

Articles by Nikitasha Shrivastava

Page 6 of 6

What are the differences between “untyped” & “dynamically typed” programming languages?

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 15-Mar-2026 2K+ Views

When learning different programming languages, you may come across terms like untyped and dynamically typed. While they may sound similar, they represent different concepts in how programming languages manage data types. In this article, we will explore these concepts with clear examples and comparisons. What is an Untyped Language? Untyped programming languages do not have strict data type definitions. Variables can hold any type of value without explicit type declarations, and the language treats all data as a uniform type internally. Example of Untyped Behavior JavaScript demonstrates untyped characteristics where variables can hold any value: ...

Read More

How to optimize the performance of Python regular expression?

Nikitasha Shrivastava
Nikitasha Shrivastava
Updated on 16-Jun-2025 4K+ Views

Python provides a regular expression-specific built-in library named "re". You only need to import it to use its features (such as search, match, findall, etc.). They'll provide you back a Match object with helpful techniques for modifying your outcomes. According to Wikipedia, regular expressions (also known as regexp) are collections of characters that specify a search pattern. It is a tool that enables you to filter, extract, or alter a series of characters. It has also been discovered that regular expressions function more quickly when the "in" operator is used. Regular expressions have performance difficulties and are generally difficult to debug and maintain. ...

Read More
Showing 51–52 of 52 articles
« Prev 1 2 3 4 5 6 Next »
Advertisements