26 June 2012

Resume Template



Name
Software Engineer


Cell: 9496470000
Email: rhoho5@gmail.com   





  • To work for a progressive organization where my multi-faced skills and capabilities will enable me to contribute effectively towards long-term development of both corporate & personal goals, and if given opportunity I will definitely make a valuable contribution to the Organization.


Profile Summary

  • Post Graduate in Computer Applications (MCA_2009) from Anna University , India with 95%.
  • Have one year working knowledge of Java, JSP, Servlet JDBC and MySQL.
  • Excellent understanding of object oriented concepts.
  • Exposure to various software engineering life cycle phases, have expertise in requirement definition and development.
  • Good management skills, proven expertise in managing small sized teams of size up to 3 members.
  • Good interpersonal skills.
  • Good communication skills.

Professional Experience

Company Technologies, Coimbatore, India - March 2012 to Present

Accomplishments:
·         Currently involved in design and development of Trackers (Travel and accounting kit) for Ticket Management for Airport Authority.


Skill Sets

  Operating systems            :        Windows XP/2000
  Languages                      :         Java, C, php and C#
  Web Technologies             :        HTML, JSP, Servlet and Java Script
  RDBMS/DBMS                  :        MySql









Academic Credential

         I.    MCA from CIT, Cochin, under University of kerala, Kerala, India during 2006-2009 Secured 94% marks
Project Details
1.        Final semester project during MCA course on M_CAP (MCA Common Allotment Process), A web based application using java jsp and servlet to automate the manual process for MCA admission and allotment procedure in MCA centers of University of Calicut.
2.        A project on online library management system to automate the library management of near by government college during third semester of MCA course using ASP.Net and SQL Server 5.0
       II.    BSc from Govt. College, , India during 2003-2006 Secured 91% marks
Personal Skills

Ø  Committed and dedicated team player
Ø  Able to work with multicultural environment
Ø  Very open & flexible to change
Ø  Hobbies:  Traveling, Reading, Sports

Languages Known
Ø  English   (can read, write and speak)
Ø  Hindi      (can read, write)
Ø  Malayalam (Mother Tongue)  

Co-Curricular Activities

·         Have worked as NCC Officer during college days
·         Worked as secretary of association during college days

Personal Details    


Date of Birth                  :      
Marital Status                 :      
Gender                         :      
Relegion                        :      
Nationality                     :      
     Address                       :       
                                           

21 June 2012

Divisibility of a number

This post will tell you how to find whether a number is divisible by 2,3,4,5,6,9,10,11


1. Divisible by 2

   If the digit is an even number, then it is divisible by 2.
   Eg: 2,206, 622 etc


2. Divisible by 3

   If the sum of the digits of the number is divisible by 3.
   Eg :216, 621

3. Divisible by 4

   If the last two digits of a number is divisible by 4.
   Eg: 544, 384 etc

4. Divisible by 5

   If the last digit of the number is either 0 or 5.
   Eg : 25, 625

5. Divisible by 6.


6. Divisible by 7.


7. Divisible by 8.
    if the last 3 digits of the number is divisible by 8.


8. Divisible by 9.

   if the sum of digits of number is divisible by 9.
   eg : 54, 72 etc

9. Divisible by 10.
   If the last digit of the number is 0.

10. Divisible by 11.

    If the sum of odd number digits - sum of even number digit is divisible by 11.
    eg : 363,

11.Divisible by 16.

    If the last four digit of the number is divisible by 16.

Thanking you,

16 June 2012

C program equiv to GNU's date

C program equiv to GNU's date

/* C program equiv to GNU's date +%s (see date --help),
     that is, seconds since the epoch.
*/
#include <stdio.h>
  #include <sys/types.h>
#include <time.h>
 
int main()
{
   time_t tloc;
   fprintf(stdout, "%ld\n", time(&tloc));
   return 0;
}








13 June 2012

Sightnecity of a number


Sightnecity of a number

Description :


 Sightnecity of 2 is 4 [2 4 8 16 32]

 Sightnecity of 3 is 4 [3 9 27 81 243]

 sightnecity of 4 is 2 [4 16 64]

 sightnectiy of 5 is 1 [5 25]

 sightnecity of 6 is 1 [6 36]

 sightnecity of 7 is 4 [7 49 343 2401 16807]

 sightnecity of 8 is 4 [8 64 512 4096 32768]

 sightnecity of 9 is 2 [9 81 729]


Where to apply?


 Ques>  Find the digit in ones place of 3^65 (read as 3 raise to(power)65) ?

 soln> The sightnecity of 3 is 4. so you need to divide 65/4, you will get 16 as quotiant and 1 as remainder.
           1*3 = 3.
           your answer is 3.


 Ques>  Find the digit in ones place of 6^9?


 Soln> The sightnecity of 6 is 1.  Divide 9 by 1. we get 0 as reminder.
           your answer is 6.