Data Warehouse Vs Data Lake vs Data Lakehouse What is a Data warehouse? A data warehouse is a type of data management system that[…]
Read moreAuthor: parmsingla

Quick Tips On Cracking DP-203 Certification
I recently completed my DP 203 certification. My learning and tips to prepare for the exam. If you are a[…]
Read moreMachine Learning For Beginners 1: Must Know Terminologies
Data model: Data model involves providing an ML algorithm (that is, the learning algorithm) with training data to learn from. The term[…]
Read morePython : Playing with Linked list
Create linked list and add node at the beginning class node: def __init__(self, p_data): self.data=p_data self.next=None class[…]
Read morePython: Find Whether A String Could be Palindrome or Not
str=”amalaylam” flag=0 for i, c in enumerate(str): print (i,c,ascii(c),str.count(c)) if (str.count(c))%2 != 0: flag=flag+1; if flag>1:[…]
Read moreData Structure and Algorithm Interview Questions With Python
Find whether a string could be palindrome or not? Linked list creation with add node at the beginning Linked list[…]
Read moreExam 70-776: Perform Big Data Engineering on Microsoft Cloud Services
Design and Implement Complex Event Processing By Using Azure Stream Analytics (15-20%) Ingest data for real-time processing What is Stream[…]
Read more