
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
Vikram Chiluka has Published 249 Articles

Vikram Chiluka
2K+ Views
In this article, we will learn a Python program to find unique elements from a tuple. Methods Used The following are the various methods to accomplish this task − Using for loop and append() function Using collections.Counter() function Using set() function Tuples are an immutable, unordered data type ... Read More

Vikram Chiluka
2K+ Views
In this article, we will learn a python program to find the maximum element of each row in a matrix. Assume we have taken an NxN input matrix. We will now find the maximum element of each row in an input matrix using the below methods. Methos Used The following ... Read More

Vikram Chiluka
1K+ Views
In this article, we will learn the python program for getting the least frequent element in an array. Methods Used The following are the various methods to accomplish this task − Using sort() function(Naive Approach) Using Hashing Using Counter() Function Method 1: Using sort() function(Naive Approach) Running two ... Read More

Vikram Chiluka
5K+ Views
In this article, we will learn how to decode and encode hexadecimal digits using python. Methods Used Using binascii module Using the base64 module Method 1: Using Binascii Module There are several methods to convert between binary and different ASCII-encoded binary representations in the binascii module. Use ... Read More

Vikram Chiluka
2K+ Views
In this article, we will learn a python program that prints out the decimal equivalents of 1/2, 1/3, 1/4, . . . ,1/10. Methods Used The following are the various methods to accomplish this task − Printing Decimal Equivalent of 1/2 Using the range() function Using the decimal module ... Read More

Vikram Chiluka
3K+ Views
In this article, we will learn a python program to efficiently compute sums of diagonals of a matrix. Methos Used The following are the various methods to accomplish this task − Using Nested For Loops Using Only Single Loop In a matrix we have two diagonals − ... Read More

Vikram Chiluka
438 Views
In this article, we will learn a python program to check if a matrix is lower triangular. Assume we have taken an input matrix. We will now check whether the input matrix is lower triangular using the below methods. Methos Used The following are the various methods to accomplish this ... Read More

Vikram Chiluka
2K+ Views
In this article, we will learn a Python program to check if a number is a Perfect Square in a List. What is a Perfect Square? A perfect square is an integer that can be written as the square of another integer. It is referred to as the product of ... Read More

Vikram Chiluka
3K+ Views
In this article, we will learn a python program to check if a matrix is symmetric. What is a Symmetric Matrix? If the transpose of a square matrix matches the original matrix, the matrix is said to be symmetric. By changing from row to column and from column to row, ... Read More

Vikram Chiluka
6K+ Views
In this article, we will learn a Python Program to calculate Profit Or Loss. The following are the different methods to accomplish this task − Using If Conditional Statements Using the abs() function. What are the selling price, cost price, and Profit and Loss? The price a consumer ... Read More