Posts

Showing posts from March, 2025

ML LAB

Scipy practice questions with solutions   dataset for pandas practice                                            pandas practice questions

Numpy Practice Questions

  Numpy practice questions 1)       Create an array using numpy library 2)       Create 2-D, 3-D array and display the dimension and type of array 3)       Create an array with values ranging from 100 to 120 4)       Demonstrate linspace() , logspace() functions 5)       Write a program to create another shape from an array without changing its data 6)       Write a program to create an array of 10's with the same shape and type as the given array. Ex [10 10 10 10] 7)       Write a program to create a 3-D array with ones on a diagonal and zeros else wh ere 8)       Write a program to create an array size 3x3 of ones and zeros. 9)       Create an array with 6 random integers between 10 and 20 10)    Write a program to find the 4th...