Skip to main content

How to Introduce Yourself to project team and client when you join a new project as fresher in service based company ?



Question:

    How to Introduce Yourself to project team /client  when you join a new project as fresher ?


Answer:

 Hii Everyone,

   Today I will be talking about how we can introduce ourselves to a team

 when we join a new project in any servicebased company as a fresher.


    After I completed my Engineering ,I got placed into TCS.I got allocated 

into a project.I introduced myself to a team.So I will be telling about how  

exactly I introduced myself to the team.The impressive introduction is 

necessary if you want team members to treat you better in this work from

 home period.If you fail to impress team members ,If your introduction is not

 impressive ,then probably your team members will ignore you.


   Before I tell you about how exactly I introduced myself,I would like 

to talk about the points that you should remember before giving your 

introduction.


.start your introduction with Hii Everyone.Good morning/Afternoon/Evening.

1.Name.(you should start your introduction with your name).

2.Address.(you should talk about your birth place).

3.Education.(talk about where you completed your SSC,HSC,ENGINEERING).

4.Final year project.(talk about the final year project that you have done

    during your final year in engineering. )

5.Mini-projects.(talk about the mini-proojects if you have done any during 

    your engineering.)

//now, talk about what you have done when you got into the company.

6.Business Skills.(talk about the business skills that you learnt during 

   the business skill training that takes place when you join the company.

   ex.talk like ,you learnt how to write emails,how to present presentation,

   etc.)

7.ILP.(talk about what you learnt in Initial learning program.this point 

   is specifically for the employees working in TCS.If you do not belong 

    to TCS then talk about the  technologies that you have learnt after 

    your joining .  ) 

8.Interest(talk about your interests and what you do in free time.)

9.There are 3 sentences that you should remember ,end your intro

  with these sentences.

a.I am open to learn new things.

b.I feel like I am hardworking person and I have positive attitude towards

   life.

c.Thats all about me.If you have any questions ,please feel free to ask me.

  Thankyou.


These 9 points you should remember before giving introduction to 

your project team.


************************************************************************


  Now I will tell you how exactly I introduced myself to my project team.  


   Hiii Everyone,Good morning to all of you.My Name is Sadik Pathan.I was 

born in ___(city name)____.I completed my SSC in __(school name and 

city name.)___.I completed my HSC in __(college name and city name.)___.

I completed my Engineering in Computer Science in __(College name and 

city name.)___.

    During my Engineering ,my final year project was Fake news Detection.

whenever a user paste the link of the news in search bar of our project,our 

system goes to that link.collects the data and apply natural language 

processing on that data,apply naive bayes theorem on that data to find 

out whether the news on that link is true  or false.

  Other than final year project, I worked on miniprojects also during my 

engineering.I Created simple calculator based on java created on android

 studio.I created a game called flying fish which  was based on java

created  on android studio. I also created a Snake game in python 

using pygame module.

   After I completed my Engineeering ,I got placed  into TCS.After I joined

TCS,I learnts business skills like how to write emails ,how to present the 

presentation etc etc in business skill session organised by TCS for freshers.

  After business Skills Session,I learnt basics of hardware,computer networks,

virtualization,,database,cloud computing,windows ,windows server ,linux etc

in Initial learning program organized by TCS .

  In my free time,I create youtube videos.I love webdevelopment.I work on 

webdevelopment project during weekend.Recently I created a weather website

where user can enter the city name and user will get the whether information

about that city.

  I am open to learn new things.I feel like I am hardworking person and I

have positive attitude towards life.Thats all about me.If you have any

questions ,please feel free to ask me.

  Thankyou.


************************************************************************

  This is how exactly I introduced myself to the project team. I guarantee

you, all team members/client will impress if you give such kind of introduction.


Thankyou.




Comments

  1. Replies
    1. This comment has been removed by the author.

      Delete
  2. Replies
    1. My linkedin profile is given in the description of the latest video on my youtube channel.you can contact me on linkedin

      Delete

Post a Comment

Popular posts from this blog

Travel_Agencies

  Problem Statement Create a class TravelAgencies with below attributes: regNo – int agencyName – String pakageType – String price – int flightFacility – boolean Write getters, setters for the above attributes . Create constructor which takes parameter in the above sequence. Create class Solution with main method. Implement two static methods – findAgencyWithHighestPackagePrice and agencyDetailsforGivenIdAndType in Solution class. findAgencyWithHighestPackagePrice method: This method will take array of TravelAgencies objects as an input parameter and return the highest package price from the given array of objects. agencyDetailsForGivenldAndType method: This method will take three input parameters -array of TravelAgencies objects, int parameter regNo and String parameter packageType. The method will return the TravelAgencies object based on below conditions. FlightFacility should be available. The input parameters(regNo and packageType) should matched with the regNo

December 23 java coding question PRA solution

23 dec pra java coding question solution. Question: Create the class Student with below attributes. id-int name-String marks-int age-int write getters and setters and parametrized constructor in Student class. Create class Solution with main method. implement 2 static methods-findStudentWithMaximumAge and searchStudentById in Solution class. findStudentWithMaximumAge method:     This method will take the Array of the Students objects as input and  returns the Student object having maximum Age.   For this method,the main method should print the student object details with maximum age as it is.    searchStudentById method:     This method will take 2 input parameters.Array of the Students objects and an int value  id.and returns the Student object having the mentioned id  if found, else return null if not found.   For this method ,main method should print the details of Student objects  as it is,if the returned value is not null. or it should print  "No Student found with mentioned

TCS XPLORE CAMERA PROCTORED ASSESSMENT EXAM JAVA CODING SOLUTION 10 MAY,2021. FOOTWEAR PROBLEM.

 create a class Footwear which consists of the below attributes.   footwearId=int   footwearName=String   footwearType=String   price =int the above attributes should be private. write getter and setter and parametrised constructor as required. create the class footwearProgrammm with the main method. implement the 2 static methods.getCountByType and getSecondHighestPriceByBrand in the Solution class. getCountByType method:    this method will take two input parameters. array of the Footwear objects and string parameter footwear type. this method will return the count of the footwears from array of the footwear objects for the given type of footwear. if no footwear with the given footwear type is found in the array of footwear abjects,then the method should return 0. getSecondHighestPriceByBrand method:   this method will take 2 input parameters-array of footwear objects and string parameter inputFootwearName.the method will return the second highest footwear objects based on the price