In this post, we are going to provide a salary breakup of a software developer engineer at Amazon India. All the components like base salary, relocation bonus, stocks and insurance are mentioned. Amazon SDE Intern Stipend in India Company Amazon Title Software Development Engineer Intern…
In this post, we will make a python program to check whether the given year is a leap year. Leap Year: One year in every four has 366 days [February has 29 days instead of 28]. The reason why we have leap years is really fascinating, this…
In this program, we are going to make a python program to check even or odd number. In mathematics, an even number is an integer that is divisible by 2, while an odd number is an integer that is not divisible by 2. For example,…
In this post we will provide solutions of striver sde sheet day 1 in c++. Each code is successfully accepted at leetcode. Striver SDE Sheet Solutions Day 1: Arrays 1. Set Matrix Zeroes 2. Pascal’s Triangle 3. Next Permutation in C++ In this program, we…
In this post, I will share information about the giveaway of web development course by Angela Yu. Course: The Complete 2022 Web Development Bootcamp on Udemy Become a Full-Stack Web Developer with just ONE course. HTML, CSS, JavaScript, Node, React, MongoDB, Web3 and DApps Steps…
In this post, we will make a C++ program to print the total number of subarray sums equals k. We will also code another program based on the idea of a cumulative sum. Total Number of Subarrays whose Sum Equals k Given an unsorted array…
This post will discover the top 9 Python Frameworks for Web Development. Excerpt: Do you know which programming language is the most recent and rapidly growing web development? Python!! Yes, it is one of the most commercially viable programming languages, with over 80% of developers…
In this program, we have a number given by the user. We have to print whether that number is prime or not. We will code prime number program in python. Prime Number Program in Python using while loop In this python program, we will check…
In this post, we are going to make a Python Program to Convert Celsius to Fahrenheit. C° to F°: Formula to convert Celsius to Fahrenheit F=1.8C+32 Multiply the given degree Celsius temperature by 1.8 and add 32. For example: let the temperature is 50-degree Celsius. (50°C…
In this program, we are going to multiply two strings in c++. We will not use any built-in function to convert a string to an integer. Pre-requisite: Loops Add Strings Output: Input: num1 = “80”, num2 = “2”Output: “160” Multiply Strings in C++ In this…