Problem 1: Create a 1D NumPy array containing the numbers from 1 to 10. Then, calculate the square of each number in that array without using a loop.

Problem 2: Create a 1D NumPy array containing the numbers from 15 to 25. Extract and print only the even numbers from this array.

Problem 3: Create a 1d NumPy array containing the numbers from 0 to 8. Reshape this array into a 3x3 two-dimensional matrix. Then, extract the value in the center of the matrix.