Upload Button Icon Add office photos

Filter interviews by

RECON Interview Questions and Answers

Updated 21 Dec 2024

RECON Interview Experiences

Popular Designations

3 interviews found

Sales Manager Interview Questions & Answers

user image Anonymous

posted on 21 Dec 2024

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

I appeared for an interview in Nov 2024.

Round 1 - Aptitude Test 

It was copied from chatgpt

Round 2 - Group Discussion 

They asked us to talk about AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Wear a tie and suit and belt

Sales Manager Interview Questions asked at other Companies

Q1. If you're in Cold areas like Kashmir or Himachal Pradesh. & You have to sell an AC which is having only Cold option. How would you do that?
View answer (18)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. 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 

Reasoning, English, Civil Engineering

Round 3 - HR 

(1 Question)

  • Q1. Tell us about yourself ?What do you know about this company? Where did you do your internship from? What all did you learn during the internship?Internship related questions asked?
Round 4 - Technical 

(4 Questions)

  • Q1. Which subject do you enjoy the most? Question related to the subjects? What is your skill? Questioned on technical skills?
  • Q2. Are you interested in my company?
  • Q3. Question asked from RCC paper
  • Q4. Need Designing Knowledge?

Civil Engineer Interview Questions asked at other Companies

Q1. What is the curing formalities for our precast segment???
View answer (22)

I applied via Company Website and was interviewed in Jan 2022. 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 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. Which shift time you want Why looking for Atos company Tell me yourself Salary expectation
Round 4 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Thanks for sharing the information.

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

  • Q1. Explain the difference between ArrayList and LinkedList in Java. When would you choose one over the other?
  • Ans. 

    ArrayList uses dynamic arrays, while LinkedList uses doubly linked nodes for storage and access.

    • ArrayList provides fast random access (O(1)) due to its underlying array structure.

    • LinkedList allows for efficient insertions and deletions (O(1)) at both ends and in the middle.

    • ArrayList has a fixed size, requiring resizing (O(n)) when capacity is exceeded, while LinkedList grows dynamically.

    • Example: Use ArrayList for frequ...

  • Answered by AI
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? Can you explain how the ReentrantLock compares to synchronized?
  • Ans. 

    Java's synchronized keyword offers thread safety but has limitations compared to ReentrantLock.

    • Advantages of synchronized: Simple to use and understand.

    • Disadvantages of synchronized: Can lead to thread contention and performance issues.

    • ReentrantLock allows more flexibility, such as tryLock() and timed lock attempts.

    • ReentrantLock can be used for fair locking, preventing thread starvation.

    • Synchronized blocks are tied to ...

  • Answered by AI
  • Q3. What is the difference between == and .equals() in Java? When should each be used, and what issues can arise from improper usage?
  • Ans. 

    In Java, '==' checks reference equality, while '.equals()' checks value equality. Use them appropriately to avoid bugs.

    • == compares object references, checking if both point to the same memory location.

    • Example: String a = new String('test'); String b = new String('test'); a == b returns false.

    • .equals() compares the actual content of the objects.

    • Example: a.equals(b) returns true because the content is the same.

    • Use '==' f...

  • Answered by AI
  • Q4. How does the Java garbage collector work? Can you describe the different types of garbage collection algorithms available in Java?
  • Q5. What are the main features of Java 8? Can you explain how lambdas and the Stream API have changed the way Java applications are written?
  • Ans. 

    Java 8 introduced lambdas, Stream API, and other features that enhance functional programming and simplify code.

    • Lambdas: Enable concise representation of functional interfaces. Example: (x, y) -> x + y.

    • Stream API: Facilitates functional-style operations on collections. Example: list.stream().filter(x -> x > 10).collect(Collectors.toList()).

    • Default Methods: Allow adding new methods to interfaces without breakin...

  • Answered by AI
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Provide examples and explain how to handle them properly.
  • Ans. 

    Checked exceptions must be declared or handled, while unchecked exceptions do not require explicit handling.

    • Checked exceptions are subclasses of Exception but not of RuntimeException.

    • Example: IOException, SQLException are checked exceptions.

    • Unchecked exceptions are subclasses of RuntimeException.

    • Example: NullPointerException, ArrayIndexOutOfBoundsException are unchecked exceptions.

    • Checked exceptions must be caught or d...

  • Answered by AI
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? How does volatile help ensure memory visibility?
  • Ans. 

    The Java Memory Model defines how threads interact through memory, ensuring visibility and ordering of shared variables.

    • The Java Memory Model (JMM) specifies how threads interact with memory, ensuring consistency and visibility.

    • It defines rules for visibility, atomicity, and ordering of operations in a multithreaded environment.

    • Synchronization mechanisms (like synchronized blocks) ensure that only one thread can access...

  • Answered by AI
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Provide examples where each should be used.
  • Ans. 

    Method overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.

    • Method Overloading: Same method name, different parameters (type, number, or both).

    • Example of Overloading: 'void add(int a, int b)' and 'void add(double a, double b)'.

    • Use Overloading for convenience and readability when methods perform similar functions.

    • Method Overriding: Redefining a meth...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

