Upload Button Icon Add office photos

Filter interviews by

Lumina Datamatics Publication Assistant Interview Questions and Answers

Updated 28 Jan 2022

Lumina Datamatics Publication Assistant Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. SELF INTRODUCTION
  • Q2. PROBLEM SOLVING (SAMPLE)

Interview Preparation Tips

Interview preparation tips for other job seekers - DO NOT WEAR DARK SHADE SHIRT AND LIGHT SHADE TROUSERS AS COMBINATION
DO NOT USE STRONG PERFUME
ALWAYS TRY TO SEEK ATTENTION OF THE INTERVIEWERS

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is JWT Authentication
  • Q2. Design Patterns
  • Q3. Different Types of Routing in MVC
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(1 Question)

  • Q1. What is Entity Framework and how does it function?
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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Sql joins, cte, Sp vs function, user defined types,
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • SQL joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • CTE (Common Table Expression) is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • Stored Procedures (SP) are pre...

  • Answered by AI
  • Q2. C# interfces, opps concepts, DI, asp page life cycle
  • Q3. Ado. Net & entity frework difference
  • Ans. 

    ADO.NET is a data access technology while Entity Framework is an ORM framework for data access in .NET applications.

    • ADO.NET is a set of classes used to interact with data sources like databases directly.

    • Entity Framework is an ORM framework that allows developers to work with data in terms of objects and classes.

    • ADO.NET requires writing SQL queries manually, while Entity Framework allows querying data using LINQ.

    • Entity ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kellton DOT NET Developer interview:
  • OOPS
  • C#
  • SQL

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Oct 2023. There were 2 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 - Technical 

(12 Questions)

  • Q1. Abstract class vs interfaces. What would i choose and why.
  • Ans. 

    Abstract class is used when there is a need for default implementation, while interfaces are used for multiple inheritance.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can provide default implementations for methods, while interfaces cannot.

    • Interfaces allow a class to implement multiple interfaces, but can only inherit from one abstra...

  • Answered by AI
  • Q2. Difference between .NET core, .NET framework and .NET
  • Ans. 

    NET core is a cross-platform, open-source framework for building modern, cloud-based, internet-connected applications. NET framework is a Windows-only framework for building Windows desktop applications. NET is a general term encompassing both .NET core and .NET framework.

    • NET core is cross-platform and open-source, while .NET framework is Windows-only.

    • .NET core is modular and lightweight, allowing for faster performanc...

  • Answered by AI
  • Q3. Pipelines and Middlewares in .NET. How would i configure them.
  • Ans. 

    Pipelines and Middlewares in .NET are used for request processing and can be configured using middleware components.

    • Pipelines in .NET are used to define a series of middleware components that process an HTTP request.

    • Middlewares are components that can handle requests and responses in the pipeline.

    • To configure pipelines and middlewares in .NET, you can use the 'UseMiddleware' method in the 'Configure' method of the Star...

  • Answered by AI
  • Q4. Difference between App.Use() and App.Run()
  • Ans. 

    App.Use() is used for adding middleware to the request pipeline, while App.Run() is used for handling the request directly.

    • App.Use() is used to add middleware components to the request pipeline.

    • App.Run() is used to handle the request directly without passing it to the next middleware component.

    • App.Use() is typically used for setting up middleware like authentication, logging, etc.

    • App.Run() is used for handling the fina...

  • Answered by AI
  • Q5. SOLID principles (S and O was asked)
  • Q6. Dependency Inversion vs Inversion of Control. I had to write examples of constructor injection, method injection with the help of a DBContext file.
  • Q7. String vs String Builder. Comparision of their mutability, speed, memory allocated, usability. Was provided a use case and asked which one to use and how. String Interpolation. String Manipulation.
  • Ans. 

    String is immutable, while StringBuilder is mutable. StringBuilder is faster and more memory efficient for string manipulation.

    • String is immutable, meaning once created, it cannot be changed. StringBuilder is mutable, allowing for efficient string manipulation.

    • StringBuilder is faster than String for concatenating multiple strings, as it does not create a new string object each time.

    • String uses more memory as it creates...

  • Answered by AI
  • Q8. Database Normalization (2NF was asked). Was given an sample dataset, asked to normalize and eliminate partial dependency. Given 2 entities Students and Class, establish relationships between them and prepa...
  • Q9. Difference between Unique, Primary Key. Clustered and Non-Clustered Indices.
  • Ans. 

    Unique, Primary Key, Clustered, and Non-Clustered Indices are all used in database management to enforce data integrity and improve query performance.

    • Unique constraint ensures that all values in a column are unique, but allows NULL values.

    • Primary Key constraint ensures that all values in a column are unique and not NULL. Each table can have only one Primary Key.

    • Clustered Index physically reorders the way records in the...

  • Answered by AI
  • Q10. Prepare an example of JWT authentication and Oauth for an API.
  • Ans. 

    JWT authentication and OAuth example for API

    • Implement JWT authentication by generating a token upon user login and including it in the Authorization header of API requests

    • Use OAuth for user authorization by obtaining access tokens from a third-party provider like Google or Facebook

    • Ensure API endpoints validate JWT tokens and OAuth access tokens before allowing access to resources

  • Answered by AI
  • Q11. Difference between $.post and $.ajax.
  • Ans. 

    Both $.post and $.ajax are methods in jQuery used for making AJAX requests, but $.ajax is more versatile and customizable.

    • Both $.post and $.ajax are used for making AJAX requests in jQuery.

    • $.post is a shorthand method for $.ajax with predefined settings for POST requests.

    • $.ajax is more versatile and customizable, allowing for different types of requests and more options.

    • Example: $.post('example.php', {data: 'example'},...

  • Answered by AI
  • Q12. Write a Linq query to fetch data the fastest.(i used iQueryable) Write a Linq query to check if a record exists in the table.(i used ANY)

Interview Preparation Tips

Topics to prepare for NeoSOFT DOT NET Developer interview:
  • C#
  • webapi
  • SQL Server
Interview preparation tips for other job seekers - The interviewer was asking real life use case-driven questions. You can learn a bit about low level system design.
Focus more on C# and DOTNET 6.

Skills evaluated in this interview

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

Code for prime numbers

Interview Preparation Tips

Interview preparation tips for other job seekers - good interview done here
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Dependency injection
  • Q2. Dispose and finalize
  • Ans. 

    Dispose is used to release unmanaged resources, while finalize is used for cleanup before an object is destroyed.

    • Dispose is called explicitly by the developer, while finalize is called by the garbage collector.

    • Dispose should be implemented in classes that directly use unmanaged resources like file handles or database connections.

    • Finalize is used for cleanup tasks like closing files or releasing memory.

    • Implement IDispos...

  • 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 Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is oops concept why is used
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of different classes to be treated as instances of th...

  • Answered by AI
  • Q2. Why inheritance used in projects
  • Ans. 

    Inheritance is used in projects to promote code reusability, reduce redundancy, and improve maintainability.

    • Inheritance allows for the creation of a hierarchy of classes where common attributes and methods can be defined in a base class and inherited by subclasses.

    • It helps in promoting code reusability by allowing subclasses to inherit properties and methods from a base class, reducing redundancy in code.

    • Inheritance al...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is Veri low package provide dot joine if you are fresher
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via AmbitionBox and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple discussion
Round 2 - Coding Test 

Any coding test in asp.net for 1 hour duration

Round 3 - Technical 

(1 Question)

  • Q1. Ask some technical questions

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Executive
354 salaries
unlock blur

₹1 L/yr - ₹4 L/yr

Senior Executive
348 salaries
unlock blur

₹1.7 L/yr - ₹4.5 L/yr

Group Leader
228 salaries
unlock blur

₹2.4 L/yr - ₹6.2 L/yr

E-Commerce Executive
204 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Editorial Assistant
152 salaries
unlock blur

₹1.7 L/yr - ₹5.1 L/yr

Explore more salaries
Compare Lumina Datamatics with

Genpact

3.8
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

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