यदि उपयोगकर्ता ने 55 दर्ज किया है तो आउटपुट क्या होगा?<break-line><break-line>What is the output, if user has entered 55 ?<break-line><break-line><pre><code>a=input("Enter a number")
print(type(a))</code></pre>
a=5, b=8, c=6 के लिए निम्नलिखित एल्गोरिथम का आउटपुट क्या होगा?<break-line><break-line>What will be the output of the following algorithm for a=5, b=8, c=6 ?<break-line><break-line><pre><code>Step 1: Start
Step 2: Declare variables a,b and c.
Step 3: Read variables a,b and c.
Step 4: If a > b
If a > c
Display a is the largest number.
Else
Display c is the largest number.
Else
If b > c
Display b is the largest number.
Else
Display c is the greatest number.
Step 5: Stop</code></pre>