top of page
Search
Abhinaw Tripathi
Dec 15, 20171 min read
break and continue in python
So break and continue theoretically same as other programming language.taking a small example to demonstrate both in Python. break...
4 views0 comments
Abhinaw Tripathi
Dec 13, 20172 min read
Loops in Python
Loops: let's take a example of list. eg: students_names = ["Abhinaw", "Aman", "Ashish", "Himanshu'] if you want to print single element...
5 views0 comments
Abhinaw Tripathi
Dec 12, 20172 min read
Lists in Python
So Lists,some time we want to form multiple objects under a single variable name.To define a list in python.you have to do something like...
2 views0 comments
Abhinaw Tripathi
Dec 12, 20171 min read
If Statements in Python
If Statement is very simple in Python.Let me give you an example. number = 5 if number == 5: print("Number is 5") else: print("Number is...
5 views0 comments
Abhinaw Tripathi
Dec 12, 20171 min read
Boolean and None Type in Python
As you know about boolean in other programming language. it is same in python too but with small differences .boolean can be a true or...
33 views0 comments
Abhinaw Tripathi
Dec 11, 20172 min read
String in Python
We use string to represent text.by default it's Unicode text in Python 3 but ASCII text in Python 2.And this is one of the big advantage...
11 views0 comments
Abhinaw Tripathi
Dec 11, 20171 min read
Integers and Floasts in Python
Defining integers in Python is very easy. eg: answer=42 pi=3.14159 Python 3 also introduces complex numbers as a type.There is no real...
8 views0 comments
Abhinaw Tripathi
Dec 7, 20171 min read
Types in Python
In Python type has been handled differently than other programming languages.in many programming languages including JAVA or C# .you have...
4 views0 comments
Abhinaw Tripathi
Dec 7, 20171 min read
Installing PyCharm
Although we have started using IDLE for python.now we will use PyCharm integrated Developer environment.this is excellent IDE and this is...
8 views0 comments
Abhinaw Tripathi
Dec 7, 20172 min read
The awesomeness of Python
One you install python.you will have a handy tool called PowerShell or python terminal.if you just type Python 3 then you will have an...
3 views0 comments
Abhinaw Tripathi
Nov 24, 20172 min read
Installing Python
Well we talked much about Python. now and next logical steps is installing python. So installing Python involves a download from pyhton...
2 views0 comments
Abhinaw Tripathi
Nov 24, 20171 min read
Python 2 vs. Python 3
Python 2 vs. Python 3: Actually if you know anything about Python then you must be thinking of which version of Python I should use.the...
5 views0 comments
Abhinaw Tripathi
Nov 23, 20172 min read
Getting Started With Python
So Guys I am going to teach you about Python basics first .as it is very powerful language.With Python you can build web app,desktop...
10 views0 comments
Abhinaw Tripathi
Nov 17, 20174 min read
Backtracking | The Knight’s tour problem
So what is "The Knight's tour problem"? A knight's tour is a sequence of moves of a knight on a chessboard such that the knight visits...
86 views0 comments
![Backtracking question asked in Samsung and Amazon - Write a program to print all permutations of a g](https://static.wixstatic.com/media/67623d_01393af85b0d46da86ee1ae87d12964d~mv2.webp)
Abhinaw Tripathi
Nov 17, 20171 min read
Backtracking question asked in Samsung and Amazon - Write a program to print all permutations of a g
A permutation, also called an “arrangement number” or “order,” is a rearrangement of the elements of an ordered list S into a one-to-one...
16 views0 comments
Abhinaw Tripathi
Nov 16, 20173 min read
Dynamic Programming | Matrix Chain Multiplication
Given a sequence of matrices, find the most efficient way to multiply these matrices together. The problem is not actually to perform the...
24 views0 comments
Abhinaw Tripathi
Nov 15, 20172 min read
Dynamic Programming - Edit Distance
Question : Given two strings str1 and str2 and below operations that can performed on str1. Find minimum number of edits (operations)...
16 views0 comments
Abhinaw Tripathi
Nov 15, 20177 min read
Top Common Mistakes Done by Android Developer
Top Common Mistakes Done by Android Developer Android. What’s not to like about this platform? It’s free, it’s customizable, it’s...
13 views0 comments
![Run-time Stack mechanism in Java](https://static.wixstatic.com/media/67623d_4dbec21160604879b4902e5f0b5ded31~mv2.png/v1/fill/w_300,h_133,fp_0.50_0.50,q_95,enc_auto/67623d_4dbec21160604879b4902e5f0b5ded31~mv2.webp)
Abhinaw Tripathi
Oct 3, 20172 min read
Run-time Stack mechanism in Java
Run-time Stack mechanism in Java Ans: For every thread that you create,JVM (Java virtual machine) creates a run-time stack. 1)Each...
120 views0 comments
Abhinaw Tripathi
Oct 3, 20172 min read
Most frequent word in an array of strings? OR
Most frequent word in an array of strings? OR Find winner of an election where votes are represented as candidate names? Question: Most...
903 views0 comments
bottom of page