Upload Button Icon Add office photos

Filter interviews by

Integra Software Services Technical Editing Interview Questions and Answers

Updated 11 Sep 2024

Integra Software Services Technical Editing Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude is to test the how the communication and grammer knowledge

Round 2 - HR 

(2 Questions)

  • Q1. Strength and weakness
  • Q2. What you would see yourself in next 5 years
  • Ans. 

    In the next 5 years, I see myself advancing in my technical editing career, taking on more challenging projects, and potentially moving into a leadership role.

    • Continuing to improve my editing skills through training and practice

    • Building a strong portfolio of successful editing projects

    • Networking with industry professionals to expand my opportunities

    • Seeking out mentorship to guide my career growth

    • Potentially pursuing ce...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Integra Software Services Technical Editing interview:
  • Verbal
Interview preparation tips for other job seekers - focus on you communication and improve it and then trying to basic learning about the roleverbal

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 and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quants, Logical aptitude. 3 coding questions, included Maximum Sum Subarray

Round 2 - Group Discussion 

Any recent trending topic.

Round 3 - Technical 

(5 Questions)

  • Q1. Tell me about yourself, Project discussion, SQL Queries, Joins
  • Q2. OOPs concepts, and their pillars. Design a Vehicle class, by understanding the requirements
  • Ans. 

    OOPs concepts and pillars. Design a Vehicle class based on requirements.

    • OOPs concepts: Abstraction, Encapsulation, Inheritance, Polymorphism

    • Vehicle class requirements: attributes like make, model, year, methods like start, stop, accelerate

  • Answered by AI
  • Q3. Programming - find the frequency of given character in a sorted string.
  • Ans. 

    Use binary search to find the first and last occurrence of the character, then calculate the frequency.

    • Use binary search to find the first occurrence of the character in the string.

    • Use binary search to find the last occurrence of the character in the string.

    • Calculate the frequency by subtracting the indices of the last and first occurrences and adding 1.

  • Answered by AI
  • Q4. Managerial related questions.
  • Q5. Why would you like to work at Bounteous

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on CS Fundamentals.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test contains questions MCQs for quants, basic statistics and basic coding questions. The aptitude also has 2 coding problems to solve which would be of easy-medium level.

Round 2 - Coding Test 

The second round was live coding test, where the interviewer looks for your approach towards solving a given problem. The approach matters more than the correct syntax. All coding languages were allowed. SQL queries can also be asked.

Round 3 - Technical 

(1 Question)

  • Q1. Technical cum HR round contains language specific questions as well questions based on mathematics and statistics. Questions can be little bit tricky.

Interview Preparation Tips

Topics to prepare for Tiger Analytics Analyst interview:
  • Python
  • SQL
  • Mathematics
  • Statistics
  • Coding
Interview preparation tips for other job seekers - The interviewer would look for your basics and your approach towards a problem rather than answering without your thought process. So make sure, you walkthrough your approach while solving the question.

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

Round 1 - Coding Test 

1st Round consisted of Technical Discussion and Coding Round. I was asked to write down the logic for Prime no., Fibonacci Series, Matrix related question, etc.

Round 2 - Coding Test 

I was asked to share my screen and write down logic for questions related to Strings, Arrays and 2-D matrix's.

Round 3 - Technical 

(2 Questions)

  • Q1. Discussion About the previous projects done. Detailed questions about the technique used and algorithm related questions.
  • Q2. Few basic questions about ML. eg: Linear Regression, Logistic Regression, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall the interview was great. Mostly the interview panel stuck to basic questions.

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

Interview Questionnaire 

1 Question

  • Q1. Basics of DS and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - be thorough in data structures and algorithms

Interview Questionnaire 

4 Questions

  • Q1. Azure Services
  • Q2. OOPS
  • Q3. Design Patterns
  • Q4. Angular Basics

I applied via Company Website and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

Online test with questions from probability and reasoning

Round 2 - Case Study 

A case study for which we need to create a dashboard and a power point presentation.

Round 3 - Coding Test 

SQL written test

Round 4 - Technical 

(2 Questions)

  • Q1. Technical round. Interviewed by two member panel.
  • Q2. About Tableau Previous projects SQL
Round 5 - HR 

(1 Question)

  • Q1. Common questions like expectations, salary expectations etc.

Interview Preparation Tips

Topics to prepare for Tiger Analytics Business Analyst interview:
  • SQL
  • Data Visualization
  • PROBABILITY
Interview preparation tips for other job seekers - Be confident and prepare well. Practice different SQL scenarios and get well versed with all the advanced sql functions.

Interview Questionnaire 

1 Question

  • Q1. Basic javascript questions , clouser, promise

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepared well on basic of javascript

Interview Questionnaire 

2 Questions

  • Q1. 1.Implement merge sort. 2. Kth largest element.
  • Ans. 

    Implement merge sort and find kth largest element in an array.

    • Merge sort is a divide and conquer algorithm that recursively divides the array into two halves, sorts them and then merges them.

    • Kth largest element can be found using quick select algorithm or by sorting the array and returning the kth element from the end.

    • Merge sort has a time complexity of O(nlogn) and space complexity of O(n).

    • Quick select has a time comp...

  • Answered by AI
  • Q2. Springboot RestTemplate, singleton, oops

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. 1. If you given a no return its corresponding excel no.
  • Ans. 

    Convert given no to corresponding excel no.

    • Excel no starts from 1 and goes up to 16384

    • Excel no is calculated using column and row numbers

    • For example, 1 corresponds to A, 27 corresponds to AA, 28 corresponds to AB, and so on

  • Answered by AI
  • Q2. 2. find unique character in a window of k size in a string
  • Ans. 

    Find unique characters in a window of k size in a string.

    • Use a sliding window approach.

    • Maintain a hash table to keep track of character frequency.

    • Remove characters from hash table as the window slides.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication is very important. Give your solution from brute force to optimal. Interviewer has tell me to write code of both questions in any programming language.

Skills evaluated in this interview

Integra Software Services Interview FAQs

How many rounds are there in Integra Software Services Technical Editing interview?
Integra Software Services interview process usually has 2 rounds. The most common rounds in the Integra Software Services interview process are Aptitude Test and HR.
How to prepare for Integra Software Services Technical Editing 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 Integra Software Services. The most common topics and skills that interviewers at Integra Software Services expect are Japanese Language, Journalism, Manual Testing, Publishing and Technical Editing.

Tell us how to improve this page.

Integra Software Services Technical Editing Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.6
 • 342 Interviews
CitiusTech Interview Questions
3.3
 • 278 Interviews
NeoSOFT Interview Questions
3.6
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 227 Interviews
Altimetrik Interview Questions
3.8
 • 223 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
Indium Software Interview Questions
4.1
 • 187 Interviews
Incedo Interview Questions
3.1
 • 184 Interviews
View all

Fast track your campus placements

View all
Integra Software Services Technical Editing Salary
based on 4 salaries
₹1.5 L/yr - ₹2 L/yr
11% less than the average Technical Editing Salary in India
View more details

Integra Software Services Technical Editing Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Quality Controller
136 salaries
unlock blur

₹1 L/yr - ₹3.2 L/yr

Project Manager
98 salaries
unlock blur

₹1 L/yr - ₹7.9 L/yr

Technical Editor
82 salaries
unlock blur

₹1 L/yr - ₹3.5 L/yr

Programmer
79 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Project Management Executive
74 salaries
unlock blur

₹1.2 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Integra Software Services with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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