निम्नलिखित स्टेटमेंट के बाद आउटपुट क्या होगा ?<break-line><break-line>What will be the output of the following statements?<pre><code>import math
print(math.pow(3,2))</code></pre>
निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>import datetime
print(datetime.datetime.today())</code></pre>
A.Displays current date and time
B.Displays a list of all the hours remaining till midnight
निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>from datetime import *
print(getattr(datetime.today(),'hour'))</code></pre>
A.Displays current date and time
B.Displays a list of all the hours remaining till midnight
निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>from datetime import *
print(getattr(datetime.today(),'year'))</code></pre>
निम्नलिखित कथन क्या करते हैं?<break-line><break-line>What does the following statements do?<pre><code>from datetime import *
print(datetime.today().strftime('%A'))</code></pre>