Upload Button Icon Add office photos

Filter interviews by

Code and Theory Software Engineer Interview Questions and Answers for Experienced

Updated 22 Sep 2023

Code and Theory Software Engineer Interview Experiences for Experienced

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. - Questions on Codable - Value Type vs. Reference Type - API call through URLSession - Basic Questions related to Swift
Round 2 - Technical 

(1 Question)

  • Q1. - Protocols - Generics - Higher Order Functions - Multithreading and Concurrency
Round 3 - Technical 

(1 Question)

  • Q1. Behavioral Round with some logical questions
Round 4 - HR 

(1 Question)

  • Q1. - About Company - Salary discussion

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

2 coding question were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Sum on node in binary tree
  • Ans. 

    Recursively sum the values of nodes in a binary tree

    • Use a recursive function to traverse the tree and add the values of each node

    • Base case: if the current node is null, return 0

    • Recursive step: return the sum of current node value, left subtree sum, and right subtree sum

  • Answered by AI
  • Q2. Lp question asked
Round 3 - Technical 

(2 Questions)

  • Q1. Question on string manipulation
  • Q2. Lp question asked
Round 4 - Technical 

(2 Questions)

  • Q1. Managerial question on projects were asked
  • Q2. Past experience and leadership question

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Internal working of Hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hashed a...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic js and react
Round 2 - Technical 

(1 Question)

  • Q1. Advance Js and react
Round 3 - One-on-one 

(1 Question)

  • Q1. Data structure and managerial
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Basics of your technical skills
Round 3 - Technical 

(1 Question)

  • Q1. More Projects related questions

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

Interview Questionnaire 

2 Questions

  • Q1. Is java springs good work
  • Q2. Very essay so just Tuff question

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing advice

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1 : Assignment round- was given a problem statement and app design and was asked to make that app.
  • Q2. 2: Code Discussion round based on the app that I made
  • Q3. 3: Technical 1 questions on basic DSA and deep tech stack based questions on Android everything that you can cover basically for android
  • Q4. 4: Technical 2 questions were high level based on Clean architecture , SOLID principles, Dependency Injection
  • Q5. 5: Managerial round : 30% tech rest was behaviour part and previous organization experiences
  • Q6. Last was salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grip on the tech stack for which you are applying and brush up on DSA concepts and problem solving not very intensive just that you can come up with an approach.

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Parse file permissions

Round 2 - English Language Assessment 

(1 Question)

  • Q1. English Communication
Round 3 - Face Face Interview 

(3 Questions)

  • Q1. Introduce your self
  • Q2. B.Tech Project Explanation
  • Ans. 

    My B.Tech project was on developing a web-based e-commerce platform.

    • The platform was built using PHP and MySQL.

    • It had features like user authentication, product catalog, shopping cart, and payment gateway integration.

    • I also implemented search and recommendation algorithms to improve user experience.

    • The project was well-received and got a good grade.

    • I learned a lot about web development and project management during thi

  • Answered by AI
  • Q3. Technical Questions

Interview Preparation Tips

Topics to prepare for IBM Software Engineer interview:
  • SQL
Interview preparation tips for other job seekers - Be Confident And face the interview

