Upload Button Icon Add office photos

Filter interviews by

Genpact Web Publisher Interview Questions and Answers for Experienced

Updated 17 Jul 2024

Genpact Web Publisher Interview Experiences for Experienced

1 interview found

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

(2 Questions)

  • Q1. Tell me about yourselves
  • Q2. Tell me something about your work
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me the diff b/w span and div
  • Ans. 

    Span is an inline element used for styling small portions of text, while div is a block-level element used for grouping and styling larger sections of content.

    • Span is an inline element, div is a block-level element

    • Span is used for styling small portions of text, div is used for grouping larger sections of content

    • Span does not create a new line, div creates a new block-level element

  • Answered by AI
  • Q2. Make a table in html
  • Ans. 

    Creating a table in HTML

    • Use the

      tag to start the table

    • Use

    • tags to define rows

    • Use

    • tags to define cells within each row

      Answered by AI

      Interview Preparation Tips

      Interview preparation tips for other job seekers - Be polite

      Skills evaluated in this interview

      Interview questions from similar companies

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

      (1 Question)

      • Q1. What is jdk, string related questions, basic java oops questions?
      Interview experience
      5
      Excellent
      Difficulty level
      Moderate
      Process Duration
      Less than 2 weeks
      Result
      No response

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

      Round 1 - Technical 

      (2 Questions)

      • Q1. Sorting program without using any in built functions
      • Ans. 

        Implement a sorting program without using any built-in functions

        • Iterate through the array and compare each element with the rest to sort

        • Use a sorting algorithm like bubble sort, selection sort, or insertion sort

        • Implement the sorting logic using loops and conditional statements

      • Answered by AI
      • Q2. Writing a sort program

      Interview Preparation Tips

      Interview preparation tips for other job seekers - Prepare well in coding challenges

      Skills evaluated in this interview

      Interview experience
      3
      Average
      Difficulty level
      Moderate
      Process Duration
      -
      Result
      Selected Selected

      I applied via Campus Placement

      Round 1 - Coding Test 

      1 hour coding test with 2 LC easy questions

      Round 2 - Technical 

      (1 Question)

      • Q1. Basic DSA and problem solving
      Round 3 - One-on-one 

      (1 Question)

      • Q1. Bit of SQL and Personal Projects
      Round 4 - HR 

      (1 Question)

      • Q1. It was more like a discussion
      Interview experience
      4
      Good
      Difficulty level
      -
      Process Duration
      -
      Result
      -

      I applied via Campus Placement

      Round 1 - Aptitude Test 

      Basic aptitude and essay

      Round 2 - Technical 

      (1 Question)

      • Q1. Easy, questions around rojects
      Interview experience
      5
      Excellent
      Difficulty level
      Moderate
      Process Duration
      2-4 weeks
      Result
      Selected Selected

      I was interviewed before Nov 2023.

      Round 1 - One-on-one 

      (1 Question)

      • Q1. Java 8 feature mutithreading code on move 0 to last

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

      C and c++ and data structure

      Round 3 - Technical 

      (1 Question)

      • Q1. Question front Data structure, c++ and c
      Round 4 - HR 

      (1 Question)

      • Q1. Ask all those questions that you want

      Interview Preparation Tips

      Interview preparation tips for other job seekers - Focus on body language.
      Learn new things.
      Round 1 - Coding Test 

      Java, micro service, spring boot

      Round 2 - Technical 

      (4 Questions)

      • Q1. Micro service basics
      • Q2. Simple Java programming
      • Q3. Basic questions of SQL queries
      • Q4. Questions from project related

      Interview Preparation Tips

      Interview preparation tips for other job seekers - Mostly asked basic questions of Java, spring boot, micro service, SQL queries

      I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

      Interview Questionnaire 

      8 Questions

      • Q1. What is comp & comp 3 differance ?
      • Ans. 

        COMP and COMP-3 are data types used in COBOL programming language.

        • COMP is a binary data type that stores numeric values as binary integers.

        • COMP-3 is a packed decimal data type that stores numeric values as packed decimal digits.

        • COMP uses less storage space compared to COMP-3.

        • COMP-3 is more suitable for decimal arithmetic operations.

        • COMP-3 values are stored in a packed format, where each digit occupies half a byte.

        • COMP-...

      • Answered by AI
      • Q2. How to check file is empty or not ?
      • Ans. 

        To check if a file is empty or not, we can use the file's size or read the file and check for any content.

        • Get the size of the file using file system APIs and check if it is zero.

        • Read the file and check if it contains any content.

        • Handle exceptions or errors that may occur during file operations.

      • Answered by AI
      • Q3. How many ways data pass jcl to cobol program ?
      • Ans. 

        Data can pass from JCL to COBOL program in multiple ways, such as through input files, system symbols, and program parameters.

        • Input files: Data can be passed to a COBOL program through input files specified in the JCL.

        • System symbols: JCL can define system symbols that can be accessed by the COBOL program to retrieve data.

        • Program parameters: JCL can pass parameters to the COBOL program, which can be used to receive data...

      • Answered by AI
      • Q4. How to data insert or update in table ?
      • Ans. 

        To insert or update data in a table, use SQL statements like INSERT INTO or UPDATE.

        • For inserting data, use the INSERT INTO statement followed by the table name and column names.

        • Specify the values to be inserted using the VALUES keyword.

        • For updating data, use the UPDATE statement followed by the table name.

        • Set the column values to be updated using the SET keyword.

        • Use conditions with the WHERE clause to specify which row

      • Answered by AI
      • Q5. What is array ? how to load data ?
      • Ans. 

        An array is a data structure that stores a collection of elements of the same type.

        • Arrays can be used to store and access multiple values using a single variable.

        • To load data into an array of strings, you can assign values to each element individually or use a loop.

        • Example: String[] names = {"John", "Jane", "Mike"};

        • Example: for(int i = 0; i < names.length; i++) { names[i] = "Value" + i; }

      • Answered by AI
      • Q6. 1 have 1000 records i will get abend in 590 th record how to restart logic using ?
      • Q7. We have 2 files eliminate duplicates and send to duplicate files in to another out put file how to achieve it ?
      • Ans. 

        To eliminate duplicates from 2 files and send them to another output file, we can use a combination of file reading, hashing, and file writing.

        • Read the contents of both files and store them in separate arrays or lists.

        • Create a hash table or dictionary to keep track of the unique elements in the arrays.

        • Iterate through the arrays and add each element to the hash table. If the element already exists, skip it.

        • Write the con...

      • Answered by AI
      • Q8. Soc 7 abend how to find ? resolve it ?
      • Ans. 

        S0C7 abend is a mainframe error caused by invalid data. It can be resolved by identifying the source of the error and correcting it.

        • S0C7 abend is caused by invalid data in a numeric field

        • To resolve it, identify the source of the error and correct it

        • Common causes include incorrect data types, invalid characters, and overflow

        • Debugging tools like IBM Debug Tool can help identify the source of the error

      • Answered by AI

      Interview Preparation Tips

      Interview preparation tips for other job seekers - its going good

      Skills evaluated in this interview

      Genpact Interview FAQs

      How many rounds are there in Genpact Web Publisher interview for experienced candidates?
      Genpact interview process for experienced candidates usually has 2 rounds. The most common rounds in the Genpact interview process for experienced candidates are Technical.
      How to prepare for Genpact Web Publisher interview for experienced candidates?
      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 Genpact. The most common topics and skills that interviewers at Genpact expect are HTML, Javascript, Photoshop, Web Development and Web Technologies.
      What are the top questions asked in Genpact Web Publisher interview for experienced candidates?

      Some of the top questions asked at the Genpact Web Publisher interview for experienced candidates -

      1. Tell me the diff b/w span and ...read more
      2. Make a table in h...read more

      Tell us how to improve this page.

      Interview Questions from Similar Companies

      TCS Interview Questions
      3.7
       • 10.3k Interviews
      Accenture Interview Questions
      3.9
       • 8.1k Interviews
      Infosys Interview Questions
      3.7
       • 7.5k Interviews
      Wipro Interview Questions
      3.7
       • 5.6k Interviews
      Cognizant Interview Questions
      3.8
       • 5.5k Interviews
      Capgemini Interview Questions
      3.8
       • 4.8k Interviews
      Tech Mahindra Interview Questions
      3.6
       • 3.8k Interviews
      HCLTech Interview Questions
      3.5
       • 3.7k Interviews
      IBM Interview Questions
      4.1
       • 2.4k Interviews
      DXC Technology Interview Questions
      3.7
       • 803 Interviews
      View all
      Genpact Web Publisher Salary
      based on 8 salaries
      ₹2.4 L/yr - ₹3.6 L/yr
      30% less than the average Web Publisher Salary in India
      View more details

      Genpact Web Publisher Reviews and Ratings

      based on 2 reviews

      4.2/5

      Rating in categories

      4.2

      Skill development

      5.0

      Work-life balance

      2.9

      Salary

      5.0

      Job security

      5.0

      Company culture

      2.9

      Promotions

      4.6

      Work satisfaction

      Explore 2 Reviews and Ratings
      Process Developer
      36.1k salaries
      unlock blur

      ₹1 L/yr - ₹6.8 L/yr

      Process Associate
      28k salaries
      unlock blur

      ₹0.9 L/yr - ₹6.5 L/yr

      Assistant Manager
      19.8k salaries
      unlock blur

      ₹5 L/yr - ₹14 L/yr

      Management Trainee
      19.1k salaries
      unlock blur

      ₹1.6 L/yr - ₹8.5 L/yr

      Manager
      7.4k salaries
      unlock blur

      ₹7 L/yr - ₹24 L/yr

      Explore more salaries
      Compare Genpact with

      Accenture

      3.9
      Compare

      Capgemini

      3.8
      Compare

      TCS

      3.7
      Compare

      Cognizant

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