Upload Button Icon Add office photos

Shorthills AI

Compare button icon Compare button icon Compare

Filter interviews by

Shorthills AI Interview Questions, Process, and Tips

Updated 28 Sep 2024

Top Shorthills AI Interview Questions and Answers

View all 10 questions

Shorthills AI Interview Experiences

Popular Designations

11 interviews found

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

I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does you day look like? You roles and responsibilities
  • Ans. 

    My day as a Project Manager involves overseeing project timelines, communicating with team members, and resolving any issues that arise.

    • Review project timelines and milestones

    • Communicate with team members to ensure tasks are on track

    • Hold meetings to discuss progress and address any issues

    • Coordinate with stakeholders and clients

    • Resolve conflicts and make decisions to keep the project on schedule

    • Update project documentat

  • Answered by AI
  • Q2. Major challenge you face in your current organization and role
  • Ans. 

    Balancing multiple projects with limited resources and conflicting priorities

    • Prioritizing tasks based on deadlines and impact on overall project goals

    • Communicating effectively with stakeholders to manage expectations and resources

    • Finding creative solutions to resource constraints, such as outsourcing or reallocating tasks

    • Utilizing project management tools to track progress and identify potential bottlenecks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident with what you know and what you do

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at Delhi College of Engineering (DCE), Delhi and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Project and why you use this tech for this project.
  • Q2. Find the mid element in the link list.
  • Ans. 

    To find the mid element in a linked list, use two pointers - one moving at double the speed of the other.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The element pointed to by the slow pointer at this point is the mid element of the linked list.

  • Answered by AI

Skills evaluated in this interview

Top Shorthills AI Software Developer Interview Questions and Answers

Q1. What is the difference between struct and objects ?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Software Developer Interview Questions & Answers

user image Hrishi Singh

posted on 12 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. Difference Between let var and Const ?
  • Ans. 

    let, var, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • let: block-scoped, can be reassigned

    • var: function-scoped, can be reassigned

    • const: block-scoped, cannot be reassigned, but its properties can be modified

  • Answered by AI
  • Q2. What is the difference between struct and objects ?
  • Ans. 

    Struct is a value type while object is a reference type in C#.

    • Structs are value types and stored on stack, while objects are reference types and stored on heap.

    • Structs are passed by value, while objects are passed by reference.

    • Structs do not support inheritance, while objects do.

    • Example: struct Point { int x, y; } vs class Point { int x, y; }

  • Answered by AI
  • Q3. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q4. Compilier Programming language and Intepreter Programming language examples
  • Ans. 

    Compiler programming languages convert source code into machine code before execution, while interpreter programming languages execute code line by line.

    • Compiler programming languages: C, C++, Java

    • Interpreter programming languages: Python, Ruby, JavaScript

  • Answered by AI

Skills evaluated in this interview

Top Shorthills AI Software Developer Interview Questions and Answers

Q1. What is the difference between struct and objects ?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about virtual function
  • Ans. 

    Virtual functions allow a function to be overridden in a derived class

    • Virtual functions are declared in a base class and can be overridden in derived classes

    • They are used in polymorphism to achieve runtime binding

    • Virtual functions are implemented using virtual keyword in C++

    • Example: virtual void display() = 0; // pure virtual function

  • Answered by AI
  • Q2. Tell me about friend function

Skills evaluated in this interview

Top Shorthills AI Software Developer Interview Questions and Answers

Q1. What is the difference between struct and objects ?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Shorthills AI interview questions for popular designations

 Software Developer

 (4)

 Software Engineer

 (2)

 Associate

 (1)

 Project Manager

 (1)

 React Js Frontend Developer

 (1)

 Senior Associate

 (1)

 Software Engineer II

 (1)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via campus placement at Indian Institute of Technology (IIT), Mandi and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Tell me about redux in reactJs
  • Ans. 

    Redux is a state management library for React applications.

    • Redux helps manage the state of your application in a predictable way

    • It stores the state of your application in a single immutable state tree

    • Actions are dispatched to update the state using reducers

    • Components can subscribe to the state changes using connect() function

  • Answered by AI
Round 2 - Coding Test 

Just a question need to count no. of digits of each element of the array and return them

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Ask question about js and react js

Round 2 - Technical 

(1 Question)

  • Q1. Feature has to implement

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Jobs at Shorthills AI

View all

Software Developer Interview Questions & Answers

user image Aarushi Tripathi

posted on 24 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About projects and skills the asked

Top Shorthills AI Software Developer Interview Questions and Answers

Q1. What is the difference between struct and objects ?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
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 - Coding Test 

I was given assignments on sql query. what I had to solve there. Some questions were asked on python and sql

Round 3 - One-on-one 

(2 Questions)

  • Q1. My prior experiences.
  • Q2. Why I am choosing this domain

Interview Preparation Tips

Interview preparation tips for other job seekers - If you choose data engineering. Then you must have knowledge in sql and python.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

I applied via LinkedIn and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Run a program in any prefered language to perform few core programming tasks.
  • Ans. 

    I would use Python to perform basic programming tasks such as sorting, searching, and manipulating data structures.

    • Use built-in functions like sorted() and filter() for sorting and filtering data

    • Use loops and conditional statements for searching and manipulating data structures

    • Use libraries like NumPy and Pandas for advanced data manipulation and analysis

  • Answered by AI
  • Q2. Showcase your custom development work and questions related to that code.
  • Q3. Rest API and CMS based question.
Round 2 - One-on-one 

(1 Question)

  • Q1. Work experience in different segments and use cases of some custom implementations.
  • Ans. 

    I have experience in implementing custom solutions across various segments and use cases.

    • Developed a custom CRM system for a retail company

    • Implemented a custom inventory management system for a manufacturing company

    • Created a custom payment gateway integration for an e-commerce website

    • Designed a custom data analytics solution for a healthcare organization

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my experience, skills, and the market rate for Software Engineer II positions.

    • Research the average salary range for Software Engineer II positions in your location and industry.

    • Consider your years of experience, technical skills, and any specialized knowledge or certifications.

    • Factor in the company's size, industry, and financial stability.

    • Be prepared to negotiate and discuss bene...

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a Software Engineer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with cross-functional teams to gather requirements and design solutions.

    • Implemented new features and fixed bugs in existing software.

    • Performed code reviews and provided feedback to team members.

    • Participated in agile development processes and attended daily stand-up meetings.

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for a change to expand my skill set and learn new technologies.

    • Seeking a more collaborative and innovative work culture.

    • Wanting to work on larger and more complex projects.

    • Desire for career advancement and increased responsibilities.

    • Relocation or desire to work in a different city or country.

  • Answered by AI
  • Q4. Tell me about yourself.
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on various projects using different programming languages such as Java, C++, and Python.

    • I am skilled in software development methodologies like Agile and have experience with version control systems like Git.

    • I have strong problem-solving and analytical skills, which h...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific and detailed about your work experience and keep your basics clear.

Software Engineer II Interview Questions asked at other Companies

Q1. There are fifteen horses and a racing track that can run five horses at a time. You have to figure out the top 3 horses out of those and you don't have any timer machine to measure. How will you find the top 3 horses?
View answer (2)

Senior Associate Interview Questions & Answers

user image tajender singh chahal

posted on 28 Sep 2023

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

I applied via Referral and was interviewed before Sep 2022. There were 4 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Can you describe yours experience with web research
  • Q2. Discuss your time management and prioritization?
Round 3 - One-on-one 

(1 Question)

  • Q1. Explain your commitement to ethical research practices
Round 4 - One-on-one 

(1 Question)

  • Q1. Describe your ability to colloborate with other colleauges in a research setting
  • Ans. 

    I excel in collaborating with colleagues in a research setting by actively listening, sharing ideas, and working towards common goals.

    • I actively listen to my colleagues' ideas and perspectives to ensure effective communication

    • I share my own ideas and insights while being open to feedback and constructive criticism

    • I work collaboratively towards common research goals, leveraging each team member's strengths and expertise

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Showcase your enthusiasm for the position and the understanding of its significance in the it service industry

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)

Shorthills AI Interview FAQs

How many rounds are there in Shorthills AI interview?
Shorthills AI interview process usually has 1-2 rounds. The most common rounds in the Shorthills AI interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Shorthills AI 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 Shorthills AI. The most common topics and skills that interviewers at Shorthills AI expect are React.Js, PHP, SQL, Javascript and Laravel.
What are the top questions asked in Shorthills AI interview?

Some of the top questions asked at the Shorthills AI interview -

  1. Run a program in any prefered language to perform few core programming tas...read more
  2. Work experience in different segments and use cases of some custom implementati...read more
  3. What is the difference between struct and object...read more

Tell us how to improve this page.

Shorthills AI Interview Process

based on 10 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Hexaware Technologies Interview Questions
3.6
 • 720 Interviews
Persistent Systems Interview Questions
3.5
 • 611 Interviews
Zeta Interview Questions
3.3
 • 69 Interviews
View all

Shorthills AI Reviews and Ratings

based on 201 reviews

4.3/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

3.9

Salary

4.2

Job security

4.3

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 201 Reviews and Ratings
Recruiter Coordinator

Gurgaon / Gurugram

0-3 Yrs

â‚ą 2-3.5 LPA

Employee Engagement Specialist

Gurgaon / Gurugram

3-8 Yrs

â‚ą 7-15 LPA

Explore more jobs
Research Associate
32 salaries
unlock blur

â‚ą2 L/yr - â‚ą3.3 L/yr

Software Engineer
22 salaries
unlock blur

â‚ą4 L/yr - â‚ą12.9 L/yr

Senior Software Engineer
13 salaries
unlock blur

â‚ą9 L/yr - â‚ą26.5 L/yr

Data Analyst
10 salaries
unlock blur

â‚ą2.5 L/yr - â‚ą6.7 L/yr

Software Developer
9 salaries
unlock blur

â‚ą3.5 L/yr - â‚ą8 L/yr

Explore more salaries
Compare Shorthills AI with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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