Upload Button Icon Add office photos
Engaged Employer

i

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

Idea Usher Verified Tick

Compare button icon Compare button icon Compare
2.9

based on 8 Reviews

Filter interviews by

Idea Usher Intern Interview Questions and Answers

Updated 2 Aug 2024

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. About projects, like the what stack used
  • Q2. Hr question about why to join browserstack
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions divided in 4 sections of 20 min each

Round 2 - Case Study 

2-3 case study was given and asked to give answer based on that

Interview Preparation Tips

Topics to prepare for TalentServe Intern interview:
  • reasoning
  • Verbal Communication
  • non verbal
  • Quantitative
Interview preparation tips for other job seekers - terrible company don't join
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

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 , c programming, digital design

Round 3 - Technical 

(2 Questions)

  • Q1. Puzzels,digital design, programming
  • Q2. Implement flip flop using mux
  • Ans. 

    Flip flop can be implemented using a multiplexer by selecting the input based on the control signal.

    • Use a 2:1 multiplexer to select between the current state and the next state

    • Connect the output of the multiplexer to the input of the flip flop

    • Control signal determines which input is passed through the multiplexer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your badics
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Technical Project discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Expertise in ATS
  • Ans. 

    Experience with Applicant Tracking Systems (ATS) is essential for HR Intern role.

    • Familiarity with popular ATS platforms such as Greenhouse, Lever, and iCIMS

    • Ability to post job listings, review resumes, and track candidate progress within ATS

    • Experience in customizing ATS workflows and generating reports for recruitment metrics

  • Answered by AI
  • Q2. Total Experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of position closed
  • Ans. 

    The number of positions closed refers to the total number of job openings that have been filled by candidates.

    • The number of positions closed can be tracked through the recruitment process, from job posting to candidate selection.

    • This metric is important for evaluating the efficiency and effectiveness of the hiring process.

    • For example, if a company has closed 50 positions in a quarter, it indicates a high level of recru

  • Answered by AI
  • Q2. Proficiency in Excel
  • Ans. 

    Proficient in Excel with experience in creating complex formulas, pivot tables, and data analysis.

    • Experience in creating and manipulating spreadsheets

    • Ability to use functions and formulas effectively

    • Knowledge of pivot tables and data visualization techniques

    • Experience in data analysis and reporting

    • Familiarity with VLOOKUP, INDEX-MATCH, and conditional formatting

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. DBMS Question

    Write a query to create an employee table with (employee_id, name, dept) with employee_id as its primary key

  • Ans. 

    A query to create an employee table with employee_id, name, and dept columns, with employee_id as the primary key.

    • Use the CREATE TABLE statement to create the employee table.

    • Specify the data types and constraints for each column.

    • Set the employee_id column as the primary key using the PRIMARY KEY constraint.

  • Answered by AI
  • Q2. Inorder Traversal

    You have been given a Binary Tree of 'N' nodes, where the nodes have integer values. Your task is to find the In-Order traversal of the given binary tree.

    For example :
    For the ...
  • Ans. 

    The task is to find the in-order traversal of a given binary tree.

    • Implement a recursive function to perform in-order traversal of the binary tree

    • Start from the left subtree, then visit the root node, and finally visit the right subtree

    • Use an array to store the values of the nodes in the in-order traversal

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

Interview on google meet

  • Q1. DBMS Question

    Given two tables, return a inner join on a common column (key)

  • Ans. 

    The inner join operation combines rows from two tables based on a common column (key).

    • Use the JOIN keyword in the SQL query to perform an inner join.

    • Specify the common column (key) in the ON clause of the join.

    • The result will contain only the matching rows from both tables.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. Search In A Row Wise And Column Wise Sorted Matrix

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. You are given a target integer 'X'. Find t...

  • Ans. 

    Given a sorted matrix, find the position of a target integer in the matrix.

    • Iterate through each row and column of the matrix

    • Compare the target integer with the current element

    • If the target integer is found, return the position

    • If the target integer is not found, return {-1, -1}

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BengaluruEligibility criteriaNo criteriaSpringworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on data-structures and algorithms fundamentals
Tip 2 : Learn Javascript fundamentals for interviews
Tip 3 : Having good projects on resume is an added advantage

Application resume tips for other job seekers

Tip 1 : Do not put false projects on resume.
Tip 2 : Have good projects on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Machine coding round

Round 2 - Technical 

(2 Questions)

  • Q1. About projects, like the what stack used
  • Q2. Hr question about why to join browserstack
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic questions divided in 4 sections of 20 min each

Round 2 - Case Study 

2-3 case study was given and asked to give answer based on that

Interview Preparation Tips

Topics to prepare for TalentServe Intern interview:
  • reasoning
  • Verbal Communication
  • non verbal
  • Quantitative
Interview preparation tips for other job seekers - terrible company don't join

Idea Usher Interview FAQs

How many rounds are there in Idea Usher Intern interview?
Idea Usher interview process usually has 2 rounds. The most common rounds in the Idea Usher interview process are Coding Test and Aptitude Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

TO THE NEW Interview Questions
3.8
 • 128 Interviews
BrowserStack Interview Questions
3.7
 • 45 Interviews
ZIGRAM Interview Questions
4.0
 • 26 Interviews
Fleetx.io Interview Questions
3.9
 • 25 Interviews
MapmyIndia Interview Questions
3.8
 • 24 Interviews
RGBSI Interview Questions
3.5
 • 23 Interviews
View all
UI/UX Designer
6 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Project Manager
4 salaries
unlock blur

₹7.2 L/yr - ₹11 L/yr

Quality Analyst
4 salaries
unlock blur

₹1.8 L/yr - ₹4.1 L/yr

UX Designer
4 salaries
unlock blur

₹3.5 L/yr - ₹7 L/yr

Front end Developer
4 salaries
unlock blur

₹4 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Idea Usher with

TO THE NEW

3.8
Compare

Srijan Technologies

3.6
Compare

Net Solutions

4.3
Compare

SPARX IT Solutions

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview