Skip to content

Instantly share code, notes, and snippets.

View hssh99's full-sized avatar
πŸ‘¨β€πŸ’»
developing

Harshal Shirke hssh99

πŸ‘¨β€πŸ’»
developing
View GitHub Profile
@hssh99
hssh99 / python_notes.py
Created September 20, 2025 09:02
python for interviews
"""
Python for Coding Interviews
"""
"""
1. Variables
"""
# Variables are dynamically typed
# Types are determined at runtime
@hssh99
hssh99 / DotNetNotes.md
Last active May 20, 2025 17:02
asp.net interview questions

.NET Interview Questions

  1. OOPS advantages & disadvantages in c#
  • Benefits: Security, Re-usability (because of Inheritance), Structured Code
  • Object, Class, Inheritance, Polymorphism, Abstraction, Encapsulation
  • OOPS provide a clear structure for the software's and web applications.
  • advantages:
@hssh99
hssh99 / stl.cpp
Created December 23, 2024 14:07
cpp stl notes
#include <bits/stdc++.h>
using namespace std;
// c++ stl is divided into 4 parts:
// - Algorithms
// - Containers
// - Functions
// - Iterators