Upload Button Icon Add office photos

Filter interviews by

Kolkata West International City Interview Questions and Answers

Be the first one to contribute and help others!

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
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
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
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

Kolkata West International City Interview FAQs

How to prepare for Kolkata West International City 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 Kolkata West International City. The most common topics and skills that interviewers at Kolkata West International City expect are Commercial Buildings, Construction Project Execution, High Rise Building, High Voltage and Project Costing.

Tell us how to improve this page.

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

Kolkata West International City Reviews and Ratings

based on 14 reviews

3.6/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.5

Salary

3.6

Job security

3.7

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 14 Reviews and Ratings
Manager Sales & Marketing
4 salaries
unlock blur

₹5.1 L/yr - ₹6.8 L/yr

Senior IT Executive
4 salaries
unlock blur

₹4.1 L/yr - ₹6.4 L/yr

General Manager Sales & Marketing
3 salaries
unlock blur

₹18 L/yr - ₹20.7 L/yr

General Manager Legal
3 salaries
unlock blur

₹16.2 L/yr - ₹19 L/yr

Executive Engineer - Civil
3 salaries
unlock blur

₹2.5 L/yr - ₹4.3 L/yr

Explore more salaries
Compare Kolkata West International City 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