polavishnu
BAN USER
HemaVishnu Pola
Email: polavishnu@gmail.com
Career Objective:
I aspire to be a valuable resource in your esteemed organization and to develop software that is going to
meet individual client needs.
Academic Background:
Degree
B.Tech.- CSE
Intermediate
10th Standard
University
JNTU-K
BIE
ICSE
Year
Pursuing
2009
2007
Percentage
85% (6 Semesters)
89.1
86.7
Technical Skill Set:
• Languages
• Tools
• Operating Systems
• Databases
Project Profile:
IBM The Great Mind Challenge 2011 -- Cybernetics Protector
• Project 1:
Cybernetics Protector is a web application for an Intelligence Agency where Secret Intelligence
Agencies and their agents can communicate through this Software for the exchange of evidences
in a secure way.
Technology used: J2EE , HTML
Database: IBM DB2
Role: Developer
Accomplishments:
• Implemented and coded the securely transmission of the messgaes and the evidences.
• Project 2: Discussion Forums API
The discussion forum built has the capability to allow 50 users and has a storage limitation of
1000 messages. Registered people and logged in people can start a forum or post a message in the
forum or comment on a message.
Technologies used: WCF, Azure Dev Fabric.
Role: Semi(Lead) and Developer
Accomplishments:
• Successfully led the team to the completion of the Forum API running.
Academic Achievements:
• Secured a rank of 3546 in State Engineering Entrance Examination.
• Presented Paper Presentation on “Pretty Good Privacy” in Astrobleme , a Technical Fest
organised by Vignan Institute of Technology , Vishakapatnam , Andhra Pradesh.
Extra Curricular Activities:
• Volunteered in Organising Events in Ekathra , a National Level Technical Symposium
• Been vice-president of the Association of Computer Intellectuals of the college Department and
currently the treasurer.
:
:
:
:
C , C++ , Java , HTML .
Microsoft Visual Studio, Eclipse.
Windows, Unix (shell programming)
Oracle 10g, IBM DB2 Express C 9
I think that....
We know that the operator ++ or -- has more precedence than '/' . Now if the same precedence operators are present then the associative applies for ++ or -- the associative is right-to-left so first ++x evaluates which changes x to 2, then x++ first uses the value of x which is now currently 2, so 2/2 is 1.
after which you can see the value of x as 3. Now if you give x=x++/++x then at the last step x becomes one, but once the statement is over the post inc occurs which increases the value to 2, so we can see 2 as o/p for x= x++/++x
RepLoriKetron, Accountant at Aspire Systems
I am a content marketing professional at HubatSpot, an inbound marketing and sales platform that helps companies attract visitors, convert ...
Replisafergusona, Consultant at Myntra
I am Lisa from Chicago,I am working as a Show host in the New World. I also work Performs ...
Rephenryhokinsh, Android test engineer at ABC TECH SUPPORT
I’m Henry, I am Children's librarian in Rolling Thunder .My Work involves the responsibility for supervising the children ...
Repchristinetcollazoc, Software Analyst
I am a pediatric nurse.I administer directly procedures and medicines to children according to prescribed I also continually assess ...
RepMarryJohan, Consultant at ASAPInfosystemsPvtLtd
I am successfully manage and coordinate graphic design projects from concept through completion. Create and conduct highly persuasive sales and ...
Repmariacbrister, Graphics Programmer at Graphic Systems
Hey, I am Maria and I am from Bluefield. Currently, I work as a freelancer graphic artist. From an early ...
Repjoycejflora, Android Engineer at ABC TECH SUPPORT
I am excited about cooperation and interesting projects. Last year I work for a person who provides the black magic ...
Repcamillerharry, Data Engineer at Student
Hi, I am Camille from Easton USA. Currently, I am working as Staff assistant at Northern Star company. A managed ...
Repsylviarashtons, Accountant at ASAPInfosystemsPvtLtd
I am a journalist. Outside the office, I enjoy additional writing time in a different genre of historical fiction. I ...
Repamandaben422, Graphics Programmer at Abs india pvt. ltd.
Hi, I am a webmaster from the USA. I think social networks have the power to connect two different people ...
RepEdithJHarden, Random at Axiom Sources
Je suis un professionnel de la gestion des soins de santé avec 2 ans d'expérience en supervision d'établissements ...
Repcoragkemmer, Data Scientist at Bankbazaar
Have years of experience to treating variety of outpatients with modalities such as massage, exercise, paraffin, joint mobilization, mechanical traction ...
Repjonej8821, Blockchain Developer at Alliance Global Servies
I am EbonyTuckson .I am a teacher who works in High school. I work during school hours but may also ...
Repharoldknopph, Android test engineer at AMD
I am a publicity writer from Atlanta USA . I create an intended public image for individuals, groups, or organizations. I ...
Repthonylermat, OOPS Experienced at 247quickbookshelp
I have been assigned based on the successful candidate's level of training and experience but will include types of ...
Repmonamore609, Android test engineer at Cisco Systems
Data entry clerks are responsible for inputting a high volume of data from multiple sources into a database, ensuring that ...
Rephelenweiver, Consultant at ASU
I am Helen , policy analyst at Sunflower Market , with 3 years of experience building and maintaining relationships with elected officials ...
#include "stdafx.h"
- polavishnu July 12, 2012#include <string.h>
void reverseOutput(char *output)
{
int last = strlen(output);
int first=0;
while(first < last )
{
char str = *(output+first);
*(output+first) = *(output+last-1);
*(output+last-1)=str;
last--;first++;
}
}
int _tmain(int argc, _TCHAR* argv[])
{
long int input,store;
printf("Enter the number: ");
scanf("%ld",&input);
store = input;
char output[100];
int j=0;
memset(output,0,100);
while(store != 0)
{
char c = (char)(((store - 1)%26)+97);
output[j++] = c;
store = (store-1)/26;
}
reverseOutput(output);
printf("%s\n",output);
return 0;
}