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 Interview Questions and Answers

Updated 6 Jun 2025
Popular Designations

8 Interview questions

A Senior Content Writer was asked 2mo ago
Q. What is a use case?
Ans. 

A use case outlines how a user interacts with a system to achieve a specific goal.

  • Defines interactions between users and systems.

  • Includes actors (users) and their goals.

  • Example: A customer purchasing a product online.

  • Helps in understanding requirements and functionalities.

  • Can be used in software development and business analysis.

View all Senior Content Writer interview questions
A Digital Marketing Specialist was asked 4mo ago
Q. How would you rank a highly competitive keyword in SERP?
Ans. 

To rank a highly competitive keyword in SERP, focus on creating high-quality content, building backlinks from reputable sites, optimizing on-page SEO, and monitoring performance.

  • Create high-quality, relevant content that provides value to users

  • Build backlinks from reputable websites to increase domain authority

  • Optimize on-page SEO elements such as title tags, meta descriptions, and headers

  • Monitor keyword performan...

View all Digital Marketing Specialist interview questions
A Php Intern was asked
Q. How do you perform SQL joins across three tables?
Ans. 

SQL joining for three tables involves using JOIN statements to combine data from multiple tables based on common columns.

  • Use JOIN statements to connect the tables based on common columns

  • Specify the columns to be selected from each table

  • Use aliases for table names to make the query more readable

  • Consider using different types of joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN based on the requirement

View all Php Intern interview questions
A Php Intern was asked
Q. Write HTML and CSS code to create a card.
Ans. 

Create a card using HTML and CSS

  • Use <div> element to create the card container

  • Style the card using CSS properties like background-color, border, padding, and margin

  • Add content inside the card using <p> or <h> tags

  • Apply CSS styles to the content for better presentation

View all Php Intern interview questions
A DOT NET Developer was asked
Q. What is the difference between authorization and authentication?
Ans. 

Authentication verifies the identity of a user, while authorization determines what actions they are allowed to perform.

  • Authentication confirms the identity of a user through credentials like username and password.

  • Authorization determines the access rights and permissions of a user after they have been authenticated.

  • Authentication is the process of logging in, while authorization is the process of granting or deny...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. What is method overriding?
Ans. 

Method overriding is a feature in object-oriented programming where a subclass provides a different implementation of a method that is already defined in its parent class.

  • Method overriding is used to achieve runtime polymorphism.

  • The method in the subclass must have the same name, return type, and parameters as the method in the parent class.

  • The access level of the overriding method cannot be more restrictive than ...

View all DOT NET Developer interview questions
A DOT NET Developer was asked
Q. What is enum?
Ans. 

Enum is a data type in .NET that represents a set of named values.

  • Enums are used to define a set of related named constants.

  • They provide a way to group related values together.

  • Enums can improve code readability and maintainability.

  • Each enum value has an underlying integer value by default.

  • Enums can be used in switch statements and as method parameters.

View all DOT NET Developer interview questions
Are these interview questions helpful?
A Senior Accountant was asked
Q. Simplicity of the accounting process
Ans. 

Simplicity in the accounting process is crucial for accuracy and efficiency.

  • Simplicity in the accounting process helps reduce errors and improve efficiency.

  • Using accounting software can streamline processes and make them more user-friendly.

  • Clear communication and documentation of procedures can simplify the accounting process for all involved.

  • Regular training and updates on accounting standards can help maintain s...

View all Senior Accountant interview questions

SentientGeeks Interview Experiences

16 interviews found

Intern Interview Questions & Answers

user image Subham Dubey

posted on 6 Jun 2025

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

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

  • Q1. DSA Questions Based on Language Know.
  • Q2. Questions Realted to Skills
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - HR 

(1 Question)

  • Q1. About Previous company
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How would you rank a highly competitive keyword in SERP?
  • Ans. 

    To rank a highly competitive keyword in SERP, focus on creating high-quality content, building backlinks from reputable sites, optimizing on-page SEO, and monitoring performance.

    • Create high-quality, relevant content that provides value to users

    • Build backlinks from reputable websites to increase domain authority

    • Optimize on-page SEO elements such as title tags, meta descriptions, and headers

    • Monitor keyword performance us...

  • Answered by AI

Software Developer Intern Interview Questions & Answers

user image Md Abid Hossain Mondal

posted on 22 Apr 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Second Highest Salary or marks query
  • Q2. Function overloaing and overriding
  • Q3. Constructor , copy constructor
  • Q4. MVC routing concepts
  • Q5. Temp data ,view data,viewbag
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Difference between Blog and Article
  • Q2. What is Use Case
  • Ans. 

    A use case outlines how a user interacts with a system to achieve a specific goal.

    • Defines interactions between users and systems.

    • Includes actors (users) and their goals.

    • Example: A customer purchasing a product online.

    • Helps in understanding requirements and functionalities.

    • Can be used in software development and business analysis.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array questions - sum the closest two element of array untill its one element

Interview Preparation Tips

Interview preparation tips for other job seekers - Normal process and question are easy

Project Lead Interview Questions & Answers

user image Explore And Found

posted on 21 Nov 2024

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

(1 Question)

  • Q1. Introduce yourself

Php Intern Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

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

I applied via Indeed and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write html and CSS code to make a card
  • Ans. 

    Create a card using HTML and CSS

    • Use <div> element to create the card container

    • Style the card using CSS properties like background-color, border, padding, and margin

    • Add content inside the card using <p> or <h> tags

    • Apply CSS styles to the content for better presentation

  • Answered by AI
  • Q2. SQL joining for three tables
  • Ans. 

    SQL joining for three tables involves using JOIN statements to combine data from multiple tables based on common columns.

    • Use JOIN statements to connect the tables based on common columns

    • Specify the columns to be selected from each table

    • Use aliases for table names to make the query more readable

    • Consider using different types of joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN based on the requirement

  • Answered by AI
Round 2 - Assignment 

Mini project using php

Round 3 - HR 

(3 Questions)

  • Q1. Tell me about your college project
  • Ans. 

    My college project was a web-based task management application that helps users organize and prioritize their daily tasks efficiently.

    • User Authentication: Implemented secure user login and registration using PHP and MySQL, ensuring data protection and user privacy.

    • Task Management: Developed features to create, edit, and delete tasks, allowing users to manage their to-do lists effectively.

    • Prioritization System: Introduc...

  • Answered by AI
  • Q2. Why do you want to work with us
  • Q3. Your 5 strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interviewer

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2022. There were 4 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 and reasoning questions. Along with one or two short coding questions

Round 3 - Technical 

(3 Questions)

  • Q1. Questions based on your skills
  • Q2. Questions based on your projects.
  • Q3. Some general coding and technical questions which will show the skillset of the student
Round 4 - HR 

(1 Question)

  • Q1. General questions like why work here, will you give your best etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Just give your interviews properly, showcase your skills, so that the hiring team and the interviewers acknowledge you
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed before Aug 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Basic questions from php, js, mysql

Round 2 - One-on-one 

(1 Question)

  • Q1. Asking about Php, Js,ajax,mysql

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about SentientGeeks?
Ask anonymously on communities.

SentientGeeks Interview FAQs

How many rounds are there in SentientGeeks interview?
SentientGeeks interview process usually has 2-3 rounds. The most common rounds in the SentientGeeks interview process are HR, Technical and Resume Shortlist.
How to prepare for SentientGeeks interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at SentientGeeks. The most common topics and skills that interviewers at SentientGeeks expect are Angular, Javascript, JQuery, HTML and Laravel.
What are the top questions asked in SentientGeeks interview?

Some of the top questions asked at the SentientGeeks interview -

  1. * Difference between authorization and authenticati...read more
  2. How would you rank a highly competitive keyword in SE...read more
  3. * What is method overridi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.4/5

based on 19 interview experiences

Difficulty level

Easy 67%
Moderate 33%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
Ivanti Interview Questions
3.6
 • 19 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
WinZO Interview Questions
4.5
 • 14 Interviews
View all

SentientGeeks Reviews and Ratings

based on 69 reviews

4.4/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.1

Salary

4.0

Job security

4.3

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 69 Reviews and Ratings
AI/ML Engineer

Kolkata

1-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
28 salaries
unlock blur

₹2.5 L/yr - ₹6.5 L/yr

Junior Software Engineer
15 salaries
unlock blur

₹2.5 L/yr - ₹4 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 - ₹9 L/yr

Business Development Executive
10 salaries
unlock blur

₹2.6 L/yr - ₹3.2 L/yr

Explore more salaries
Compare SentientGeeks with

Zidio Development

4.5
Compare

NexTurn

4.1
Compare

Springbord Systems

3.5
Compare

Kanerika Software

4.4
Compare
write
Share an Interview