How is Average Quarterly Balance (AQB) calculated

Average Quarterly Balance (AQB) is the average balance to be maintained in the account over a period of a quarter. It is the sum of the end of day balance in the account for each day in the quarter, divided by the number of days in the quarter. Example: Say if your account is subjected to maintain an AQB of Rs. 10,000 /-, that means the EOD balance x Number of Days AQB = 10,000 = ———————————————— Number of days in Quarter Let’s assume the number of days in Quarter are 90 (30days for 3 months), Also, assume you maintained […]

Read more

Compiling Perl Modules on Windows

Compiling Perl Modules for Windows systems includes:   Executing Makefile.PL   NMAKE.EXE Test   Generating .ppd Files Commands for compiling Perl Modules on Windows Systems: Ensure you have Visual Studio installed in-order to support the name.exe. For this run VCVARS32.BAT file from VS. C:>path | grep -i vc98 C:>"C:Program FilesMicrosoft Visual StudioVC98BinVCVARS32.BAT" Setting environment for using Microsoft Visual C++ tools. C:> Navigate to the folder where your modules are existing: C:srcSystems-Windows-Log>perl Makefile.PL Checking if your kit is complete… Looks good Writing Makefile for Systems::Windows::Log C:srcSystems-Windows-Log> Run Nmake.exe C:srcSystems-Windows-Log>C:ToolsbinNMAKE.EXE Microsoft (R) Program Maintenance Utility Version 1.50 Copyright (c) Microsoft Corp 1988-94. […]

Read more