Mayank Tomarmayanktomar.hashnode.dev·Oct 2, 202425 Essential Coding Questions to Build a Strong Foundation (With Explanations)Learning a new programming language can be a challenging yet rewarding experience. To build a strong foundation, practicing key coding problems is essential. This article presents 25 essential coding questions, divided into five categories: Numbers, ...1 likeTop25
Amrutha Damruthadronamraju.hashnode.dev·Oct 26, 2023Ruby Vs PythonRuby Vs Python: What are the Differences? comparison of the differences between the Ruby and Python programming languages. The provided information lists key differences between the two languages, including their support for inheritance, primary usa...Python/Linux Interview Q/ARuby
Amrutha Damruthadronamraju.hashnode.dev·Sep 29, 2023Python Interview Q/ABasics of Python: What is Python? Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language used for various purposes, including web development, software development, mathematics operations, and more...Python/Linux Interview Q/APython
Arunesh kumarkingarunesh.hashnode.dev·Feb 14, 2023How to swap two variables value in python?For example, If you have a equal to 1 and b equal to 2 then get output a equal to 2 and b equal to 1. First create c variable then set c equal to a, a equal to b and b equal to c. Here is code, a = 1 b = 2 print("OLD a = ",a) print("OLD b = ",b) c ...76 readsPython
lumungelinuxnotes.hashnode.dev·Aug 29, 2022Python Multiple Choice Questions - Part 1In this article, we test our Python programming knowledge by going over 50 Multiple choice questions. 1. What is the output of the code; >>> str = "linux" >>> str[:3] >>> (a) linux (b) inu (c) lin (d) error Ans: (c) Explanation: The above code retur...34 readsPython