Upload Button Icon Add office photos
Engaged Employer

i

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

Omprime Technology Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Omprime Technology Private Limited Senior Travel Sales Consultant Interview Questions and Answers for Experienced

Updated 26 Feb 2023

Omprime Technology Private Limited Senior Travel Sales Consultant Interview Experiences for Experienced

1 interview found

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

I applied via Referral and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Introduction + Work Experience + Reason of leaving last company + Future goals for a long term.
  • Ans. 

    I have extensive experience in travel sales and a strong passion for helping seniors explore the world. I left my last company due to limited growth opportunities. My future goal is to become a travel manager and lead a team of consultants.

    • Extensive experience in travel sales

    • Passionate about helping seniors explore the world

    • Left previous company due to limited growth opportunities

    • Future goal is to become a travel manag

  • Answered by AI
  • Q2. Salary negotiation depending on last salary and work experience
  • Q3. Flexible timings + Well spoken and Articulate + Work ethics

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer to the point as per the questions being asked. Avoid filling words like hmm and instead take time but don't keep a pause.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

I applied via Company Website and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction, pillars of OOP, Js, Linked list, stack, queue, Constrictor, Operator overloading, CSS HTML JS Basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear your besic concept

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

Round 1 - Aptitude Test 

Covered OOP fundamentals and Java

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the study guide. it helps a lot

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

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

Intern Interview Questions & Answers

DISYS user image Anonymous

posted on 12 Oct 2023

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

I applied via Referral and was interviewed before Oct 2022. There were 6 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 

General aptitude questions

Round 3 - Coding Test 

Specific coding test based on your domain

Round 4 - Technical 

(1 Question)

  • Q1. Explain about the programming language you know
  • Ans. 

    I am proficient in programming languages such as Java, Python, and C++.

    • Experienced in Java for backend development

    • Skilled in Python for data analysis and machine learning

    • Knowledgeable in C++ for system programming

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

(1 Question)

  • Q1. Explain about the final year project that you have done
Round 6 - HR 

(1 Question)

  • Q1. What is your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself to the best of your ability

I applied via Campus Placement and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts, database and SQL queries .
  • Q2. Example, what is method overloading, constructor, normalisation.
  • Ans. 

    Method overloading, constructor, and normalization are all concepts in software development.

    • Method overloading allows multiple methods with the same name but different parameters.

    • A constructor is a special method used to initialize objects.

    • Normalization is the process of organizing data in a database to reduce redundancy and improve efficiency.

  • Answered by AI
  • Q3. Shallow copy,deep copy.
  • Q4. Inheritance and its type
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • Types of inheritance: single, multiple, multilevel, hierarchical, hybrid

    • Single inheritance: A derived class inherits from a single base class

    • Multiple inheritance: A derived class inherits from multiple base classes

    • Multilevel inheritance: A derived class inherits from a base class, which in turn inherits from another base class

    • Hierarch...

  • Answered by AI
  • Q5. Data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - Do focus on oops concepts and trying ever to give short and satisfaction answer not should to make story.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2021. 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 

The aptitude test was comprising of questions related to qualitative and quantitative reasoning along with basic computer science questions and coding questions also.

Round 3 - Technical 

(3 Questions)

  • Q1. Why are pointers not used in Java but in C and C++ ?
  • Ans. 

    Java has automatic memory management, so pointers are not needed.

    • Java has a garbage collector that automatically manages memory.

    • Pointers can lead to memory leaks and security vulnerabilities.

    • C and C++ are low-level languages that require manual memory management.

  • Answered by AI
  • Q2. Types of access modifiers.
  • Ans. 

    Access modifiers control the visibility and accessibility of class members.

    • Public: accessible from anywhere

    • Private: accessible only within the class

    • Protected: accessible within the class and its subclasses

    • Default: accessible within the same package

  • Answered by AI
  • Q3. Explain polymorphism.
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading, operator overloading, and inheritance.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Tell me something about yourself.
  • Q2. Are you wishing to relocate ?
  • Q3. Do you know about the bond ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Revature is a recruitment company. They would train you for over 18 months and place you in companies mostly Infosys upto 5LPA package. They don't charge anything for training, rather they would pay you stipend of 5,000 per month.

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

There were 5 coding question, I have completed 4 question and got a call for an interview.

Round 2 - Technical 

(2 Questions)

  • Q1. All basics question of c, like pointer, structure, dynamic allocation
  • Q2. One easy coding problem
Round 3 - HR 

(1 Question)

  • Q1. This round is a confirmation of your selection in company.

Interview Preparation Tips

Topics to prepare for Revature Software Engineer interview:
  • Clear Basics
Interview preparation tips for other job seekers - TR is main round. Focus on basics of any one language with implementation.

I applied via Recruitment Consulltant and was interviewed in Oct 2022. 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 - Technical 

(3 Questions)

  • Q1. Here technical round was very important .you want to right infront of interviewers .They test your problem skills.
  • Q2. Related python questions. Armstrong numbers,febonnic numbers.
  • Q3. About your self and education ,if upload any projects in your resume you want to explain their

Interview Preparation Tips

Interview preparation tips for other job seekers - Dear, Job seekers you want learn must and should aptitude and communication skills

Omprime Technology Private Limited Interview FAQs

How many rounds are there in Omprime Technology Private Limited Senior Travel Sales Consultant interview for experienced candidates?
Omprime Technology Private Limited interview process for experienced candidates usually has 2 rounds. The most common rounds in the Omprime Technology Private Limited interview process for experienced candidates are One-on-one Round and Resume Shortlist.

Tell us how to improve this page.

Omprime Technology Private Limited Senior Travel Sales Consultant Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Cyfuture Interview Questions
3.0
 • 45 Interviews
Revature Interview Questions
3.5
 • 40 Interviews
Equifax Interview Questions
3.3
 • 32 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
JMR Infotech Interview Questions
4.3
 • 29 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
View all
At par with the average Senior Travel Sales Consultant Salary in India
View more details

Omprime Technology Private Limited Senior Travel Sales Consultant Reviews and Ratings

based on 5 reviews

2.1/5

Rating in categories

2.1

Skill development

2.1

Work-life balance

2.1

Salary

2.1

Job security

2.1

Company culture

2.1

Promotions

2.1

Work satisfaction

Explore 5 Reviews and Ratings
Travel Consultant
26 salaries
unlock blur

₹3.6 L/yr - ₹7.8 L/yr

Sales Executive
8 salaries
unlock blur

₹3.6 L/yr - ₹10.2 L/yr

Senior Travel Consultant
8 salaries
unlock blur

₹5 L/yr - ₹10.5 L/yr

Chat Sales Associate
7 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Senior Travel Sales Consultant
7 salaries
unlock blur

₹4.5 L/yr - ₹9 L/yr

Explore more salaries
Compare Omprime Technology Private Limited with

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

ARMSOFTECH.AIR

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