Software Junk series - Un-installation by Yash K.S We have seen lot of software’s during uninstalling for asking whether it needs to delete some file or not with prompt. We Most of the time choose Yes and uninstall the software. Here, we need to ask... [Read More] |  |
 |
Where to crash? by Yash K.S Program crashing is more critical compare to other kinds of bug in a product. No client wants crash after paying money for the product. Most Programmers will blindly put try/catch kind of exception... [Read More] |  |
 |
Think only data by Yash K.S Data is most important in computer life, Whole arrangement we have done in computer only to manage these data. Two sins programmers commit are as follow:Defining data loosely Global variables These... [Read More] |  |
 |
Think-Code-Think again by Yash K.S In a project or a product, each developer gets some module to code. This module might have planned or unplanned, we are going to divide modules. Sometimes we are going to divide the problem, document... [Read More] |  |
 |
Recursion Vs Iteration by Yash K.S Recursion & Iteration: A piece of code which executes repeatedly based on the different inputs. In general, before solving any large problem first, we need to divide the problem and then you need... [Read More] |  |
 |
DLL Internals by Yash K.S Dynamic Link Library (DLL) is a shared library concept implemented by Microsoft in Windows platform. It uses Portable Executable (PE) file format which is same as Windows EXE files. These files will... [Read More] |  |
 |
Stack Internals by Yash K.S Stack is a temporary abstract data type and data structure on the principle of Last In First Out (LIFO). Stack is a container of nodes and has two basic operations PUSH and POP. PUSH adds a node to... [Read More] |  |