Su Swagatam

The Rose flower is for someone special
Please don't touch it.



If u want
S----->Smiling
M----> Magnificient
A---->Awesome
R----> Refreshing
T---->Technical

STUFF

Then U R AT THE RIGHT PLACE


Sunday, January 23, 2011

Curriculum Vitae

Objective:- To dedicate my knowledge and skills for the development of the company
College:-L.D. College of Engineering , Ahmedabad , Gujarat , India
Academics:-
PreEngineering:-
SSC(School Secondary Education ,GSHSEB )(March 2005): 86.14 %
HSC(Higher Secondary Education , GSHSEB) (March 2007): 92.5% in AB Group(6th Rank in all over the Gujarat State) (P+C+ M=93.333 %) (P+C+B=91%)
Engineering (BE Computer , Gujarat University):-
1st Year 79.85 % (2nd in Computer Branch)
3rd semester 78.53 % (1st in Computer Branch)
4th semester 73.21 %
5th semester 75.25 %
6th semester 75.35%(3rd in Computer Branch)
Aggregate 76.44 %

Technical Skills:-
Languages expert in :- C and Java
Language exposed to :- HTML,XML, SQL , C++
Technology :- Servlet , JSP and JAVA Beans , MVC(design pattern)
Managerial Skills:-
Event Manager of “The Cradle of Bytes” ,an event based on C ,C++ & JAVA in the national level Tech Fest “Samannvay” held in our college in February 2009 in which total 250 students from all over India Participated.
Projects:-
1- Flight Management System ( 3rd semester) (lang. used C )
2- My Personal E-Diary (in JAVA)
3- Game of Navkakri (in JAVA)
4- Online Exam Application ( 6th semester) (tech. Used MVC pattern in servlet , JSP and JAVA Beans)which was used in event “The Cradle of Bytes” for the elimination round
Presentations(Seminars) :-
1- JDBC (Java Database Connectivity)
2- Overview of .Net Framework
3- Functions & Pointers in C
Achievements:-
1- 1st rank in Rajkot Center in All India Ramanujan Maths Exam
2- 1st rank in the centre in Dr. S. Radhakrishnan Award Rajasthan Exam(Bronze Medal)
3- Best student of the year (twice) in my school St Ann’s High School , Vadinar
4- 2nd in Diocesan Moral Science Examination conducted by Diocese of Rajkot
Personal Details:-
Date Of Birth:-22-05-1989(age 21)
Hobbies:- Reading philosophical Books ,playing Cricket ,singing
Interests:- Android Mobile Application Development

Friday, January 7, 2011

My Technical Interview At TCS

Technical Interview in TCS

H: interviewer
I:myself


H: Ok tell me about urself ?
I: Besides all the information given in my curriculum vitae , I am consistent as u can see from academics marks . I can converse well with people . I can work better in a team . The fundamental principle of my life is that “Successful peop;e have the ability to read between the lines” . I like to do things in an innovative way .
H(interrupting me): Ok , tell me the last thing u have done innovatively , anything even outside academics ?
I:Sir , one day one of my friends texted me a msg “ Hay , Have u done my work ?” and after so much of scrolling down it was written “99% of the people will call u on reading the first line .Fortunately u r not among them .”
Now what common people will do ? They will just look at the msh , laugh and keep the mobile in the pocket . But I did something different.
I texted her “Ur work is over but there is some problem .” After so much of scrolling I wrote the same thing as was written by her i.e “99% of the ….” . !!!!!!!!!!!
H:In what u r expert subjects(OS and CN) or languages ?
I: Sir , languages and especially JAVA .
H:Ok Tell me what is polymorphism ?
I: It is the use of same thing for different purposes . There r two types of it . 1- Compile time (method overloading) 2-Run time (method over riding ).
H: Can u give me any real world example of polymorphism ?
I: Sir If in a class we have one add method taking two integer arguments , we can overload this add method which takes two float values .
H(interrupting me ): No No , I want real world eg . outside java
I: sorry sir , I don’t know .
H: Which books u referred ?
I: Complete Reference and Head First
H: It is given in Complete Ref
I:Sorry Sir , I don’t remember.
H:Write a code snippet describing use of Inheritance and Polymorphism ?
I:
Class A{
int add(int a,int b)
{
Return (a+b);
}
// overloading
Float add(float a, float b)
{
Return(a+b);
}
}
Class B extends A{
// over riding
int add(int a, int b){
return(a++ + b ++);
}
} // class B ends
H: U gave seminar on JDBC . Tell me how u represented .
I: Sir , first I explained why there was need for JDBC . Before JDBC , ODBC( open database connectivity ) by Microsoft was used . But ODBC drivers were written in platform dependent lang. like C, C++ etc . Also ODBC drivers need to be installed on the client . JDBC drivers(type 3 and type 4) are in java so platform independent .
H(interrupting me):ok ok , tell me how will u establish connection with DBMS in JDBC ?
I:DriverManager class has getConnection(String url ) method. When we call this method with proper url , it returns an Object of type Connection(an interface).
General format of url is :
Jdbc:subprotocol:subname
For eg: jdbc:odbc:www.hostname:port no/DSN
H: How can we find the hostname ?
I: Sir , We can find it using InetAddress class of java.net package .
H: Ya , that’s one solution . But I want non Java solution .
I: Sorry Sir , I don’t know .
H: What is Java bean ?
I:Java Bean is a java class following some conventional rules and which can be reused . We can create reusable components using java Beans .
H: Give me difference between Java class and java bean
I: Java Beans will hava getters and setters method for each property (fields).
H: Explain me how ?
I:
General Format :
Public T getN();
Public void setN(T);
Where T- Type
N-Name of property
H: If I tell u to work in PHP will u be able to do ?
I: Yes , sure
H: How much time will u take ?
I: One month
H(was surprised): One Month !!!!
I: OK,20 days
He smiled.
H: Ur interest is Android Mobile Application Development . From where u obtained the resources ?
I: code.google.com , android.developers.com , and wrox publication book on Android
H:ok , u can leave
I: Ok , It was pleasure meeting u .
H: me too .
I: Sir , I attended ur seminar on Cloud Computing which u gave two months back in our college .It was very interesting .
H: I was abt to ask that . But forgot . Ok Now I don’t want to ask . U can go.