Home

Science and Technology

Keep Discovering, Inventing, Innovating…

Aspiration


Discover

Discover the new. The latest updates regarding new discoveries in Scence.

Invent

Invent the new. We are here to expand our boundaries by new inventions.

Innovate

Innovate the world. Innovate the new in technologies and science research.


Try with latest updates

Science and Technology Updates


Namaste and Welcome to the blog!!

Bit Manipulation Basics

(Python) Let’s have a quick review of Bit Manipulation techniques in Python. Bitwise Operators Operator Description Example & Bitwise AND a & b ` Bitwise OR a ` b ^ Bitwise XOR a ^ b ~ Bitwise NOT ~a << Left Shift a << n >> Right Shift a >> n Example Program Output: a…

Keep reading

Types of AI

Artificial Intelligence (AI) is a trending technology around the world. Let’s understand its types. What is AI? Artificial Intelligence (AI) is the capability of a computational system to pursue human intelligence, like learning, reasoning, perception, problem solving, and decision making. Types of AI Types of AI based on capabilities: Narrow AI (Weak AI): Narrow AI…

Keep reading

Object Oriented Programming – Polymorphism 

What is Polymorphism? Polymorphism means “many forms”.In OOP, it allows the same method name (or operator) to behave differently depending on the object or data type it is acting upon. It helps in: Types of Polymorphism in Python Python mainly supports runtime polymorphism (method overriding) and compile-time-like polymorphism (method overloading via default arguments or *args). 1. Polymorphism with Functions and Objects A single function…

Keep reading

Something went wrong. Please refresh the page and/or try again.

One reply on “Home”

Leave a comment