निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = {'A', 'F', 'R', 'Y'}</code></pre>
निम्नलिखित कथन के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statement?<pre><code>m = True</code></pre>
निम्नलिखित कथनों के बाद m का डेटा प्रकार क्या होगा?<break-line><break-line>What will be the data type of m after the following statements?<pre><code>true = "Honesty is the best policy"
m = true</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'}
print(m.keys())</code></pre>
निम्नलिखित बयानों के बाद आउटपुट क्या होगा?<break-line><break-line>What will be the output after the following statements?<pre><code>m = {'Listen' :'Music', 'Play' : 'Games'}
print(m.values())</code></pre>