
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Gireesha Devara has Published 248 Articles

Gireesha Devara
6K+ Views
Strings in Python can contain any sequence of characters, including letters, numbers, symbols, and whitespace. It can represent text, numbers, or any other type of data that can be represented as a sequence of characters. In Python, strings are enclosed in single quotes ('') or double quotes (""). Multiline strings ... Read More

Gireesha Devara
334 Views
A meter is the fundamental unit of length in the International System of Units (SI) and is used worldwide. It is defined as the length of the path traveled by light in a vacuum during a time interval of 1/299, 792, 458 of a second. Meters are commonly used in ... Read More

Gireesha Devara
4K+ Views
When working with text processing and analysis tasks, it is frequently required to count the vowels, lines, and characters in a text file. The goal is to determine the total counts of vowels, lines, and characters present in the file. Python provides various methods and techniques that can be used ... Read More

Gireesha Devara
7K+ Views
When working with text processing and analysis tasks, it is often necessary to count the words in a text file. The objective is to determine the total number of words present in the file. Python offers several modules and functions that can efficiently and effectively perform word-counting tasks. In this ... Read More

Gireesha Devara
2K+ Views
Blank spaces in a text file refer to the empty spaces or gaps between words, sentences, or characters. These spaces are typically represented by the space character (' ') or other whitespace characters, including tab ('\t'), newline (''), carriage return ('\r'), form feed ('\f'), and vertical tab ('\v'). These characters, ... Read More

Gireesha Devara
817 Views
A dictionary in Python is an unordered collection of key-value pairs. It is a data structure that allows you to store and retrieve values based on a unique key associated with each value. Keys in a dictionary are used to uniquely identify values, and they must be immutable, such as ... Read More

Gireesha Devara
4K+ Views
Float to exponential conversion involves transforming a decimal number, represented as a float, into exponential notation, also known as scientific notation. Exponential notation is commonly used for expressing very large or very small numbers in a concise manner, particularly in scientific and mathematical calculations. On the other hand, a float ... Read More

Gireesha Devara
2K+ Views
Exponential notation also known as scientific notation, is a way to express numbers that are very large or very small using a combination of a coefficient and an exponent. It is commonly used in scientific and mathematical calculations. In exponential notation, a number is expressed as the product of a ... Read More

Gireesha Devara
9K+ Views
Roman numerals are a numeral system that originated in ancient Rome. They were widely used throughout the Roman Empire and continue to be used in certain contexts today. Roman numerals are based on a combination of letters from the Latin alphabet to represent numeric values. The basic symbols used in ... Read More

Gireesha Devara
1K+ Views
In Python, a list is a collection of items or elements that can store multiple values. It is one of the built-in data types in Python and is commonly used for storing and organizing data. A list is represented by square brackets [], and the elements within the list are ... Read More