Upload Button Icon Add office photos
Engaged Employer

i

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

TNQ Tech Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TNQ Tech Private Limited Interview Questions and Answers

Updated 17 Apr 2025
Popular Designations

26 Interview questions

A Senior Engineer was asked 3mo ago
Q. Explain the assessment program.
Ans. 

The program assesses engineering skills through practical tasks and problem-solving scenarios.

  • Focus on real-world applications, such as designing a circuit or optimizing a process.

  • Include coding challenges that test algorithmic thinking, like sorting algorithms or data structure manipulation.

  • Evaluate soft skills through scenario-based questions, such as handling team conflicts or project management.

  • Incorporate sys...

View all Senior Engineer interview questions
A Software Developer was asked 3mo ago
Q. Write a Python function to reverse a string.
Ans. 

Reversing a string in Python can be done using slicing, loops, or built-in functions for efficient manipulation.

  • Using slicing: reversed_string = original_string[::-1] # Example: 'hello' becomes 'olleh'

  • Using the reversed() function: reversed_string = ''.join(reversed(original_string)) # Example: 'world' becomes 'dlrow'

  • Using a loop: reversed_string = ''.join(original_string[i] for i in range(len(original_string)-1...

View all Software Developer interview questions
A Software Developer was asked 3mo ago
Q. Write a program to find multiples of 7.
Ans. 

A multiple of 7 is any integer that can be expressed as 7 times another integer, such as 7, 14, 21, etc.

  • Multiples of 7 can be generated by multiplying 7 with integers: e.g., 7 * 1 = 7.

  • The first few multiples of 7 are: 7, 14, 21, 28, 35.

  • To find the nth multiple of 7, use the formula: 7 * n.

  • Examples: 7 * 3 = 21, 7 * 5 = 35.

View all Software Developer interview questions
A Project Manager was asked 3mo ago
Q. Tell me about the book workflow.
Ans. 

Books workflow involves the processes of acquiring, cataloging, and distributing books in a library or publishing context.

  • Acquisition: Selecting and purchasing books based on demand and relevance, e.g., using surveys to identify popular genres.

  • Cataloging: Organizing books in a database with metadata like author, title, and genre for easy retrieval.

  • Processing: Preparing books for circulation, including labeling, co...

View all Project Manager interview questions
A Technical Subject Matter Expert was asked 6mo ago
Q. Tell me about your work experience.
Ans. 

I have over 10 years of experience in software development, specializing in cloud computing and data analytics.

  • Led a team of developers in creating a cloud-based application that improved data processing speed by 30%.

  • Implemented machine learning algorithms to enhance predictive analytics for client projects, resulting in a 25% increase in accuracy.

  • Collaborated with cross-functional teams to design and deploy scala...

View all Technical Subject Matter Expert interview questions
A Language Editor was asked 11mo ago
Q. Find the errors in the given sentences.
Ans. 

Identify errors in given sentences

  • Check for grammatical errors such as subject-verb agreement, punctuation, and spelling mistakes

  • Look for inconsistencies in tense, voice, and pronoun usage

  • Ensure proper sentence structure and clarity of expression

View all Language Editor interview questions
A Language Editor was asked 12mo ago
Q. Fill in the blanks with an appropriate single word.
Ans. 

The word 'appropriate' is subjective and can vary depending on context.

  • Consider the tone and formality of the text when choosing a word.

  • Think about the intended audience and the message being conveyed.

  • Ensure the word fits grammatically and stylistically with the surrounding text.

View all Language Editor interview questions
Are these interview questions helpful?
An Operations Executive was asked
Q. An article needs to be delivered in a week, and we don't have enough editors in our team. Each editor works at a different capacity, and only a few can do overtime. What would you do in this situation to en...
Ans. 

Prioritize tasks, leverage team strengths, and communicate effectively to ensure timely article delivery without overburdening editors.

  • Assess the current workload of each editor to identify who can take on additional tasks without feeling overwhelmed.

  • Implement a clear prioritization system for the article's sections, focusing on critical parts first to ensure timely completion.

  • Encourage collaboration among editors...

View all Operations Executive interview questions
A Quality Controller was asked
Q. What is the difference between an essay and a paragraph?
Ans. 

Essays are longer, structured writings exploring a topic, while paragraphs are shorter, focused segments within essays.

  • Essays typically consist of multiple paragraphs, each serving a specific purpose.

  • A paragraph usually contains a single main idea, while an essay explores a broader theme.

  • Example of a paragraph: 'The sun sets in the west, casting a golden hue over the horizon.'

  • Example of an essay: 'The impact of cl...

View all Quality Controller interview questions
A Copy Editor was asked
Q. Was the IN parser generated successfully?
Ans. 

Paser is a tool for parsing and analyzing data structures effectively.

  • Paser can handle various data formats like JSON, XML, and CSV.

  • It simplifies data extraction by allowing users to define specific parsing rules.

  • For example, using paser to extract user information from a JSON object.

  • Paser can be integrated into larger applications for real-time data processing.

View all Copy Editor interview questions

TNQ Tech Private Limited Interview Experiences

61 interviews found

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Self Introduction
Round 2 - One-on-one 

(1 Question)

  • Q1. Books workflow and the roles and responsibilities of PM
  • Ans. 

    The books workflow involves planning, organizing, and overseeing the project from initiation to completion.

    • Define project scope, objectives, and deliverables

    • Create project schedule and allocate resources

    • Monitor progress and adjust plans as needed

    • Manage risks and issues

    • Communicate with stakeholders and team members

    • Ensure project meets quality standards

    • Close out project and evaluate success

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Basic python qyestions
  • Q2. Oops concepts in python
  • Ans. 

    Oops concepts in Python include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit attributes and methods from another class.

    • Encapsulation restricts access to certain components within a class.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides complex implementation details and only shows the necessary features.

  • Answered by AI
  • Q3. Sql queries in framework
  • Ans. 

    SQL queries are commonly used in frameworks for data manipulation and retrieval.

    • SQL queries are used to interact with databases within a framework.

    • Frameworks like Hibernate, Entity Framework, and Django ORM use SQL queries to perform database operations.

    • SQL queries can be written directly in code or generated by the framework based on object-relational mapping.

    • Examples: SELECT * FROM table_name WHERE condition, INSERT ...

  • Answered by AI
  • Q4. Inheritance and polymorphism
  • Q5. Design pattern in python
  • Ans. 

    Design patterns in Python are reusable solutions to common problems in software design.

    • Design patterns help in creating maintainable and scalable code.

    • Some common design patterns in Python include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has its own purpose and implementation.

    • Design patterns promote code reusability and flexibility.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Assessment given and explain the program.
  • Ans. 

    The program assesses engineering skills through practical tasks and problem-solving scenarios.

    • Focus on real-world applications, such as designing a circuit or optimizing a process.

    • Include coding challenges that test algorithmic thinking, like sorting algorithms or data structure manipulation.

    • Evaluate soft skills through scenario-based questions, such as handling team conflicts or project management.

    • Incorporate system d...

  • Answered by AI
  • Q2. Basic questions and docker related questions
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 Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Maths , Grammar, html code and word short cuts

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self and technical questions like a html code
  • Q2. Html code like what is body tag ,what is inline tag
  • Ans. 

    Body tag defines the main content of an HTML document, while inline tags are used within a line of text.

    • Body tag encloses the main content of the HTML document

    • Inline tags are used within a line of text to apply formatting or styling

    • Examples of inline tags include <strong>, <em>, <span>

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - English Test 

(2 Questions)

  • Q1. Correct the sentences given below.
  • Q2. Fill in the blanks with an appropriate single word.
  • Ans. 

    The word 'appropriate' is subjective and can vary depending on context.

    • Consider the tone and formality of the text when choosing a word.

    • Think about the intended audience and the message being conveyed.

    • Ensure the word fits grammatically and stylistically with the surrounding text.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself.
  • Ans. 

    I am a language enthusiast with a passion for editing and improving written content.

    • Experienced in editing various types of written content

    • Proficient in grammar, punctuation, and style guidelines

    • Strong attention to detail and ability to meet deadlines

    • Familiar with different editing tools and software

    • Excellent communication and teamwork skills

  • Answered by AI
  • Q2. Why do you choose this role as a career.
  • Ans. 

    I have always had a passion for languages and editing, making this role a perfect fit for me.

    • Passion for languages and editing

    • Enjoy improving written content

    • Strong attention to detail

    • Experience in language-related roles

    • Desire to help others communicate effectively

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

Basic aptitude questions and one word answers for SQL

Round 2 - Coding Test 

Basics of MySQL questions will be asked

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

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Can you describe your experience from your previous work?
  • Ans. 

    I have over 8 years of experience in copy editing, focusing on clarity, consistency, and adherence to style guides.

    • Managed editorial processes for a leading publishing house, ensuring timely delivery of high-quality content.

    • Collaborated with writers to refine their work, providing constructive feedback that improved overall clarity and engagement.

    • Developed and maintained a comprehensive style guide that streamlined the...

  • Answered by AI
  • Q2. Are you comfortable with rotational shifts?

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is best to work for experienced candidates.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Write multiple of 7
  • Ans. 

    A multiple of 7 is any integer that can be expressed as 7 times another integer, such as 7, 14, 21, etc.

    • Multiples of 7 can be generated by multiplying 7 with integers: e.g., 7 * 1 = 7.

    • The first few multiples of 7 are: 7, 14, 21, 28, 35.

    • To find the nth multiple of 7, use the formula: 7 * n.

    • Examples: 7 * 3 = 21, 7 * 5 = 35.

  • Answered by AI
  • Q2. Reverse string using python
  • Ans. 

    Reversing a string in Python can be done using slicing, loops, or built-in functions for efficient manipulation.

    • Using slicing: reversed_string = original_string[::-1] # Example: 'hello' becomes 'olleh'

    • Using the reversed() function: reversed_string = ''.join(reversed(original_string)) # Example: 'world' becomes 'dlrow'

    • Using a loop: reversed_string = ''.join(original_string[i] for i in range(len(original_string)-1, -1,...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 2 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 - One-on-one 

(8 Questions)

  • Q1. Written exam by grammar
  • Q2. Chemistry oriented
  • Ans. 

    Chemical name and then reactions for chemical engineering

  • Answered Anonymously
  • Q3. Differentiate of essay and paragraph
  • Ans. 

    Essays are longer, structured writings exploring a topic, while paragraphs are shorter, focused segments within essays.

    • Essays typically consist of multiple paragraphs, each serving a specific purpose.

    • A paragraph usually contains a single main idea, while an essay explores a broader theme.

    • Example of a paragraph: 'The sun sets in the west, casting a golden hue over the horizon.'

    • Example of an essay: 'The impact of climate...

  • Answered by AI
  • Q4. Personal interview
  • Q5. Image format differentiate
  • Ans. 

    Different image formats have unique characteristics and are suitable for different purposes.

    • JPEG: lossy compression, good for photographs

    • PNG: lossless compression, supports transparency

    • GIF: limited color palette, supports animation

    • TIFF: high quality, large file size

  • Answered by AI
  • Q6. Corrections marking in page
  • Ans. 

    Corrections marking in page involves identifying and correcting errors in written content.

    • Identify errors such as spelling mistakes, grammatical errors, and formatting issues

    • Use proofreading symbols or track changes feature in word processing software to mark corrections

    • Provide clear and concise explanations for corrections made

    • Ensure consistency in corrections throughout the document

    • Examples: circling spelling mistake...

  • Answered by AI
  • Q7. Image format differentiate in correction
  • Ans. 

    Different image formats have different correction methods based on their characteristics.

    • JPEG format is lossy and may lose quality when corrected

    • PNG format is lossless and allows for corrections without quality loss

    • TIFF format is high quality but may be larger in file size

    • RAW format retains all original data for extensive corrections

  • Answered by AI
  • Q8. Corrections marking is the pages

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job and then work on quality
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. About the Educational Qualification
  • Q2. About the English knowledge

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about TNQ Tech Private Limited?
Ask anonymously on communities.

TNQ Tech Private Limited Interview FAQs

How many rounds are there in TNQ Tech Private Limited interview?
TNQ Tech Private Limited interview process usually has 2-3 rounds. The most common rounds in the TNQ Tech Private Limited interview process are HR, One-on-one Round and Resume Shortlist.
How to prepare for TNQ Tech Private Limited 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 TNQ Tech Private Limited. The most common topics and skills that interviewers at TNQ Tech Private Limited expect are Communication Skills, E - publishing, Copy Editing, Typesetting and XML.
What are the top questions asked in TNQ Tech Private Limited interview?

Some of the top questions asked at the TNQ Tech Private Limited interview -

  1. Am article needs to be delivered in a week, and we don't have enough editors in...read more
  2. Write a program for login page with using session Database design for one examp...read more
  3. In XML which tool is used Article title...read more
What are the most common questions asked in TNQ Tech Private Limited HR round?

The most common HR questions asked in TNQ Tech Private Limited interview are -

  1. Why should we hire y...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more
How long is the TNQ Tech Private Limited interview process?

The duration of TNQ Tech Private Limited interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 55 interview experiences

Difficulty level

Easy 39%
Moderate 58%
Hard 3%

Duration

Less than 2 weeks 77%
2-4 weeks 21%
4-6 weeks 3%
View more

Interview Questions from Similar Companies

Cimpress Interview Questions
3.9
 • 65 Interviews
Times Group Interview Questions
3.7
 • 28 Interviews
Group Bayport Interview Questions
4.1
 • 26 Interviews
Xerox Interview Questions
3.9
 • 23 Interviews
Elsevier Interview Questions
4.3
 • 22 Interviews
Amar Ujala Interview Questions
4.0
 • 19 Interviews
View all

TNQ Tech Private Limited Reviews and Ratings

based on 802 reviews

3.5/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

2.9

Salary

3.6

Job security

3.5

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 802 Reviews and Ratings
Senior Software Engineer (PHP) | TNQTech

Kolkata,

Mumbai

+5

7-12 Yrs

Not Disclosed

UI Developer

Kolkata,

Mumbai

+5

6-11 Yrs

Not Disclosed

Language Editor

Kolkata,

Mumbai

+5

7-12 Yrs

Not Disclosed

Explore more jobs
Copy Editor
237 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Senior Associate
160 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Associate Copy Editor
148 salaries
unlock blur

₹1.4 L/yr - ₹3 L/yr

Data Conversion Associate
146 salaries
unlock blur

₹1 L/yr - ₹2.8 L/yr

Graphic Designer
130 salaries
unlock blur

₹1.3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare TNQ Tech Private Limited with

Dainik Bhaskar Group

4.2
Compare

Times Group

3.7
Compare

OMICS International

2.5
Compare

Amar Ujala

4.0
Compare
write
Share an Interview