Sharing! What gained.

Jul 30, 2018

Nov 25, 2016

Java and C++ Important Libraries for Speed Programming


In my past 2 year of CS degree, I've participated in different Speed Programming competition with my amazing team. In our first competition, problem was too lengthy to be solved with simple array. We found need for some libraries to get the Speed eg. vector (for linked…

Oct 12, 2016

Regular Expression and Applications


Regular Expression is an expression which is used for defining a language, this definition look very simple but whole world reside this definition. Some core functionality which are provided by Regular Expression or we can say it’s implementation are as follow: String…

Feb 1, 2016

Switch Case or Select Case


Switch Case Or Select Case  Switch case or select case are the same thing they some how work like conditional statements but in this several bodies of code are written and each body is given its own name or here we use word case for name while coding this technique…

Conditional Statements in Visual Basic


Conditional Statements It's one of the most important part of any programing language and almost in any good code, Programmer needs it for writing long applications . Why We Use It? As the name suggest that it deals with the conditions like "if YOU WORK HARD then YOU…

Use Of Basic Mathematical operator in VB


How To Use Basic Mathematical Operator Use of mathematical operator is very important thing in different projects like building the calculator or for coding some complex mathematical application the basic operator i.e plus,minus,multiplication and division have very important…

Working with strings in Visual Basic


Strings in Visual Basic  Some basic and simple concepts about the string is explained by the piece of the code below which include .How to deal with strings? and how to use them to make things look fancy? The above code is explained in simplest way possible…