Posts

Image
  Capgemini Exceller Off Campus Drive for 2019/2020 Graduates Eligibility Criteria: – Candidates MUST meet ALL of the following criteria: Candidates graduated in 2019/2020 Academic Qualification MCA, BE / BTech (open for all branches for both BE and BTech) ME / MTech students must be only from Information Technology, Information Science, Computer Science Scored 50% and above in Diploma, Graduation (aggregate of 8 semesters) and MCA (aggregate of 6 semesters)/ ME / MTech Candidate should not have more than 1 year of gap between academic milestone stages The academic milestone stages considered are X, XII, Degree and Post-Graduation Candidate should not have any gap  within  an academic milestone Candidate appeared for XII twice, will be considered provided both the marksheets are available Candidate choosing Degree after Diploma should not have any gaps  between  Diploma and Degree Candidate should not have take more than 4 years to complete BE / BTech Candidate ...
  Lifecycle of Components Each component in React has a lifecycle which you can monitor and manipulate during its three main phases. The three phases are:  Mounting ,  Updating , and  Unmounting . Mounting Mounting means putting elements into the DOM. React has four built-in methods that gets called, in this order, when mounting a component: constructor() getDerivedStateFromProps() render() componentDidMount() The  render()  method is required and will always be called, the others are optional and will be called if you define them. constructor The  constructor()  method is called before anything else, when the component is initiated, and it is the natural place to set up the initial  state  and other initial values. The  constructor()  method is called with the  props , as arguments, and you should always start by calling the  super(props)  before anything else, this will initiate the parent's constructor method ...