Extract number from string excel

How to extract numbers from string in excel? This article will help you with the approach and give you a clarity of logic that you can use in excel function to extract numbers. Let us understand different types of data that we can have. Predominantly, there are three different scenarios.  numbers at the end (right […]

Read more

Python codes

Python program to find the max of 2 numbers (using if) a=int(input(“Enter first number: “))b=int(input(“Enter second number: “))if a>b: print(a,’is the greater number’)elif b>a: print(b,’is the greater number’)else: print(‘Both the numbers are same’) Python program to find the max of 2 numbers (using function) a=int(input(“Enter first number: “))b=int(input(“Enter second number: “))if a==b: print(‘Both the numbers […]

Read more

Data Science Interview Questions

Q1:What is Data Science? Data science is the study of data using statistical techniques and computer programming to predict what will happen,  recommend what is good, find association, understand pattern, etc. t is a multidisciplinary approach that combines principles and practices from the fields of mathematics, statistics, and computer engineering to analyze large amounts of […]

Read more

Tableau Interview Question and Answers in 2022

Tableau Interview Question and Answers in 2022 Q1: What is Tableau? Tableau is a Business Intelligence and Analytics software that is used to create visualizations and dashboards to provide actionable insights. Q2: What is data visualization? Data visualization means representing the information using visuals like charts, maps, colors (to highlight performance), heatmap, etc. This helps […]

Read more

Python Interview Questions

1) What is Python? Ans: Python is a high-level, interpreted, general-purpose programming language. It is an object oriented programming language and is used across industry for several purpose like Application Development, Data Science, Analytics, Machine Learning, Web Development, Games Development, etc. 2) What are the different data types Python? Data types in python are: – Numbers […]

Read more