I am writing automation and clicking on aptitude test.

Round 2 - Assignment 

I am writing automation and clicking on assignment test.

Round 3 - HR 

(2 Questions)

  • Q1. Hey guys? How is it going. I gotta work for it. This is an automation task.
  • Ans. Hey guys? How is it going. I gotta work for it. This is an automation task. Answer
  • Answered Anonymously
  • Q2. Hey guys? How is it going. I gotta work for it. This is an automation task. Yes
Round 4 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Round 5 - Assignment 

This is an automation test. I got this task from my senior. I'm doing good.

Interview Preparation Tips

Topics to prepare for 10405090xyzabc Software Developer interview:
  • Testing
  • Software Testing
  • DSA
Interview preparation tips for other job seekers - Tips are like this, This an Automation Script which is giving you feedback so , please ignore all above

RECON Interview FAQs

How many rounds are there in RECON interview?
RECON interview process usually has 3-4 rounds. The most common rounds in the RECON interview process are HR, Technical and Aptitude Test.
How to prepare for RECON 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 RECON. The most common topics and skills that interviewers at RECON expect are Inside Sales, Business Development, Client Relationship Management, Outbound Sales and Cold Calling.
What are the top questions asked in RECON interview?

Some of the top questions asked at the RECON interview -

  1. Need Designing Knowled...read more
  2. Question asked from RCC pa...read more

Tell us how to improve this page.

RECON Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

10405090xyzabc Interview Questions
3.5
 • 1.4k Interviews
Any Brand Interview Questions
4.1
 • 64 Interviews
Pie Infocomm Interview Questions
4.5
 • 39 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 34 Interviews
Beyondriffs Interview Questions
4.6
 • 25 Interviews
Birla White Interview Questions
4.2
 • 25 Interviews
FreshToHome Interview Questions
3.5
 • 23 Interviews
View all

RECON Reviews and Ratings

based on 13 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.6

Salary

3.5

Job security

4.0

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 13 Reviews and Ratings
Production Engineer
4 salaries
unlock blur

₹2.7 L/yr - ₹6.7 L/yr

Supervisor
4 salaries
unlock blur

₹1.2 L/yr - ₹2.2 L/yr

Site Incharge
4 salaries
unlock blur

₹2.3 L/yr - ₹3.6 L/yr

Civil Engineer
4 salaries
unlock blur

₹1.5 L/yr - ₹3.6 L/yr

Accountant
3 salaries
unlock blur

₹2.2 L/yr - ₹3.4 L/yr

Explore more salaries
Compare RECON with

ACTE

4.6
Compare

Birla White

4.2
Compare

Zeetech Management And Marketing

4.1
Compare

Ricoh

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