Pratham
BAN USER
Good Programmer in C,C++, Java
Quick Learner.
PRATHAMESH RUDRAKSHAWAR
Flat no.:-D1-1202, Costa Rica Apartment, Datta Mandir Road, Wakad, Pune- 411057.
________________________________________
Contact No.: +91 7387085850
E-mail: prathameshr@gmail.com
________________________________________
Seeking assignments in software development in C, C++ or Java with a Leading organization
________________________________________
A result oriented professional with 5 years and 1 month of working experience in software development.
Presently associated with Infosys Ltd. as Technology Analyst with Finacle Mobile Banking software development team.
Comprehensive understanding of client’s needs for the proper management and delivery of projects.
Ability to support and sustain a positive work environment that fosters team performance with strong communication and relationship management skills.
Diverse background with fast learning skills, creative analytical abilities, good technical and innovative problem solving skills.
Good knowledge of Data Structures and Algorithms.
AREAS OF EXPERTISE
Technical
Working Experience of Android, BREW, and Windows Mobile development.
Strong Exposure in C, C++, and Java software development part as per product needs.
Customer centric operations & ensuring customer satisfaction by achieving delivery.
Worked on Linux and mostly on Windows OS environment.
CAREER SCAN
Infosys Ltd. Since May’11
Technology Analyst
Working with Finacle Mobile Banking team in Software development in Infosys Ltd. in 2011.
Infosys Ltd., Pune TA –Finacle Mobile Development
since May, 11
Project Executed
Title : Finacle Mobile Banking Software Development
Description : Working on Finacle Mobile Banking product development. Worked Android Mobile application development on Infosys Finacle Universal Banking product for various Banking Applications and Requirements.
Roles:
Developed Notification module of FMB product release.
Bugs fixing and enhancement of Finacle Product.
Developed android applications for various Bank Customers.
Demonstration and application development on Google Cloud-to-device Messaging services.
Wipro Technologies. Since Jul’07
Senior Project Engineer
Working with MCE (Mobile Consumer Electronics) team in Embedded Software development in Wipro Technologies in 2007.
Wipro Technologies, Bangalore P.E –Toshiba Mobile Development
since Jul,07
Project Executed
Title : Toshiba Mobile Development
Description : Mobile application development with Qualcomm chipset and ARM processor developed in C.
Roles:
Development of Personal Information Management Application module for mobile which supports Import/Export of vObject as per IRMC standard.
Enhancement of Phonebook module for NB1 and the maintenance of import & export library for vObjects in mobile phones.
Wipro Technologies, Bangalore P.E –Samsung Mobile Development
since Jan,08
Project Executed
Title : Samsung Mobile Development
Description : Mobile application development on SHP developed mostly in C++.
Roles:
Development of Cross Platform component in RichUI development module for Samsung Handset Platform (SHP) in mobile phones.
The component is built in C++ language and uses Samsung proprietary framework APIs. The Component acts as interface between RichUI Application Services and SHP.
Design of Touch based Widgets.
Worked at Client’s office in Bangalore (Samsung) on behalf of Wipro technologies.
Wipro Technologies, Hyderabad S.S.E –Qualcomm Mobile Development
since May,09
Project Executed
Title : Qualcomm Mobile Development
Description : Mobile application development on Samsung Handset Platform developed mostly in C++.
Roles:
Worked as BREW C++ Developer and developed an interface to Download Manager using IDownload APIs which communicates between Application Extension and Download Manager.
Build and Integration engineer in Target UMTS team.
Worked at Client’s office in Hyderabad (Qualcomm) on behalf of Wipro technologies.
Wipro Technologies, Hyderabad S.S.E –Android Development
since Jan,11
Project Executed
Title : Intel Vizio Development
Description : This is UI development for Intel-Vizio Google TV.
Roles:
Worked as Java Developer and developed UI Screens and functionality on Google’s Android platform for Google TV.
ACADEMIA
B.E., Government College of Engineering, Amravati in 2007 (Secured 72.59%)
10+2, Shri Shivaji Science College, Amravati in 2003 (Secured 91.00%)
Matriculations, Gyan Mata Vidya Vihar School, Nanded in 2001 (Secured 84.66%)
PERSONAL DOSSIER
Date of Birth : 5th May, 1985
Permanent Address : 15, Datta colony, Sainagar, Amravati, Maharashtra- 444607
Languages Known : English, Hindi, and Marathi.
RepWhyable is an agile team of Software Specialists with vast experience across multiple languages.We will help you to define ...
RepDimaOxygen15, Computer Scientist at Headrun Technologies Pvt Ltd
Hi! all my sweets friends My name is Dimo Oxygen! Now I study in Victoria University of Wellington New Zealand ...
RepPal A Roos is the best early childhood & child development center in Charlotte. We are famous offering full-time, part-time and ...
RepIsotherm is providing quality ceiling insulation and roofing insulation services to homes. We are one of the leading manufacturer company ...
RepDiscover the best preschool for kids Charlotte. Visit Pal-A-Roo’se, one of the trusted early childhood & child development center in ...
Repriverajenny935, i love my shop piano at xyz
Hello Everyone,My Name is Jenny Rivera .I have been a piano instructor for more than 25 years! I earned ...
RepPamPucker, HR Executive at Adap.tv
I am Pam from Birmingham USA, A Secretary serves as a trusted personal assistant . My interest in ice skating, and ...
Repethelsizer, SDET at ADP
I am Ethel , creative news writer with 5+ years of experience. Have great storytelling skills , wrote and delivered high quality ...
RepVirginialdelmonte, Animator at lostlovebackvashikaran
Have you lost your husband love? And you want to control your husband mind with vashikaran mantra. Guru ji is ...
Repberrysvickers, Associate at Absolute Softech Ltd
Spent 2001-2004 developing strategies for country Luxury Car Rental Miami. Had some great experience building robots for the underprivileged. Have ...
Repriyanahobett, Sales Development Representative at Capgemini
I am Riyana , driven market researcher with over years of experience at Awthentikz , analyzing information in order to construct profiles ...
RepRosendoVBarhorst, Employee at US
Enthusiastic about implementing wazifa to make someone love you.Prior to my current job I was short selling action figures ...
Reploveastrologyspecialist7, Program Manager at Service Now
Hello Everyone,My name is Asena Kaya from Texas,United States. I am 25 years old.i am in the ...
RepLornaEllis, Android test engineer at Abax Techno Solutions
I am Lorna Job estimator, also known as cost planners, who are responsible for estimating the costs of a planned ...
RepHenryMelvin, Korean Air Change Flight at AMD
Hello, everybody! My name is Henry,I am a picture-drawer.Art drawing & painting classes for adults, kids, teens.We have ...
int main()
- Pratham March 01, 2011{
char *str = "1234";
int n;
n=myatoi(str);
printf("%d\n", n);
return 0;
}
myatoi(char *ptr)
{
int val=0;
if(ptr)
{
while(*ptr && (*ptr > '0' || *ptr <'9'))
{
val= (val * 10) + (*ptr - '0');
ptr++;
}
}
return val;
}