I applied via Job Portal and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction, project, programming basics. The interview questions completely asked in what you mentioned in resume, like project based, skills based that programming language s and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, talk attentive and cler, be prepare your self what you mentioned in resume that's it

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. What is plan Bind?
  • Ans. 

    Plan Bind is a feature in Oracle database that allows binding of execution plans to SQL statements.

    • Plan Bind helps in improving the performance of SQL statements by reusing the execution plan.

    • It reduces the overhead of parsing and optimizing the SQL statement every time it is executed.

    • Plan Bind is enabled by default in Oracle database.

    • It can be disabled using the initialization parameter OPTIMIZER_FEATURES_ENABLE.

    • Plan ...

  • Answered by AI
  • Q2. How to copy data of all the gdg versions into a single ps file using jcl
  • Ans. 

    To copy data of all GDG versions into a single PS file using JCL.

    • Use IDCAMS utility to define a temporary GDG base.

    • Use SORT utility to merge all the GDG versions into a single file.

    • Use IEBGENER utility to copy the merged file to a PS file.

    • Delete the temporary GDG base using IDCAMS utility.

  • Answered by AI
  • Q3. What are Isolation level in Db2
  • Ans. 

    Isolation levels in Db2 determine how transactions interact with each other.

    • Isolation levels include Read Uncommitted, Read Committed, Repeatable Read, and Serializable.

    • Higher isolation levels provide more consistency but can also lead to more contention and slower performance.

    • Isolation levels can be set at the transaction level or for individual queries.

    • For example, a transaction with Repeatable Read isolation level w...

  • Answered by AI
  • Q4. Use of Cond parameter
  • Ans. 

    Cond parameter is used to conditionally render elements in React.

    • It is a ternary operator that takes three arguments.

    • The first argument is the condition to be evaluated.

    • The second argument is the element to be rendered if the condition is true.

    • The third argument is the element to be rendered if the condition is false.

    • It can be used to render different elements based on the state of the component.

  • Answered by AI
  • Q5. Use of if else in jcl
  • Ans. 

    If else can be used in JCL to conditionally execute steps based on certain criteria.

    • IF statement can be used to check for a condition and execute a step or skip it

    • ELSE statement can be used to execute a different step if the condition is not met

    • Examples include checking for file existence or job completion status

  • Answered by AI
  • Q6. Index and subscript in cobol
  • Ans. 

    Index and subscript are used in COBOL to access elements in arrays.

    • Index is used to access a specific element in an array based on its position

    • Subscript is used to access a specific element in an array based on its value

    • Both index and subscript can be used interchangeably in COBOL

    • Example: ARRAY(3) is the same as ARRAY(3:3)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They want to hire you that's why they have scheduled interview. They will basically asked the that you have done before mostly scenario based questions.

Skills evaluated in this interview

Code and Theory Interview FAQs

How many rounds are there in Code and Theory Software Engineer interview for experienced candidates?
Code and Theory interview process for experienced candidates usually has 5 rounds. The most common rounds in the Code and Theory interview process for experienced candidates are Technical, Resume Shortlist and HR.
What are the top questions asked in Code and Theory Software Engineer interview for experienced candidates?

Some of the top questions asked at the Code and Theory Software Engineer interview for experienced candidates -

  1. - Questions on Codable - Value Type vs. Reference Type - API call through URLSe...read more
  2. - Protocols - Generics - Higher Order Functions - Multithreading and Concurre...read more
  3. Behavioral Round with some logical questi...read more

Tell us how to improve this page.

Code and Theory Software Engineer Salary
based on 68 salaries
₹4 L/yr - ₹17.1 L/yr
19% more than the average Software Engineer Salary in India
View more details

Code and Theory Software Engineer Reviews and Ratings

based on 10 reviews

2.7/5

Rating in categories

2.7

Skill development

3.2

Work-Life balance

3.0

Salary & Benefits

1.7

Job Security

3.3

Company culture

3.2

Promotions/Appraisal

2.7

Work Satisfaction

Explore 10 Reviews and Ratings
Software Engineer
68 salaries
unlock blur

₹4 L/yr - ₹17.1 L/yr

Senior Software Engineer
61 salaries
unlock blur

₹14 L/yr - ₹27 L/yr

Associate Software Engineer
26 salaries
unlock blur

₹6.4 L/yr - ₹7 L/yr

Technical Project Manager
15 salaries
unlock blur

₹24 L/yr - ₹36 L/yr

QA Engineer
15 salaries
unlock blur

₹7.2 L/yr - ₹15 L/yr

Explore more salaries
Compare Code and Theory with

Wunderman Thompson

3.2
Compare

AKQA

3.1
Compare

Razorfish

1.5
Compare

Isobar

2.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview