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 […]
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 […]
Python codes for interview preparation
Palindrome: A palindrome is a word, sentence, verse, or number that reads the same backward or forward. For example: madam, level, noon, etc # Python program to check if a string is palindrome or notx = input(‘Enter a number or string:’)# make it suitable for caseless comparisonx = x.lower()# reverse the stringrev_x = reversed(x)# check […]
Python Programming – Fundamental codes for logic development
#Python program to find the max of 2 nmbers (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: […]