Upload Button Icon Add office photos

Filter interviews by

Logic Square System Engineer Interview Questions and Answers

Updated 19 Apr 2024

Logic Square System Engineer Interview Experiences

1 interview found

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

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

Round 1 - HR 

(1 Question)

  • Q1. Tell me about your self and responsibilities
Round 2 - Technical 

(1 Question)

  • Q1. What's your responsibilities in last organisation

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Logic Square?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

System Engineer Interview Questions Asked at Other Companies

asked in TCS
Q1. Election Winner Determination In an ongoing election between two ... read more
asked in Infosys
Q2. Count Ways to Reach the N-th Stair Problem Statement You are prov ... read more
asked in TCS
Q3. Given a parking lot represented as an RxC matrix where each space ... read more
asked in TCS iON
Q4. GCD (Greatest Common Divisor) Problem Statement You are given two ... read more
asked in Infosys
Q5. Maximum Subarray Sum Problem Statement Given an array arr of leng ... read more

I applied via Walk-in and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is trigger ?
  • Q2. Explain inheritance and tell about multiple inheritance in Java
  • Ans. 

    Inheritance is a mechanism in Java where a class acquires the properties of another class.

    • Inheritance allows code reusability and promotes the concept of hierarchical classification.

    • The class that is being inherited is called the superclass or parent class, while the class that inherits is called the subclass or child class.

    • Java supports single inheritance, where a subclass can inherit properties from only one supercla...

  • Answered by AI
  • Q3. Tell about your project. How many screens do you have in your project ?
  • Q4. Explain oops concepts
  • Ans. 

    OOPs concepts are the fundamental principles of object-oriented programming.

    • Abstraction

    • Encapsulation

    • Inheritance

    • Polymorphism

    • Classes and Objects

    • Methods and Properties

    • Message Passing

    • Dynamic Binding

  • Answered by AI
  • Q5. Explain with example about access specifiers.
  • Ans. 

    Access specifiers determine the level of access to class members.

    • Access specifiers are public, private, and protected.

    • Public members can be accessed from anywhere.

    • Private members can only be accessed within the class.

    • Protected members can be accessed within the class and its subclasses.

    • Example: class Car { private int speed; public void setSpeed(int s) { speed = s; } }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and honest . Don't try to fool the interviewer and at last don't forget to ask question to interviewer if he ask !

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

NQT

Round 2 - Technical 

(1 Question)

  • Q1. General questions were asked.

Interview Preparation Tips

Topics to prepare for TCS System Engineer interview:
  • Resume
  • Self details
Interview preparation tips for other job seekers - Be confident.
Be prepared for all the obvious question well infront.

I applied via Company Website and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to c c++ and analytical.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was medium level since I was a fresher

I applied via LinkedIn and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Do you know incident management
  • Q2. Do you know python

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and effective communication

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1.What is Opps concepts in Java.
  • Ans. 

    OOPs concepts in Java are the fundamental principles of object-oriented programming.

    • Encapsulation: wrapping data and code into a single unit

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details from the user

    • Examples: class, object, inheritance, polymorphism, encapsulation

  • Answered by AI
  • Q2. 2.What is difference between stack and queue?
  • Ans. 

    Stack is a LIFO data structure while Queue is a FIFO data structure.

    • Stack follows Last In First Out (LIFO) principle while Queue follows First In First Out (FIFO) principle.

    • Stack has two main operations: push and pop while Queue has two main operations: enqueue and dequeue.

    • Stack is used in recursive function calls, undo/redo operations, and backtracking while Queue is used in breadth-first search, printing tasks in ord...

  • Answered by AI
  • Q3. 3.Write SQL query to find second highest salary in database?
  • Ans. 

    SQL query to find second highest salary in database

    • Use ORDER BY and LIMIT to get the second highest salary

    • Assume ties are allowed and use DISTINCT

  • Answered by AI
  • Q4. 4. Difference Between method overloading and method overriding?
  • Q5. 5.which is the parent class of all classes in Java?
  • Ans. 

    The parent class of all classes in Java is the Object class.

    • All classes in Java implicitly extend the Object class.

    • The Object class provides basic methods such as toString(), equals(), and hashCode().

    • Any class can override these methods to provide custom implementations.

    • Example: public class MyClass extends Object { ... }

    • Example: Object obj = new MyClass();

  • Answered by AI
  • Q6. Explain your final year project?
  • Q7. Difference between SQL and NoSql database?
  • Ans. 

    SQL databases are relational and use structured query language, while NoSQL databases are non-relational and use various data models.

    • SQL databases are based on a fixed schema, while NoSQL databases are schema-less.

    • SQL databases use tables to store data, while NoSQL databases use various data models like key-value, document, columnar, or graph.

    • SQL databases are better suited for complex queries and structured data, whil...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All interview process are easy. Intervier just ask basic concept of related to your stream.

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident adn clear when you answer

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

Logic Square Interview FAQs

How many rounds are there in Logic Square System Engineer interview?
Logic Square interview process usually has 2 rounds. The most common rounds in the Logic Square interview process are HR and Technical.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more
Logic Square System Engineer Salary
based on 6 salaries
₹4 L/yr - ₹5 L/yr
18% less than the average System Engineer Salary in India
View more details

Logic Square System Engineer 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
Software Engineer
37 salaries
unlock blur

₹3.8 L/yr - ₹9.3 L/yr

Devops Engineer
36 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Softwaretest Engineer
18 salaries
unlock blur

₹3.8 L/yr - ₹7 L/yr

Software Developer
14 salaries
unlock blur

₹3.5 L/yr - ₹8.4 L/yr

Data Analyst
11 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Explore more salaries
Compare Logic Square with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview