Upload Button Icon Add office photos

Filter interviews by

Eptisa IT Expert Interview Questions and Answers

Updated 15 May 2018

Eptisa IT Expert Interview Experiences

1 interview found

IT Expert Interview Questions & Answers

user image Pijush Das

posted on 9 May 2018

I applied via Recruitment Consultant and was interviewed in Jul 2017. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Brief about myself and the project I was working last. Brief about the project on which EPTISA would deploy me, if selected If I am willing to travel as per project requirement? Why I was leaving my curren...
  • Q2. Discussion on my current and expected CTC

Interview Preparation Tips

General Tips: Be confident on your achievements and try to explain what value addition you can provide to the organization/project, if selected.
Skills: Communication, Leadership, Decision Making Skills
Duration: 1-4 weeks

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Java c c++

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

Interview Questionnaire 

1 Question

  • Q1. - Steps to Create a Docker file - Types of firewall in AWS - How ELK Stack works.
  • Ans. 

    Answers to questions related to Docker, AWS firewall types, and ELK Stack

    • To create a Docker file, start with a base image and add necessary dependencies and configurations

    • AWS has two types of firewalls: Network ACLs and Security Groups

    • ELK Stack is a combination of Elasticsearch, Logstash, and Kibana used for log management and analysis

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong. Overall interview was smooth.

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, don't hesitate.

I applied via Company Website and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why infosys?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and energetic.Speak fluently.Thats what they are seeking for

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

Interview Questionnaire 

4 Questions

  • Q1. What Challenges did you faced in Project? And how did you tackled those.
  • Ans. 

    Faced challenges in a project and how tackled them

    • One of the challenges was managing conflicting priorities among stakeholders. I tackled it by setting clear expectations and priorities, and communicating regularly with all parties involved.

    • Another challenge was dealing with unexpected technical issues. I tackled it by conducting thorough research, consulting with experts, and testing different solutions until the issu...

  • Answered by AI
  • Q2. What is Encapsulation?
  • Ans. 

    Encapsulation is the process of hiding implementation details and exposing only necessary information to the user.

    • Encapsulation is a fundamental concept in object-oriented programming.

    • It helps in achieving data abstraction and information hiding.

    • It allows for better control over the data and prevents unauthorized access.

    • Encapsulation is implemented using access modifiers such as public, private, and protected.

    • For examp...

  • Answered by AI
  • Q3. What is Dailect in Hibernate?
  • Ans. 

    Dialect in Hibernate is a configuration setting that defines the type of database used.

    • Dialect is responsible for generating SQL statements specific to the database.

    • It handles the differences in SQL syntax and data types between different databases.

    • Examples of dialects include MySQLDialect, OracleDialect, and PostgreSQLDialect.

  • Answered by AI
  • Q4. Difference between interface and Abstraction.
  • Ans. 

    Interface defines the contract between two entities while Abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines the methods and properties that a class must implement.

    • Abstraction is a way of hiding the implementation details of a class and exposing only the necessary details to the user.

    • Interface is used for achieving multiple inheritance in Java.

    • Abstraction is used for achieving...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just keep the communication good with the Interviewer and listen carefully and you will find 50% of approch in the explanation only.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is done within the same class while method overriding is done in different classes (subclass and superclass).

    • Method overloading is achieved by changing the number of parameters or the data type of ...

  • Answered by AI
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. EDI inbound and outbound Flows
  • Q2. Basic mapping questions in sterling integrator
  • Q3. Basic X12 and EDIFACT transactions

Interview Preparation Tips

Interview preparation tips for other job seekers - Sharpen EDI mapping skills

Interview Questionnaire 

1 Question

  • Q1. What is tcs
  • Ans. 

    TCS stands for Tata Consultancy Services, a multinational IT services company based in India.

    • TCS is one of the largest IT services companies in the world.

    • It provides a wide range of services including consulting, software development, and business process outsourcing.

    • TCS has clients in various industries such as banking, healthcare, and retail.

    • The company has a strong focus on innovation and has several research and de...

  • Answered by AI

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
Cyient Interview Questions
3.7
 • 288 Interviews
View all
Eptisa IT Expert Salary
based on 5 salaries
₹10.5 L/yr - ₹13 L/yr
39% less than the average IT Expert Salary in India
View more details

Eptisa IT Expert Reviews and Ratings

based on 3 reviews

1.3/5

Rating in categories

1.3

Skill development

1.8

Work-life balance

1.5

Salary

1.5

Job security

1.3

Company culture

1.3

Promotions

1.5

Work satisfaction

Explore 3 Reviews and Ratings
Civil Engineer
22 salaries
unlock blur

₹4.2 L/yr - ₹7 L/yr

Executive Accountant
14 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Construction Supervisor
9 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Office Manager
9 salaries
unlock blur

₹3.3 L/yr - ₹4 L/yr

Tunnel Engineer
7 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Explore more salaries
Compare Eptisa with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview