Upload Button Icon Add office photos
Engaged Employer

i

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

Birlasoft Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 2.7k Reviews

Filter interviews by

Birlasoft As400 Developer Interview Questions and Answers

Updated 13 May 2024

Birlasoft As400 Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Why is OVRDBF Command used?
  • Ans. 

    OVRDBF command is used to override the file being processed in a program with a different file.

    • Used to temporarily change the file being processed in a program

    • Helps in testing programs with different files without changing the program logic

    • Can be used to redirect output to a different file

  • Answered by AI

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you optimize Stored procedure
  • Ans. 

    Optimizing stored procedures involves using proper indexing, reducing unnecessary loops, and minimizing database calls.

    • Use proper indexing on columns used in WHERE clauses to improve query performance

    • Avoid using cursors and loops whenever possible, as they can be inefficient

    • Minimize the number of database calls by combining multiple queries into a single query or using temporary tables

    • Consider using bulk processing tec...

  • Answered by AI
  • Q2. How do you optimize SQL query
  • Ans. 

    Optimizing SQL queries involves using indexes, minimizing data retrieval, avoiding unnecessary joins, and optimizing query structure.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Avoid unnecessary joins by using EXISTS or IN clauses instead

    • Optimize query structure by using appropriate join types and conditions

  • Answered by AI
  • Q3. What is use of returning clause
  • Ans. 

    Returning clause is used to return a value from a function or procedure in PL/SQL.

    • Used to return a single value from a function or procedure

    • Can be used to return multiple values using OUT parameters

    • Helps in passing values back to the calling program

  • Answered by AI
  • Q4. Disadvantages of triggers
  • Ans. 

    Triggers can lead to performance issues, complexity, and potential for unintended consequences.

    • Triggers can make code harder to debug and maintain

    • They can lead to cascading effects if not carefully implemented

    • Performance can be impacted if triggers are not optimized

    • Triggers can introduce dependencies between different parts of the codebase

  • Answered by AI

Skills evaluated in this interview

UI Developer Interview Questions & Answers

Coforge user image Divya Shrivastav

posted on 19 Nov 2024

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

I applied via Company Website and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is closure?
  • Ans. 

    Closure is a function that has access to its own scope, as well as the scope in which it was defined.

    • Closure allows a function to access variables from its outer function even after the outer function has finished executing.

    • It helps in maintaining state in asynchronous operations.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
  • Q2. Define hooks in react?
  • Ans. 

    Hooks in React are functions that let you use state and other React features without writing a class.

    • Hooks were introduced in React 16.8 to allow functional components to have state and lifecycle methods.

    • useState() is a hook that allows you to add state to functional components.

    • useEffect() is a hook that allows you to perform side effects in functional components.

    • Custom hooks are reusable functions that can contain log...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Write the code in eggplant
  • Ans. 

    Writing code in eggplant for Senior Developer interview

    • Use 'click' to simulate a mouse click on an element

    • Use 'typeText' to enter text into a field

    • Use 'verify' to check if an element is present on the screen

  • Answered by AI

PHP Developer Interview Questions & Answers

Cybage user image Abhay Krishnan Gupta

posted on 23 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good test process keep trying you will get the job

Round 2 - Technical 

(2 Questions)

  • Q1. Good question asked testing
  • Q2. Good question asked teating

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying one day you will get the job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Longest common substring in an array
  • Ans. 

    Find the longest common substring in an array of strings.

    • Iterate through each string in the array and compare with all other strings to find common substrings.

    • Keep track of the longest common substring found so far.

    • Return the longest common substring at the end.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain Virtual DOM in React
  • Ans. 

    Virtual DOM in React is a lightweight copy of the actual DOM, used for efficient updates and rendering.

    • Virtual DOM is a concept where a lightweight copy of the actual DOM is created in memory.

    • When changes are made to the UI, React compares the Virtual DOM with the actual DOM to identify the differences.

    • React then updates only the necessary parts of the actual DOM, minimizing the number of DOM manipulations for better p...

  • Answered by AI
  • Q2. How to optimise a React application
  • Ans. 

    Optimising a React application involves code splitting, lazy loading, using memoization, reducing unnecessary re-renders, and optimizing network requests.

    • Implement code splitting to load only necessary code for each route or component.

    • Use lazy loading to load components only when they are needed, reducing initial load time.

    • Utilize memoization techniques like useMemo and useCallback to prevent unnecessary re-renders.

    • Avo...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. CREATE A FUNCTION BASED ONLOGIC SHARED
  • Ans. 

    Create a function based on shared logic

    • Identify common logic that can be reused in multiple functions

    • Create a separate function to encapsulate the shared logic

    • Call the shared function from other functions where the logic is needed

  • Answered by AI
  • Q2. FOR AN ENTITY GIVE DTAILS OF PREVOUS AND NEXT DATE FOR PARTICULAR DEPATMENT
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. CSS Box-model definition
  • Ans. 

    CSS Box-model defines how elements are rendered in a webpage, including padding, border, and margin.

    • Box-model consists of content, padding, border, and margin

    • Content area is where text or images are displayed

    • Padding is the space between content and border

    • Border is the line around the content and padding

    • Margin is the space outside the border

  • Answered by AI
  • Q2. Difference b/n flexbox and grid
  • Ans. 

    Flexbox is for one-dimensional layouts, grid is for two-dimensional layouts.

    • Flexbox is best for arranging items in a single row or column.

    • Grid is best for creating complex layouts with rows and columns.

    • Flexbox is more suitable for smaller scale layouts, while grid is better for larger scale layouts.

    • Flexbox is more flexible in terms of item order and sizing, while grid provides more control over the overall layout.

    • Both

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical discussion
Round 2 - One-on-one 

(1 Question)

  • Q1. Manager round and technical discussion
Round 3 - HR 

(1 Question)

  • Q1. Selection processs
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Array qs reverse
  • Q2. Question about angular and react

Birlasoft Interview FAQs

How many rounds are there in Birlasoft As400 Developer interview?
Birlasoft interview process usually has 1 rounds. The most common rounds in the Birlasoft interview process are Technical.
How to prepare for Birlasoft As400 Developer 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 Birlasoft. The most common topics and skills that interviewers at Birlasoft expect are AS400, Information Technology, Monitoring and Evaluation, Production Support and RPG.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 803 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
View all

Birlasoft As400 Developer 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 & Benefits

5.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
1.5k salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹5.5 L/yr - ₹20.4 L/yr

Software Engineer
1.1k salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Technical Lead
1.1k salaries
unlock blur

₹10 L/yr - ₹33.8 L/yr

Technical Specialist
1.1k salaries
unlock blur

₹7.9 L/yr - ₹28.5 L/yr

Explore more salaries
Compare Birlasoft with

Accenture

3.9
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Wipro

3.7
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