Upload Button Icon Add office photos

Filter interviews by

LogicValley Technologies Senior Software Developer Interview Questions, Process, and Tips

Updated 1 Jul 2020

LogicValley Technologies Senior Software Developer Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

18 Questions

  • Q1. What is Interface? Where did u used in ur project explain me?
  • Ans. 

    An interface is a contract that specifies the methods that a class must implement.

    • Interfaces define a set of methods that a class must implement.

    • Interfaces are used to achieve abstraction and loose coupling.

    • Interfaces are commonly used in Java to implement multiple inheritance.

    • In my project, I used interfaces to define a common set of methods that multiple classes needed to implement.

  • Answered by AI
  • Q2. Skip and skipkeep and what is difference between linq and sql?
  • Ans. 

    Skip, SkipWhile, and SkipLast are LINQ methods used to skip elements in a sequence.

    • Skip(n) skips the first n elements in a sequence.

    • SkipWhile(predicate) skips elements in a sequence while the predicate is true.

    • SkipLast(n) skips the last n elements in a sequence.

    • LINQ is a language integrated query that allows querying data from different data sources.

    • SQL is a database management system that uses Structured Query Languag...

  • Answered by AI
  • Q3. What is difference between abstract and interface?
  • Ans. 

    Abstract class is a class that cannot be instantiated, while interface is a contract that a class must implement.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Abstract class can have constructors, while interface cannot.

    • Abstract class can have instance variables, while...

  • Answered by AI
  • Q4. Explain runtime and compile time polymorpism?
  • Ans. 

    Runtime polymorphism is achieved through method overriding while compile-time polymorphism is achieved through method overloading.

    • Runtime polymorphism is also known as dynamic polymorphism.

    • It is achieved through inheritance and method overriding.

    • The decision of which method to call is made at runtime based on the object being referred to.

    • Compile-time polymorphism is also known as static polymorphism.

    • It is achieved thro...

  • Answered by AI
  • Q5. Difference between IEnumerable and IQueriable and ArrayList and List ?
  • Ans. 

    IEnumerable and IQueryable are interfaces for querying data, while ArrayList and List are collections for storing data.

    • IEnumerable is used for querying data from in-memory collections, while IQueryable is used for querying data from external data sources like databases.

    • ArrayList is a non-generic collection that can store any type of object, while List is a generic collection that can store a specific type of object.

    • Lis...

  • Answered by AI
  • Q6. Which controller render the view?w
  • Ans. 

    The controller that renders the view depends on the framework being used.

    • In ASP.NET MVC, the controller renders the view

    • In AngularJS, the view is rendered by the browser

    • In React, the view is rendered by the component

    • The controller can pass data to the view for rendering

  • Answered by AI
  • Q7. Which controller consume api ?
  • Ans. 

    The controller that consumes the API depends on the architecture of the application.

    • In a traditional MVC architecture, the controller would consume the API.

    • In a client-server architecture, the client-side controller would consume the API.

    • In a microservices architecture, each microservice would have its own controller to consume the API.

    • The choice of controller also depends on the programming language and framework used

  • Answered by AI
  • Q8. What are all the type of controller in mvc?
  • Ans. 

    There are three types of controllers in MVC: 1. View Controller 2. Action Controller 3. Partial View Controller

    • View Controller handles user interface and displays data

    • Action Controller handles user input and performs actions

    • Partial View Controller handles reusable UI components

    • Examples: HomeController, AccountController, ProductController

  • Answered by AI
  • Q9. Explain design patter what do u have experience on it?
  • Q10. How to handle million of the record in ur application?
  • Ans. 

    Use efficient data structures and algorithms to handle large data sets.

    • Use indexing and partitioning to break down data into manageable chunks.

    • Implement caching and lazy loading to reduce memory usage.

    • Use parallel processing and distributed computing to improve performance.

    • Optimize database queries and use NoSQL databases for scalability.

    • Consider using data compression and encryption for security and storage efficiency

  • Answered by AI
  • Q11. What is Sql Injection?How to solve it?
  • Ans. 

    SQL Injection is a type of cyber attack where malicious SQL statements are inserted into an entry field to manipulate the database.

    • Use parameterized queries or prepared statements

    • Sanitize user input

    • Limit database user privileges

    • Use a web application firewall

    • Regularly update and patch software

  • Answered by AI
  • Q12. In which situation you use abstract and interface?
  • Ans. 

    Abstract classes are used when we want to provide a default implementation and interfaces are used when we want to enforce a contract.

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

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes can have constructors while interfaces cannot.

    • Interfaces are used for a...

  • Answered by AI
  • Q13. Difference between constant andbread only?
  • Ans. 

    Constants are values that cannot be changed during program execution, whereas variables can be changed.

    • Constants are declared using the 'const' keyword.

    • Variables are declared using the 'var' or 'let' keyword.

    • Constants must be initialized at the time of declaration.

    • Variables can be initialized later in the program.

    • Constants are used to declare values that should not be changed, such as mathematical constants.

    • Variables a...

  • Answered by AI
  • Q14. What is difference between string and string builder?
  • Ans. 

    String is immutable while StringBuilder is mutable.

    • String is a sequence of characters that cannot be modified once created.

    • StringBuilder is a dynamic object that can be modified and manipulated.

    • String concatenation creates a new string object while StringBuilder modifies the existing object.

    • String is thread-safe while StringBuilder is not.

    • Use String for small strings and StringBuilder for large strings or frequent mani

  • Answered by AI
  • Q15. Value type and Refference type?
  • Q16. Which type used in array list and list?
  • Ans. 

    Both array list and list use the type of the elements they contain.

    • Array list and list can contain elements of any type, including custom classes.

    • The type of the elements is specified when creating the array list or list.

    • For example, ArrayList or List.

