Posts

Image
 Data Driven Decision Making B.Com Business Analytics Sem I Questions (6-10) : Python   Q6. Write a program to assign three values to the variables a, b and c            and perform the operations addition, multiplication, ((a+b)+c),          ( a-(b+c)), (a*(b+c)), (a + (b*c)), (a*(b-c)).           #Write a program to assign three values to the variables a, b and c     and perform the operations addition, multiplication, ((a+b)+c),   (a-(b+c)), (a*(b+c)), (a + (b*c)), (a*(b-c)).    a =  int ( input ( 'Enter a number of your choice' ))           b=  int ( input ( 'Enter a number of your choice' ))      c=...
Image
 Data Driven Decision Making B.Com Business Analytics Sem I Questions (6-10) : Python   Q6. Write a program to assign three values to the variables a, b and c            and perform the operations addition, multiplication, ((a+b)+c),          ( a-(b+c)), (a*(b+c)), (a + (b*c)), (a*(b-c)).           #Write a program to assign three values to the variables a, b and c     and perform the operations addition, multiplication, ((a+b)+c),   (a-(b+c)), (a*(b+c)), (a + (b*c)), (a*(b-c)).    a =  int ( input ( 'Enter a number of your choice' ))           b=  int ( input ( 'Enter a number of your choice' ))      c=...
Image
ADVANCE DATA VISUALIZATION PRACTICAL QUESTION BANK NOTES (Q11-Q20) B.COM – BUSINESS ANALYTICS SEM V GLOBAL SUPER STORE ORDERS LINK        Global Super Store Data      Import Global Super Store Data from your files.      11. Percentage of total sales for each ‘Ship mode’.              Step1: Click on data           Step2: Click on New Measure on Table Tool Bar           Step3: Enter “ Total Sales = Sum(O rders [S ales ])” and then click                          on tick mark.           Step4: A new field gets added “Total Sales”           Step5: Go to “Report” just above the “Data”         Step6 : Then select the table from Visualizations.       ...
Image
     Data Driven Decision Making     B.Com (Business Analytics)                                          Sem I   Questions from 1 to 5 :: PYTHON         Q1.  Write a program to print the following sentences, Hello Everyone and                   Welcome to the world of Python.           #program starts here           print ( "Welcome to python class" )      Q2. Write a program to print two statements “Hello World” and “I                     am learning Python”.           a.     Concatenate the strings       ...