en
Feedback
Data Science & Analytics

Data Science & Analytics

Open in Telegram

🌟 Your hub for courses from platforms like Udemy, Coursera, EdX, and more! 📚 Explore top recommendations for books and learning resources. 🎯 Stay updated on the latest job opportunities in Data Science and Analytics. @Ahmedneamatallah

Show more
4 477
Subscribers
No data24 hours
+37 days
+1030 days
Posts Archive
هل ارسل المزيد من الأسئلة؟
Anonymous voting

What will be the output of the following Python expression if x=56.236? print("%.2f"%x)
Anonymous voting

Which of the following is not a core data type in Python programming?
Anonymous voting

What will be the output of the following Python function? min(max(False,-3,-4), 2,7)
Anonymous voting

The following python program can work with ____ parameters. def f(x): def f1(*args, **kwargs): print("Sanfoundry") return x(*args, **kwargs) return f1
Anonymous voting

Which of the following is the use of id() function in python?
Anonymous voting

Which of the following functions is a built-in function in python?
Anonymous voting

What will be the output of the following Python code? l=[1, 0, 2, 0, 'hello', '', []] list(filter(bool, l))
Anonymous voting

Which of the following is the truncation division operator in Python?
Anonymous voting

What are the values of the following Python expressions? 2**(3**2) (2**3)**2 2**3**2
Anonymous voting

Which of the following is true for variable names in Python?
Anonymous voting

What does pip stand for python?
Anonymous voting

What will be the output of the following Python code snippet if x=1? x<<2
Anonymous voting

What is the order of precedence in python?
Anonymous voting

Python supports the creation of anonymous functions at runtime, using a construct called __________
Anonymous voting

Which of the following functions can help us to find the version of python that we are currently working on?
Anonymous voting

What will be the output of the following Python code? i = 1 while True: if i%3 == 0: break print(i) i + = 1
Anonymous voting

Which of the following character is used to give single-line comments in Python?
Anonymous voting

Which keyword is used for function in Python language?
Anonymous voting

Which of the following is used to define a block of code in Python language?
Anonymous voting