Posts

Showing posts from September, 2019

Condolence message for a friend

Dear Colleagues,   It is with a heavy heart that I share the news that Raj, our beloved colleague and friend is no more. He had been ailing for the past few months and was with his family in Kolkata at the time of his passing.   Raj joined us in August 2009 as the Business Unit head for the Retail, Logistics and Travel industries. He epitomized our Customer for Life philosophy and his unwavering focus on delivering client value was instrumental in evolving RLT into the fastest growing Business Unit in the company.   Raj was always up for a challenge and no goal was unachievable. His sharp wit and sense of humor diffused the tension in the most difficult meetings. His quote “ We did not miss our numbers for the year, we simply ran out of time” is etched in my memory as a symbol of his confidence and optimism.   Even in his final weeks, he did not let the deadly disease affect him as he brought his A game to every client meeting. His passion for business g

Interview Experience at OneAssist Gurgaon

Image
Recently I got a call from OneAssist Gurgaon and the guy started with the interview process. The questions asked by him are listed below. Please go through them once, hopefully, it will help you. Interview Experience at OneAssist Gurgaon Basic Question Tell me about yourself Where did you complete your graduation from and what stream you had Selenium Questions - What is a web driver ? - It is an automation framework that allows executing our tests in different browsers. It also supports headless execution using HtmlUnit driver. How will you instantiate a web driver ? - By using WebDriver interface and using classes FirefoxDriver, ChromeDriver. What is the Abstract method ? - It is a method without having any body(no implementation). An Abstract method must always be declared under the Abstract class. What is the difference between Abstract Class and Interface ?  There are basically three differences between an Abstract Class and Interface.  Firstly, in an in

OOPS concept in Java with Real time examples

Image
OOPS has been become one of the most asked questions in the Interview if you are going for the role of Tester or Developer. It plays the most important role as the examiner want the details briefly. We will be covering the OOPS concept in Java with Real-time examples in this article. OOPS Concept in Java with Real-Time examples In Object-oriented Programming, we deal with Objects and classes. The main terms which are associated with the OOPS are  - Object Class Inheritance Abstraction Encapsulation Object-Oriented Programming Object-oriented programming helps us to model real-life objects well.  Every real-life object can be modelled into classes and then instances can be formed of them in the form of objects. OOP languages also have features like inheritance, encapsulation, abstraction, and Polymorphism. Object Any entity which is having some state and behaviour is an Object, for example, A car has some colour, size, shape and it has some behaviour as spe

Java Program to Reverse a String

Image
So often Interviewer will ask you this question on how to reverse a String using Java. This has become one of the top favorite interview questions for the interviewers. If you are preparing for an interview and are under 5 years of experience, expect this question and be ready with your smart answer. There are 2 ways to answer this question - Using a Reverse method (StringBuilder Class) Using for loop We will be covering both the solutions, next time you are asked this question. Make sure you answer both the ways to have some confidence from the interviewer. Reverse a String using Reverse Method(StringBuilder Class) - Program Explanation -  We will be using StringBuilder class having reverse() function. Take the input from the user using Scanner class and use nextLine() function to get the input from the user. Create an object of StringBuilder class and pass the input into it.  The last step is to use reverse() function in the string builder's object and convert

Cybage Interview experience

I had an interview today at Cybage Pune location. I will be sharing the interview questions asked by the interview panel. Please go through them if you are going to an interview at Cybage. Cybage Interview Questions Date - 07 September 2019 Location - Pune Company -Cybage Pvt Ltd. Duration - 45 Mins There are 4 rounds one has to go to crack the assessment which includes 2 Technical rounds, 1 HR round. So the interview started with the background of my IT career followed by below questions - First Technical Round? Which tool you prefer to automate your application? If Selenium WebDriver? Why? Let's suppose Selenium is not working for your application? Which tool you will switch to and why? How do you deal with the search page of Google while automating? Write a program to generate a random string? Difference between TDD and BDD? Test NG annotations? what is the difference between @BeforeTest and @BeforeMethod? What do you understand of Substring i