Upload Button Icon Add office photos

Filter interviews by

eShakti Software Development Engineer Interview Questions and Answers

Updated 16 Feb 2024

eShakti Software Development Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via TopHire and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How would you write an update query in SQL ?
  • Ans. 

    An update query in SQL is used to modify existing records in a database table.

    • Use the UPDATE keyword followed by the table name

    • Set the column(s) to be updated using SET keyword

    • Specify the new values for the column(s)

    • Add a WHERE clause to specify which records to update

  • Answered by AI
  • Q2. What is the difference between GET, POST,PUT and PATCH request ?
  • Ans. 

    GET is used to request data from a specified resource, POST is used to submit data to be processed to a specified resource, PUT is used to update a resource, and PATCH is used to partially update a resource.

    • GET requests data from a specified resource without changing it

    • POST submits data to be processed to a specified resource

    • PUT updates a resource with the data provided

    • PATCH partially updates a resource with the data p

  • Answered by AI
Round 2 - Coding Test 

There were 3 basic coding questions in 1 hr
1. Merge two sorted arrays
2. Implement Binary Search
3. Given a string, remove all the adjacent same words and return it.

Interview Preparation Tips

Topics to prepare for eShakti Software Development Engineer interview:
  • SQL
  • .Net
  • C#
Interview preparation tips for other job seekers - Just be thorough with the basics, you'll be able to crack the interviews.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian School of Mines (ISM), Dhanbad and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Coding Test 

3 questions. 1 one of that was a DP question.

Round 2 - Technical 

(1 Question)

  • Q1. Basic problem solving questions. It was easy.
Round 3 - Technical 

(1 Question)

  • Q1. It was an easy array question.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How indexing works internally?
  • Ans. 

    Indexing in databases is a way to optimize search queries by creating a data structure that allows for faster retrieval of data.

    • Indexing creates a data structure (like B-trees or hash tables) that maps keys to the locations of corresponding data entries.

    • When a query is made, the database engine uses the index to quickly locate the relevant data entries instead of scanning the entire database.

    • Indexes can be created on o...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Intoduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies such as HTML, CSS, and JavaScript

    • Strong problem-solving skills and ability to work in a team environment

  • Answered by AI
  • Q2. Your Projects
  • Ans. 

    Developed a web application for tracking personal fitness goals

    • Used React.js for front-end development

    • Implemented RESTful APIs for data retrieval and storage

    • Utilized MongoDB for database management

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 coding questions and a few MCQs

Round 2 - Technical 

(1 Question)

  • Q1. Asked to explain and optimise my solution from coding test
Round 3 - Technical 

(1 Question)

  • Q1. Behavioral round. Asked about resume.
Round 4 - HR 

(1 Question)

  • Q1. General HR round and trying to find if you're a right fit for the company
Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
-

I was interviewed in Dec 2024.

Round 1 - Coding Test 

The assessment consisted of an online round lasting one hour, during which there were 33 questions, all of which were challenging, including the multiple-choice questions. The questions were divided into six subsections: 1. Data Structures and Algorithms (DSA) - with a problem related to dynamic programming or recursion; 2. Java; 3. Java 8; 4. Spring; 5. Spring Boot; 6. Microservices.

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good question but very simple to answer

Round 2 - Technical 

(2 Questions)

  • Q1. Cooding question
  • Q2. About project you did in colly

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on skill
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenerio based questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Linked List Intersection Point
  • Ans. 

    Find the intersection point of two linked lists.

    • Use two pointers to traverse the linked lists

    • Calculate the difference in length between the two lists

    • Move the pointer of the longer list ahead by the difference

    • Move both pointers simultaneously until they meet at the intersection point

  • Answered by AI
  • Q2. Basic Spring Boot
  • Q3. Stream and Java 8 Questions

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Add and multiple items for your reference

Round 2 - Technical 

(1 Question)

  • Q1. What is pointer
  • Ans. 

    A pointer is a variable that stores the memory address of another variable.

    • Pointers are used to access and manipulate memory directly.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declares a pointer variable ptr that can store the memory address of an integer

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Was easy to crack infact was simple

Round 2 - Group Discussion 

Involve group of 8 and related to come and pros

Round 3 - Technical 

(1 Question)

  • Q1. What are software testing techniques
  • Ans. 

    Software testing techniques are methods used to ensure that software applications are functioning correctly and meeting requirements.

    • Black box testing: Testing the functionality of a software application without knowing its internal code.

    • White box testing: Testing the internal code and structure of a software application.

    • Unit testing: Testing individual units or components of a software application.

    • Integration testing:...

  • Answered by AI

eShakti Interview FAQs

How many rounds are there in eShakti Software Development Engineer interview?
eShakti interview process usually has 2 rounds. The most common rounds in the eShakti interview process are Technical and Coding Test.
What are the top questions asked in eShakti Software Development Engineer interview?

Some of the top questions asked at the eShakti Software Development Engineer interview -

  1. What is the difference between GET, POST,PUT and PATCH reques...read more
  2. How would you write an update query in SQ...read more

Tell us how to improve this page.

eShakti Software Development Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 409 Interviews
DMart Interview Questions
3.9
 • 399 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Vishal Mega Mart Interview Questions
3.8
 • 157 Interviews
Titan Company Interview Questions
4.3
 • 148 Interviews
Landmark Group Interview Questions
4.0
 • 147 Interviews
V-Mart Interview Questions
4.1
 • 146 Interviews
Lowe's Interview Questions
4.1
 • 131 Interviews
Croma Interview Questions
4.0
 • 127 Interviews
View all
Product Manager
13 salaries
unlock blur

₹22 L/yr - ₹28 L/yr

Software Engineer
11 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Product Marketing Manager
8 salaries
unlock blur

₹22 L/yr - ₹28 L/yr

Operations Executive
8 salaries
unlock blur

₹2.5 L/yr - ₹3.6 L/yr

Computer Operator
7 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Explore more salaries
Compare eShakti with

Myntra

4.0
Compare

Fabindia

4.0
Compare

Biba Apparels

3.7
Compare

Voonik

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