Sign Up

Have an account? Sign In Now

Sign In

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

Sorry, you do not have permission to ask a question, You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

SIKSHAPATH

SIKSHAPATH Logo SIKSHAPATH Logo

SIKSHAPATH Navigation

  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Home
  • Questions
  • Blog
    • Computer Science(CSE)
    • NPTEL
    • Startup
  • Shop
    • Internshala Answers
  • About
    1. Asked: February 18, 2022In: Python

      Python Program to check whether a given number is a palindrome.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 19, 2022 at 10:26 am

      #Python Program to check whether a given number is a palindrome. number=int(input('Enter any number :')) temp=number reverse_num=0 while (number>0):     digit=number%10     reverse_num=reverse_num*10+digit    number=number//10 if (temp==reverse_num):     print('The number is palindrome!') else:  Read more

      #Python Program to check whether a given number is a palindrome.
      
      number=int(input('Enter any number :'))
      
      temp=number
      
      reverse_num=0
      
      while (number>0):
      
          digit=number%10
      
          reverse_num=reverse_num*10+digit
      
         number=number//10
      
      if (temp==reverse_num):
      
          print('The number is palindrome!')
      
      else:
      
          print('Not a palindrome!')
      
      See less
        • -1
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    2. Asked: February 18, 2022In: Python

      Python Program to check whether a given number is a palindrome. Python Program to check Whether entered number is Armstrong …

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 19, 2022 at 10:24 am

      #Python Program to check whether a given number is a palindrome. number=int(input('Enter any number :')) temp=number reverse_num=0 while (number>0):     digit=number%10     reverse_num=reverse_num*10+digit    number=number//10 if (temp==reverse_num):     print('The number is palindrome!') else:  Read more

      #Python Program to check whether a given number is a palindrome.
      
      number=int(input('Enter any number :'))
      
      temp=number
      
      reverse_num=0
      
      while (number>0):
      
          digit=number%10
      
          reverse_num=reverse_num*10+digit
      
         number=number//10
      
      if (temp==reverse_num):
      
          print('The number is palindrome!')
      
      else:
      
          print('Not a palindrome!')
      
      
      
      
      
      #Python Program to check Whether entered number is Armstrong or Not?
      
      num = int(input("Enter a number: "))
      
      sum = 0
      
      temp = num
      
      while temp > 0:
      
         digit = temp % 10
      
         sum += digit ** 3
      
         temp //= 10
      
      
      
      
      if num == sum:
      
         print(num,"is an Armstrong number")
      
      else:
      
         print(num,"is not an Armstrong number")
      
      
      
      
      
      
      
      #Python Program to Take three numbers from the user and print the greatest number
      
      num1 = float(input("ENTER FIRST NUMBER : "))
      
      num2 = float(input("ENTER SECOND NUMBER : "))
      
      num3 = float(input("ENTER THIRD NUMBER : "))
      
      
      
      
      if (num1 >= num2) and (num1 >= num3):
      
         largest = num1
      
      elif (num2 >= num1) and (num2 >= num3):
      
         largest = num2
      
      else:
      
         largest = num3
      
      print("The largest number is", largest)
      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    3. Asked: February 18, 2022In: Other

      A documentation style is a standard approach to the citation of sources that the author of a paper has consulted, …

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 18, 2022 at 10:34 am

      ANSWER: c. Both (1) and (2) are correct.

      ANSWER: c. Both (1) and (2) are correct.

      See less
        • 0
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    4. Asked: February 17, 2022In: Other

      How to create RJ45 connector with tools

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 17, 2022 at 10:06 pm

      GO THROUGH THE BELOW LINK FOR ANSWER :   https://sikshapath.in/question/create-a-worksheet-which-elaborates-the-different-transmission-medias-and-steps-to-create-the-connector-to-make-a-ethernet-connection/

      GO THROUGH THE BELOW LINK FOR ANSWER :

       

      Create a worksheet which elaborates the different transmission medias and steps to create the connector to make a ethernet connection …

      See less
        • 2
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    5. Asked: February 16, 2022In: Other

      Implement all the networking commands and show their working as output.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 17, 2022 at 7:45 pm

      JUST TAP ON THE BELOW ATTACHMENT FOR ANSWER: VOTE UP THE ANSWER!

      JUST TAP ON THE BELOW ATTACHMENT FOR ANSWER:

      VOTE UP THE ANSWER!

      See less
      Attachment

        • 10
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    6. Asked: February 16, 2022In: Python

      Write a  program c to enter two numbers and perform all arithmetic operations.

      I'M ADMIN
      I'M ADMIN
      Added an answer on February 16, 2022 at 7:01 pm

      SUPPORT US BY VOTING UP ANSWERS : #PYTHON num1 = float(input("Enter Your first number: ")) num2 = float(input("Enter Your second number: ")) # Addition print("\nAddition: ",num1 + num2) # Subtraction print("\nSubtraction: ",num1 - num2) # Multiplication print("\nMultiplication: ",num1 * num2) #DivisRead more

      SUPPORT US BY VOTING UP ANSWERS :
      #PYTHON
      num1 = float(input("Enter Your first number: ")) 
      num2 = float(input("Enter Your second number: "))
      
      # Addition
      print("\nAddition: ",num1 + num2)
      
      # Subtraction
      print("\nSubtraction: ",num1 - num2)
      
      # Multiplication
      print("\nMultiplication: ",num1 * num2)
      
      #Division
      print("\nDivision: ",num1 / num2)
      
      # Modulus
      print("\nModulus: ", num1 % num2)
      
      
      See less
        • 4
      • Share
        Share
        • Share on WhatsApp
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
    1 … 80 81 82 83 84 … 122

    Sidebar

    store ads

    Stats

    • Questions 1k
    • Answers 1k
    • Posts 149
    • Best Answers 89
    • This Free AI Tool Translates Entire Books in Minute !
    • AI News: 🎬 Hollywood’s AI Studios, 🎓 OpenAI’s Latest Gift to Educators, 🚚 Class8 Bags $22M, 🧠 Google Gemini’s Memory Upgrade
    • AI NEWS: Legal Action Against OpenAI, $16M Paid, & Elon Musk’s Praise from Investor 🤖💰📑 | AI Boosts Cloud Seeding for Water Security 🌱💧
    • AI News: 🎬AI Video Tool Scam Exposed🤯, 🛰️ AI-Powered Drones to Ukraine 😱, Google’s $20M AI Push, Sam Altman Joins SF’s Leadership Team
    • AI News: 🤝 Biden Meets Xi on AI Talks, 💡 Xavier Niel’s Advice for Europe, ♻️ Hong Kong’s Smart Bin Revolution, 🚀 AI x Huawei

    Explore

    • Recent Questions
    • Questions For You
    • Answers With Time
    • Most Visited
    • New Questions
    • Recent Questions With Time

    Footer

    SIKSHAPATH

    Helpful Links

    • Contact
    • Disclaimer
    • Privacy Policy Notice
    • TERMS OF USE
    • FAQs
    • Refund/Cancellation Policy
    • Delivery Policy for Sikshapath

    Follow Us

    © 2021-24 Sikshapath. All Rights Reserved