Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by SentientGeeks Team. If you also belong to the team, you can get access from here

SentientGeeks Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

SentientGeeks Intern Interview Questions and Answers for Experienced

Updated 12 Jun 2022

SentientGeeks Intern Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPS CONCEPTS, SQL , TRICKY OOPS QUESTIONS FROM STRING MANIPULATION ETC.
Round 2 - Coding Test 

ASP.NET MVC PROGRAMMING

Round 3 - HR 

(1 Question)

  • Q1. Company Profile, Process flow etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be ready with concepts and practical programing.

Interview questions from similar companies

Intern Interview Questions & Answers

Ivanti user image Anonymous

posted on 29 Sep 2022

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

All coding questions were ad hoc

Round 3 - Technical 

(2 Questions)

  • Q1. Leetcode questions were asked
  • Q2. A question about cache memory was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Having good dsa basics and cse basics is essential

Intern Interview Questions & Answers

Zidio Development user image Rajveer Choubisa

posted on 19 Mar 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. React hooks related How to use them
  • Q2. About web socket real time messaging
  • Q3. About react router dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself well for interview Do mot panic
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What motivates you to join Zidio Development as opposed to other companies?
  • Ans. 

    Zidio Development's innovative projects and collaborative culture inspire my passion for technology and personal growth.

    • Zidio's commitment to cutting-edge technology aligns with my desire to work on innovative projects, like their recent AI initiative.

    • The collaborative culture at Zidio fosters teamwork, which I value as it enhances creativity and problem-solving.

    • Zidio's focus on professional development through mentors...

  • Answered by AI
  • Q2. How will your experience with Zidio development contribute to your career growth?
  • Ans. 

    My experience with Zidio development will enhance my technical skills, teamwork, and problem-solving abilities, crucial for my career growth.

    • Developed proficiency in programming languages like Java and Python, which are essential for software development roles.

    • Collaborated with a diverse team, improving my communication skills and ability to work in a team-oriented environment.

    • Gained hands-on experience with agile meth...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
  • Q1. How did you collaborate with other team members during your internships?
  • Q2. Can you describe how you handled feedback from your senior developers or mentors?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Comments on Javascript
  • Ans. 

    JavaScript is a versatile, high-level programming language primarily used for web development, enabling interactive and dynamic content.

    • JavaScript is an event-driven language, allowing developers to create responsive user interfaces. Example: Handling button clicks.

    • It supports object-oriented programming, enabling code reuse and modularity. Example: Creating classes and objects.

    • JavaScript can manipulate the DOM, allowi...

  • Answered by AI
  • Q2. Javascript library
  • Q3. Css, html, React
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Tell us about a project you've worked on using the MERN stack.
  • Q2. How do you manage routes in a MERN stack application?
  • Ans. 

    Managing routes in a MERN stack involves defining API endpoints and client-side routes for seamless navigation and data handling.

    • Use Express.js for backend routing: Define routes in a separate file, e.g., 'routes/user.js'.

    • Implement RESTful API conventions: Use GET, POST, PUT, DELETE methods for CRUD operations.

    • Utilize React Router for client-side routing: Set up routes in 'App.js' using <BrowserRouter> and <Ro...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're just starting out, remember that you don't need to know everything; just be willing to learn. Companies value curiosity, problem-solving, and a willingness to take ownership just as much as they value technical skills.

Interview Questionnaire 

