Category: Uncategorized
Trip to KarmanGhat Hanumaan Temple, Hyderabad
The Karmanghat Hanuman Temple is one of the oldest and most popular Hindu temples in Hyderabad, Telangana, India. The temple is dedicated to Lord Hanuman, but also houses other deities […]
Trip to Bengaluru-July 2024
Visit to Gati Subramanya and Boganandeeswara Temple, Nadhi Hills. The Bhoga Nandeeshwara Temple, situated near Nandi Hills in Chikkaballapur district, Bengaluru, is an ancient Hindu temple complex dating back to […]
AddGitGist
<script src=”https://gist.github.com/umas-iit/7aa0d61b2a8c30bb0e1e16580e045f61.js”></script>
Arrays
Arrays: An array is a collection of items stored at contiguous memory locations. The idea is to store multiple items of the same type together. This makes it easier to […]
Stacks
STACK Stack is a linear data structure which follows a particular order in which the operations are performed. The order may be LIFO(Last In First Out) or FILO(First In Last […]
Python Lists
Lists List is written as a list of comma-separated values (items) between square brackets. List is that items in a list need not be of the same type. For example […]
LinkedLists
Lists The list is a most versatile datatype available in Python which can be written as a list of comma-separated values (items) between square brackets. Important thing about a list […]