Upload Button Icon Add office photos

Filter interviews by

Dicetek Automation Test Engineer Interview Questions and Answers

Updated 15 Jun 2024

Dicetek Automation Test Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. What is constructor
  • Ans. 

    A constructor is a special type of method that is automatically called when an object is created.

    • Constructors have the same name as the class they belong to

    • Constructors do not have a return type

    • Constructors can be used to initialize object properties

  • Answered by AI
  • Q2. What is singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object.

    • Singleton pattern ensures that a class has only one instance and provides a global point of access to it.

    • Commonly used in scenarios where only a single instance of a class is needed, such as database connections or logging.

    • Implementation can involve a private constructor, a static method to access the instance, and a static variable...

  • Answered by AI
  • Q3. What is pointer in java
  • Ans. 

    Pointer in Java is a reference variable that points to the memory address of an object.

    • Pointers in Java are not directly accessible or manipulable by the programmer.

    • They are used behind the scenes for memory management and object manipulation.

    • Example: Integer x = new Integer(5); Integer y = x; // y now points to the same memory address as x.

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Dicetek?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Self introduction
  • Q2. What is java
  • Ans. 

    Java is a high-level programming language known for its platform independence and object-oriented approach.

    • Java is widely used for developing desktop, web, and mobile applications.

    • It is known for its robustness, security, and scalability.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It supports multithreading, exception handling, and automatic memory management.

    • Popular framewor...

  • Answered by AI

Skills evaluated in this interview

Automation Test Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. How to handle scrollbar and mouse activities Jenkins and Github S ... read more
asked in Infosys
Q2. Introduce yourself 1.What is STLC 2. difference between Test plan ... read more
asked in LTIMindtree
Q3. 1. diff b/w findelements vs findelement? 2. set vs map? 3. wap fo ... read more
asked in Capgemini
Q4. 1] Introduction 2] Sanity Vs Smoke testing 3] Waits in selenium a ... read more
asked in Capgemini
Q5. What is assertion? What is soft assertion? What is hard assertion ... read more

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What is collections
  • Ans. 

    Collections are data structures that store and manipulate groups of objects.

    • Collections provide a way to organize and manage large amounts of data

    • They can be used to perform operations on groups of objects, such as sorting or searching

    • Examples of collections include arrays, lists, sets, and maps

  • Answered by AI
  • Q2. What are the new features in java 8
  • Ans. 

    Java 8 introduces lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow functional programming in Java

    • Functional interfaces enable the use of lambda expressions

    • Streams provide a concise way to perform operations on collections

    • Default methods allow interfaces to have implementation

    • Date and Time API improvements

    • Nashorn JavaScript engine

  • Answered by AI
  • Q3. What is the use of spring boot
  • Ans. 

    Spring Boot is a framework for building standalone, production-grade Spring-based applications.

    • Spring Boot simplifies the process of creating and deploying Spring-based applications.

    • It provides a pre-configured environment with a set of opinionated defaults.

    • It includes embedded servers like Tomcat, Jetty, and Undertow.

    • It supports a wide range of data sources and data access technologies.

    • It enables easy integration with...

  • Answered by AI
  • Q4. What is JPA
  • Ans. 

    JPA stands for Java Persistence API, a specification for object-relational mapping in Java applications.

    • JPA is used to map Java objects to relational database tables.

    • It provides a set of annotations to define the mapping between Java classes and database tables.

    • JPA also supports querying data using the Java Persistence Query Language (JPQL).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be easy interview

Skills evaluated in this interview

I applied via Referral and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job security but do not expect projects with latest technologies or development side.

If you are lucky you will get project with new technologies and you can learn.

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Apti & programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Data structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience all total

Interview Questionnaire 

6 Questions

  • Q1. If you preparing for Automation job with selenium java then brush up your concept on below:.
  • Q2. 1. Java OOPS concept like interface , inheritance, Encapsulation and Polymorphism and where you have used in your project one example
  • Q3. 2. TestNg and it's annotations and order of execution.
  • Ans. 

    TestNG is a testing framework for Java. Annotations like @Test, @BeforeMethod, @AfterMethod, etc. are used to define test cases and their order of execution.

    • @Test annotation is used to define a test case.

    • @BeforeMethod and @AfterMethod annotations are used to define pre and post conditions for each test case.

    • Test cases can be grouped using @Test annotation with 'groups' parameter.

    • Test cases can be prioritized using @Tes...

  • Answered by AI
  • Q4. 3. Selenium and it's method and different commands used.
  • Ans. 

    Selenium is a popular automation testing tool used for web applications. It has various methods and commands for testing.

    • Selenium WebDriver is used for automating web applications

    • findElement() method is used to locate an element on the web page

    • sendKeys() method is used to enter text into a text field

    • click() method is used to click on an element

    • getTitle() method is used to get the title of the web page

    • getText() method i...

  • Answered by AI
  • Q5. 4. Read about maven how to execute project using maven commands.
  • Q6. 5. Git repository . How to push and pull code.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Company Website and was interviewed before Oct 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Basic Aptitude with some difficult questions

Round 3 - Coding Test 

3 set of coding question were asked 1 easy ,1 medium ,1 hard

Round 4 - One-on-one 

(1 Question)

  • Q1. This was personal technical interview asking all related to my cv and the one they are looking for
Round 5 - HR 

(1 Question)

  • Q1. Basic personality questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare everything basic and from the CV and you will be good to go.Research about the company a bit that will add cherry on top.

Interview Questionnaire 

1 Question

  • Q1. Why Infosys

Interview Preparation Tips

Interview preparation tips for other job seekers - be honest and dont fake they will know if you are

I applied via Company Website and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

The Questions in the aptitude test were Average but you need to be pretty quick to solve them sp yes speed matters in aptitude test

Round 2 - Coding Test 

After aptitude there was a coding test which was not necessary to clear for ASE profile but if you clear it then you will be considered for SE profile. its better to give your all out in the coding test to gain a better career level at accenture

Round 3 - Technical 

(4 Questions)

  • Q1. After clearing above 2 rounds there was technical and HR round both combined(In my case) so they basically ask the questions related to what you've written in your resume, make sure to not write anything w...
  • Q2. Question 1. Tell me about your project and what all challenges did you faced
  • Q3. Describe yourself in minimum possible words
  • Q4. Technical questions related to technologies you've written in your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - My final Advice for the job seekers would be keep grinding don't get nervous and stay confident on your answers even if you know very little.

Dicetek Interview FAQs

How many rounds are there in Dicetek Automation Test Engineer interview?
Dicetek interview process usually has 1 rounds. The most common rounds in the Dicetek interview process are Technical.
What are the top questions asked in Dicetek Automation Test Engineer interview?

Some of the top questions asked at the Dicetek Automation Test Engineer interview -

  1. What is pointer in j...read more
  2. What is construc...read more
  3. What is single...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Senior Consultant
7 salaries
unlock blur

₹13 L/yr - ₹28 L/yr

System Analyst
7 salaries
unlock blur

₹5 L/yr - ₹32.7 L/yr

Test Engineer
6 salaries
unlock blur

₹7.2 L/yr - ₹15 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Business Analyst
5 salaries
unlock blur

₹24 L/yr - ₹81 L/yr

Explore more salaries
Compare Dicetek with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview