Posted by admin at June 27, 2020
Here is 1000 most common words in Hindi and it’s English. Number Hindi in English 1 जैसा as 2 मैं I 3 उसके his 4 कि that 5 वह he 6 था was 7 के लिए for 8 पर on 9 हैं are 10 साथ with 11 वे they 12 हो be 13 पर at […]
ContinuePosted by admin at June 11, 2020
A link list is one of the fundamental data structures and can be used to implement other data structures. It consists of a sequence of nodes, each containing (one or more as per requirement) data fields and one (or two) references ( two for doubly link list) pointing to the next (or previous) nodes. We […]
ContinuePosted by admin at
Java is simple and yet powerful object oriented programming language and it’s in many respects similer to C++. Java originated at Sun Microsystems, Inc. in 1991, It was concieved by James Gosling, Patrick Naughton, Cris Warth, Ed Frank, and Mike Sheridan at Sun Microsystems, Inc. It was developed to provide a plateform-independent programming language. Object […]
ContinuePosted by admin at June 8, 2020
At the command line, first verify that you have Git installed: To install git check out the http://gradevision.in/github-installation/On all operating systems: On UNIX-like operating systems: If nothing is returned, or the command is not recognized, you may have to install Git on your system by downloading and running the installer. After installing Git, configure your […]
ContinuePosted by admin at May 28, 2020
String literals in python are surrounded by either single quotation marks, or double quotation marks. The following example shows a string contained within 2 quotation marks. We can also use single quotation marks: # Use single quotation marks for defining string: A string can be a combination of spaces and digits: # Digitals and spaces […]
ContinuePosted by admin at May 27, 2020
Download the Git for Windows installer. Run the installer and follow the steps bellow: Click on “Next”. Click on “Next”. Unless you would like to change the install destination, then click “Browse”. Select your desired editor. Note: This is entirely up to you, pictured on the right is the choice of Atom, a free editor with built-in […]
ContinuePosted by admin at April 28, 2020
Jupyter Notebooks provide a balance of jotting down important summary information along with proving a live code development environment where we can write and run python code. working in notebook cells Markdown cells display text in a web page format. Markdown is code that formats the way the cell displays (this cell is Markdown) Code cells contain […]
Continue