Answered by AI
  • Q17. What is object and class?
  • Ans. 

    An object is an instance of a class. A class is a blueprint for creating objects.

    • A class is a template or blueprint for creating objects

    • An object is an instance of a class

    • Classes define the properties and methods of objects

    • Objects have state and behavior

    • Classes can inherit properties and methods from other classes

  • Answered by AI
  • Q18. What is difference between SP and Query.. use of SP?
  • Ans. 

    SP stands for Stored Procedure which is a pre-compiled SQL code while Query is a statement used to retrieve data from a database.

    • SP is faster than Query as it is pre-compiled

    • SP can be used to execute complex logic and calculations

    • Query is used to retrieve data from a database

    • SP can be used to improve database security by granting access to only specific procedures

    • Query can be used to filter, sort and group data

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be Bold and Confident on You ... Thank You...

    Skills evaluated in this interview

    Interview questions from similar companies

    I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

    Round 1 - One-on-one 

    (1 Question)

    • Q1. Discuss 4 case study related to supply chain management.

    Interview Preparation Tips

    Topics to prepare for Tech Mahindra Senior Software Engineer interview:
    • Supply Chain Management
    Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

    I was interviewed before Sep 2020.

    Round 1 - Coding Test 

    (1 Question)

    Round duration - 140 minutes
    Round difficulty - Medium

    Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

    • Q1. 

      Sum of Two Numbers Represented as Arrays

      Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

    • Ans. 

      Given two numbers represented as arrays, calculate their sum and return the result as an array.

      • Iterate through the arrays from right to left, adding digits and carrying over if necessary

      • Handle cases where one array is longer than the other by considering the remaining digits

      • Ensure the final sum array does not have any leading zeros

    • Answered by AI
    Round 2 - Face to Face 

    Round duration - 20 minutes
    Round difficulty - Easy

    The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

    Round 3 - HR 

    Round duration - 8 minutes
    Round difficulty - Easy

    This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

    Interview Preparation Tips

    Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

    Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
    Tip 2 : Exercise problems based on OOPS concepts and others too.
    Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

    Application resume tips for other job seekers

    Tip 1 : Your resume should be in standard form, short and simple will be more effective.
    Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Clear basics of oops and design pattern

    I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Hr

    Interview Preparation Tips

    Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

    I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

    Interview Preparation Tips

    Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
    2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

    Interview Questionnaire 

    1 Question

    • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

    I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. Simple program
    • Q2. I wrote a simple program in C

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be bold and confident

    I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

    I was interviewed before Jun 2021.

    Round 1 - Coding Test 

    (2 Questions)

    Round duration - 180 minutes
    Round difficulty - Easy

    It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

    • Q1. 

      Find the Duplicate Number Problem Statement

      Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

    • Ans. 

      Find the duplicate number in an array of integers from 0 to (N-2).

      • Iterate through the array and keep track of the frequency of each number using a hashmap.

      • Return the number with a frequency greater than 1 as the duplicate number.

      • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

    • Answered by AI
    • Q2. 

      Reverse String Operations Problem Statement

      You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

    • Ans. 

      Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

      • Iterate through the array of indices and reverse the substrings accordingly

      • Ensure the range specified by each index is non-empty

      • Return the final string after all operations are completed

    • Answered by AI
    Round 2 - Video Call 

    Round duration - 60 Minutes
    Round difficulty - Easy

    It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

    Interview Preparation Tips

    Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

    Tip 1 : Practice aptitude
    Tip 2 : Focus on practicing coding
    Tip 3 : Learn from mistakes

    Application resume tips for other job seekers

    Tip 1 : Mention some projects that you have done
    Tip 2 : Try to have skills that are required for the role

    Final outcome of the interviewSelected

    Skills evaluated in this interview

    LogicValley Technologies Interview FAQs

    What are the top questions asked in LogicValley Technologies Senior Software Developer interview?

    Some of the top questions asked at the LogicValley Technologies Senior Software Developer interview -

    1. What is Interface? Where did u used in ur project explain ...read more
    2. Skip and skipkeep and what is difference between linq and s...read more
    3. How to handle million of the record in ur applicati...read more

    Tell us how to improve this page.

    LogicValley Technologies Senior Software Developer Salary
    based on 4 salaries
    ₹4 L/yr - ₹6 L/yr
    65% less than the average Senior Software Developer Salary in India
    View more details

    LogicValley Technologies Senior Software 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

    5.0

    Job security

    5.0

    Company culture

    5.0

    Promotions

    5.0

    Work satisfaction

    Explore 1 Review and Rating
    Software Engineer
    28 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Technical Lead
    18 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Software Engineer
    18 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Business Analyst
    11 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Software Developer
    10 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare LogicValley Technologies with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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