Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Terralogic Software Solutions Team. If you also belong to the team, you can get access from here

Terralogic Software Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Terralogic Software Solutions Software Engineer Interview Questions and Answers

Updated 29 Dec 2024

Terralogic Software Solutions Software Engineer Interview Experiences

3 interviews found

Software Engineer Interview Questions & Answers

user image Akshay Pravin Ambure

posted on 29 Dec 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Project related question
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - This is the worst organization I have ever worked for.

Software Engineer Interview Questions & Answers

user image HUSTLER'S LIFE

posted on 17 May 2024

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

I applied via campus placement at Sathyabama University and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Nice and easy you can crack

Round 2 - Coding Test 

Not that easy and not that much hard

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How does Angular work ?
  • Ans. 

    Angular is a front-end web application framework that allows developers to build dynamic single-page applications.

    • Angular uses TypeScript for building applications.

    • It follows the MVC (Model-View-Controller) architecture.

    • Angular provides two-way data binding, which means changes in the model are automatically reflected in the view and vice versa.

    • It uses directives to extend HTML with new attributes and tags.

    • Angular has ...

  • Answered by AI
  • Q2. Array based javascript question
  • Q3. What is hoisting ?
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • In JavaScript, variable and function declarations are hoisted to the top of their scope.

    • This means that you can use a variable or function before it is declared.

    • However, only the declarations are hoisted, not the initializations.

  • Answered by AI
  • Q4. What is temporal dead zone ?
  • Ans. 

    Temporal dead zone is the period between entering scope and being able to access a variable.

    • Occurs when trying to access a variable before it has been declared

    • Caused by hoisting in JavaScript

    • Results in a ReferenceError

    • Example: const x = 10; console.log(x); // ReferenceError: Cannot access 'x' before initialization

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basics well

Skills evaluated in this interview

Software Engineer Jobs at Terralogic Software Solutions

View all

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. RDBMS related questions asked
  • Q2. SQL login building related questions

Software Engineer Interview Questions & Answers

EagleView user image SHAURYA AGRAWAL (RA2111030010009)

posted on 28 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

60min of aptitude and coding test

Round 2 - Coding Test 

2 questions on coding test

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

I applied via campus placement at CMR Institute of Technology, Bangalore and was interviewed in Mar 2023. There were 5 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 

Basic aptitude questions and questions on React

Round 3 - Coding Test 

Asked for printing patterns in a loop

Round 4 - Technical 

(1 Question)

  • Q1. Explain your code. Talked about projects, questions on array and a Water-jug problem puzzle question
Round 5 - HR 

(1 Question)

  • Q1. Asked about family and residence.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Operate or control a particualar typing of data device that is attached to a computer
  • Q2. Operate or contriol
  • Q3. In computing a device driver is a computer program that operates or controls a particular type of device that is attached to a computer or automaton
  • Q4. To perform some manual act upon a human body in a methodical manner, and usually with instruments, with a view to restore soundness or health, as in amputation, lithotomy, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - vdart is supoort
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Asked questions about past experience and skills
Round 2 - Coding Test 

Build small project on site

Round 3 - HR 

(1 Question)

  • Q1. Behavioral questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How to avoid Whitelable Exception in Spring boot? Spring Actuators ?
  • Ans. 

    To avoid Whitelabel Exception in Spring Boot, customize error handling and provide appropriate error responses.

    • Create a custom error controller to handle exceptions

    • Implement a custom exception handler to map specific exceptions to appropriate HTTP responses

    • Use @ControllerAdvice to handle exceptions globally

    • Configure error properties to provide custom error messages and codes

    • Use appropriate HTTP status codes for differe

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Constructor? OOPs concepts?
  • Ans. 

    A constructor is a special method used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • Constructors can have parameters to initialize object properties.

    • They can be overloaded to have multiple constructors with different parameters.

    • Constructors can also call other constructors using the 'this' keyword.

  • Answered by AI

Skills evaluated in this interview

I applied via Cocubes and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most rounds were regarding English proficiency and 1 round regarding logical reasoning

Round 2 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, honest and humble in the interview. Prepare well for the interview and aptitude tests

Terralogic Software Solutions Interview FAQs

How many rounds are there in Terralogic Software Solutions Software Engineer interview?
Terralogic Software Solutions interview process usually has 2-3 rounds. The most common rounds in the Terralogic Software Solutions interview process are Technical, HR and Aptitude Test.
How to prepare for Terralogic Software Solutions Software Engineer 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 Terralogic Software Solutions. The most common topics and skills that interviewers at Terralogic Software Solutions expect are Machine Learning, Artificial Intelligence, Computer Networking, Consulting and Digital Transformation.
What are the top questions asked in Terralogic Software Solutions Software Engineer interview?

Some of the top questions asked at the Terralogic Software Solutions Software Engineer interview -

  1. What is temporal dead zon...read more
  2. How does Angular wor...read more
  3. What is hoistin...read more

Tell us how to improve this page.

Terralogic Software Solutions Software Engineer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Fast track your campus placements

View all
Terralogic Software Solutions Software Engineer Salary
based on 275 salaries
₹2.6 L/yr - ₹10 L/yr
25% less than the average Software Engineer Salary in India
View more details

Terralogic Software Solutions Software Engineer Reviews and Ratings

based on 26 reviews

3.3/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.9

Salary

3.3

Job security

3.1

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer - AIML QA

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
275 salaries
unlock blur

₹2.6 L/yr - ₹10 L/yr

Software Engineer2
110 salaries
unlock blur

₹3.5 L/yr - ₹12 L/yr

Software Engineer Level 1
83 salaries
unlock blur

₹3 L/yr - ₹7.6 L/yr

Software Engineer III
74 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Software Engineer II
59 salaries
unlock blur

₹3.6 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Terralogic Software Solutions with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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