Before Be sure to make whatever arrangements are necessary so you can be on time – or early – for your interview. Your punctuality indicates your commitment, dependability, and professionalism. What’s more, you’ll be in a better frame of mindContinue reading… Interviewing Skills for Candidates
Author: vamsipavan
When you mix Tollywood with IT Industry ….
A Telugu Movie pundit as a S/W engineer…… 1) Etthi kottanante Google search lo kooda kanapadakunda potav… 2) Orey Java Reddy, Nenu VB chesa, VC chesa, C kuda chesa nee yabba nee Java kuda chesa… Nuvvu.. Software vamsam lo neContinue reading… When you mix Tollywood with IT Industry ….
Java Common Utils: Creating a stored procedure or function in an Oracle Database
A stored procedure or function can be created with no parameters, IN parameters, OUT parameters, or IN/OUT parameters. There can be many parameters per stored procedure or function. An IN parameter is a parameter whose value is passed into aContinue reading… Java Common Utils: Creating a stored procedure or function in an Oracle Database
Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
This example demonstrates how to call stored procedures with IN, OUT, and IN/OUT parameters. CallableStatement cs; try { // Call a procedure with no parameters cs = connection.prepareCall(“{call myproc}”); cs.execute(); // Call a procedure with one IN parameter cs =Continue reading… Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
Java Common Utils: Reading and writing text files
When reading and writing text files : it is almost always a good idea to use buffering (default size is 8K) it is often possible to use references to abstract base classes, instead of references to specific concrete classes thereContinue reading… Java Common Utils: Reading and writing text files
Hiding Javascript Source
When you code an external javascript you identify that it is a javascript using either or both of the language and type parameters on the script tag. The file suffix of .js doesn’t get referenced in determining that the calledContinue reading… Hiding Javascript Source
Recursive execusion of commands in Linux command prompt
When we want to execute any command recursively for a directory, we can use find command for that. find . -name ‘blah*’ -exec rm -rf {} ; But some times, it gives the error as Argument list too long. InContinue reading… Recursive execusion of commands in Linux command prompt
Fast Bit Counting Routines
A common problem asked in job interviews is to count the number of bits that are on in an unsigned integer. Here are seven solutions to this problem. Source code in C is available. Iterated Count int bitcount (unsigned intContinue reading… Fast Bit Counting Routines
ActiveX Data Objects
The ADO Object Model ADO is a simple way of making a connection with a database, and issuing commands (such as stored procedures in SQL Server), or retrieving data into so-called RecordSets. ADO resides on top of OLE-DB (from withinContinue reading… ActiveX Data Objects
How to Write a Killer Resume (for Software Engineers)
I found this very helpful for interviews. This is the small resume tutorial given by one of