1 Question

  • Q1. All the questions related to your technical work experience throughout the carrier

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(12 Questions)

  • Q1. Rate yourself in js, node js, react, MongoDB (separately)
  • Q2. Typeof null, typeof undefined, typeof {}, typeof NaN
  • Q3. What changes came in es6
  • Ans. 

    ES6 introduced several new features and improvements to JavaScript, making it more powerful and efficient.

    • Arrow functions for more concise syntax

    • Let and const for block-scoped variables

    • Classes for easier object-oriented programming

    • Template literals for easier string interpolation

    • Default parameters and rest parameters for function arguments

    • Destructuring assignment for easier data extraction

    • Promises for asynchronous prog

  • Answered by AI
  • Q4. This keyword, closures, hoisting
  • Q5. Are let and cont variables hoisted?
  • Ans. 

    Yes, let and const variables are hoisted but not initialized.

    • let and const variables are hoisted to the top of their block scope, but they are not initialized until the actual line of code is executed.

    • This means that you cannot access a let or const variable before it is declared in the code.

    • For example, trying to access a let variable before it is declared will result in a ReferenceError.

  • Answered by AI
  • Q6. What is global context
  • Ans. 

    Global context refers to the overall environment or setting in which something exists or operates.

    • Global context encompasses all variables, functions, and objects that are accessible throughout an entire program.

    • It can be thought of as the 'big picture' view of a program's execution.

    • In web development, global context includes the window object in JavaScript.

  • Answered by AI
  • Q7. What is temporal deadzone
  • Ans. 

    Temporal dead zone is a period during the variable creation process where accessing the variable results in a ReferenceError.

    • Occurs when trying to access a variable before it has been declared with let or const

    • Happens due to the variable being in the temporal dead zone until it is declared

    • Example: accessing a variable before its declaration will result in a ReferenceError

  • Answered by AI
  • Q8. What is modules? types of modules in nodejs
  • Ans. 

    Modules in Node.js are reusable blocks of code that encapsulate related functionality.

    • Modules in Node.js can be built-in modules like fs (file system) or third-party modules like express.

    • Modules help in organizing code into separate files for better maintainability and reusability.

    • Modules can be imported using the require() function in Node.js.

  • Answered by AI
  • Q9. Index in mongodb, why we need index, is index good or bad?
  • Ans. 

    Indexes in MongoDB improve query performance by allowing the database to quickly locate and retrieve specific documents.

    • Indexes help to speed up query performance by allowing the database to quickly locate specific documents based on the indexed fields.

    • Without indexes, MongoDB would have to perform a collection scan, which can be slow and resource-intensive.

    • Indexes can be created on single fields or compound fields to ...

  • Answered by AI
  • Q10. What are hooks , use of useRef
  • Ans. 

    Hooks are a feature in React that allow you to use state and other React features in functional components. useRef is a hook that allows you to create a mutable object that persists for the lifetime of the component.

    • Hooks are used to add state and lifecycle methods to functional components in React

    • useRef is used to create a mutable reference that persists between renders

    • useRef can be used to access DOM elements directl

  • Answered by AI
  • Q11. Fs module, http module, worker thread?
  • Q12. Why we use mongoose not mongodb driver?
  • Ans. 

    Mongoose is an Object Data Modeling (ODM) library for MongoDB that provides a higher level of abstraction and simplifies interactions with the database.

    • Mongoose provides schema validation which helps maintain data integrity.

    • Mongoose simplifies querying and data manipulation with built-in functions.

    • Mongoose supports middleware functions for pre and post processing of data operations.

  • Answered by AI

Skills evaluated in this interview

SentientGeeks Interview FAQs

How many rounds are there in SentientGeeks Intern interview for experienced candidates?
SentientGeeks interview process for experienced candidates usually has 3 rounds. The most common rounds in the SentientGeeks interview process for experienced candidates are Technical, Coding Test and HR.
What are the top questions asked in SentientGeeks Intern interview for experienced candidates?

Some of the top questions asked at the SentientGeeks Intern interview for experienced candidates -

  1. OOPS CONCEPTS, SQL , TRICKY OOPS QUESTIONS FROM STRING MANIPULATION E...read more
  2. Company Profile, Process flow e...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 28 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
Ivanti Interview Questions
3.5
 • 14 Interviews
WinZO Interview Questions
4.0
 • 14 Interviews
TestVagrant Interview Questions
3.4
 • 13 Interviews
Calibraint Interview Questions
3.4
 • 12 Interviews
View all

Fast track your campus placements

View all

SentientGeeks Intern Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

2.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Junior Software Engineer
20 salaries
unlock blur

₹2.3 L/yr - ₹4 L/yr

Software Engineer
19 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Quality Analyst
12 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹5.2 L/yr - ₹7.8 L/yr

Software Developer
7 salaries
unlock blur

₹2.9 L/yr - ₹6 L/yr

Explore more salaries
Compare SentientGeeks with

NexTurn

4.1
Compare

Kanerika Software

4.5
Compare

Smarter BIZ Technologies

3.2
Compare

Nxtra Data

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