Upload Button Icon Add office photos

Filter interviews by

Logixal Solutions Interview Questions and Answers

Updated 14 Feb 2024

Logixal Solutions Interview Experiences

Popular Designations

5 interviews found

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

(2 Questions)

  • Q1. Java basic question for fresher role
  • Q2. Sql queries which are easily available as interview question

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 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 

(1 Question)

  • Q1. Core Java Complete basics interviewer asked about every concept.
Round 3 - Technical 

(1 Question)

  • Q1. Advanced java and real life applications of concepts
  • Ans. 

    Advanced Java concepts are used in real-life applications to develop complex software systems.

    • Advanced Java concepts like multithreading, networking, and JDBC are used in developing enterprise-level applications.

    • Java frameworks like Spring, Hibernate, and Struts are used to develop web applications.

    • Java is used in developing Android applications.

    • Java is used in developing financial applications like trading systems and...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just brush up core java completely. Springboot security would also help.

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Mklfelkrrmjkjdleiwjfilej jlhf/liowejfwjdlo

Round 2 - HR 

(2 Questions)

  • Q1. Give a brief introduction about yourself
  • Q2. What are your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - keep seeking out, dont lose hope and keep trying with all your best strenghth

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I applied via Approached by Company and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts, inheritance, abstract, interface
  • Q2. Java 1.8 new features like stream api

Interview Preparation Tips

Interview preparation tips for other job seekers - On Overloading and overriding concept base multiple questions,
Spring boot

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (209)

Logixal Solutions interview questions for popular designations

 Java Developer

 (2)

 Software Engineer

 (1)

 Software Developer

 (1)

 Associate Software Engineer

 (1)

I applied via Campus Placement and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Introduction 2. Oops 3. Overloding and overriding 4. String related question

Interview Preparation Tips

Interview preparation tips for other job seekers - It was smooth process. Which having 2round of interview process first round is for technical and second round for managerial round. After clearing this will get a call from HR for offer.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Write program fibonacci series, write program using boolean, write class cast exceptn, singleton design pattern(like you have to jvm one have jdk 1.7 and other have jdk 1.8 how many instance created if one...
  • Ans. 

    This interview question covers various topics including programming, design patterns, data structures, and exception handling in Java.

    • Write a program to generate the Fibonacci series

    • Write a program using boolean variables

    • Explain the ClassCastException and how to handle it

    • Discuss the Singleton design pattern and its implementation with different JDK versions

    • Explain abstract classes and interfaces in your current project

    • ...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: core java , spring, hibernate, jsp, jpa

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation helps in achieving data abstraction and information hiding.

    • It allows for better control over data and prevents unauthorized access.

    • In Java, encapsulation is achieved through the use of access modifiers such as private, public, and protected.

    • For example, a class may have private variables that c...

  • Answered by AI
  • Q2. What is the meaning of string.
  • Ans. 

    A string is a sequence of characters used to represent text in programming.

    • Strings are often used for storing and manipulating text data.

    • In Java, strings are represented by the String class.

    • Strings can be concatenated using the + operator.

    • Strings are immutable, meaning they cannot be changed once created.

    • Examples of string literals include "hello world" and "42".

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do not tell about salary expectations

Skills evaluated in this interview

Java Developer Interview Questions & Answers

Capgemini user image Aditya Karmarkar

posted on 27 Aug 2015

Interview Preparation Tips

General Tips: Speak in English, as much as you can also listen to every good English speaker.
Skill Tips: Keep your ears open as they ask what you know but in a manner in which you don't know ( don't expect)
Skills: communication skills, java , database, computer networking
College Name: Vidyalankar Institute Of Technology

I appeared for an interview in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. What is autoboxing and unboxing
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing is useful when working with collections that require objects instead of primitives.

    • Example: int i = 5; Integer j = i; //autoboxing

    • Unboxing is the opposite of autoboxing, where an object of a wrapper class is converted back to its corresponding primitive type.

    • Example: Integer j = 5; int i = j; //unboxi

  • Answered by AI
  • Q2. What is typecasting UP AND DOWN
  • Ans. 

    Typecasting up and down refers to converting a variable of one data type to another data type of higher or lower precision.

    • Typecasting up involves converting a variable of lower precision to a variable of higher precision, such as converting an int to a double.

    • Typecasting down involves converting a variable of higher precision to a variable of lower precision, such as converting a double to an int.

    • Typecasting can resul...

  • Answered by AI
  • Q3. How do you iterate map
  • Ans. 

    To iterate a map in Java, use a for-each loop or an iterator.

    • Use the entrySet() method to get a set of key-value pairs

    • For-each loop: for(Map.Entry entry : map.entrySet())

    • Iterator: Iterator> iterator = map.entrySet().iterator();

    • Use hasNext() and next() methods to iterate through the map

  • Answered by AI
  • Q4. Types of synchronisation in java
  • Ans. 

    Types of synchronization in Java

    • Synchronized methods

    • Synchronized statements

    • ReentrantLock

    • Semaphore

    • CountDownLatch

  • Answered by AI
  • Q5. Access modifiers in method overriding
  • Ans. 

    Access modifiers in method overriding

    • Access modifiers in the overriding method cannot be more restrictive than the overridden method

    • The access modifier can be less restrictive or the same as the overridden method

    • Private methods cannot be overridden

    • Examples: public method can be overridden by public or protected method, but not by private method

  • Answered by AI
  • Q6. Covarient return type

Skills evaluated in this interview

I appeared for an interview in Jun 2017.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked java basics,
what we wrote in resume will ask
about project
Tips: please prepare basics things

Logixal Solutions Interview FAQs

How many rounds are there in Logixal Solutions interview?
Logixal Solutions interview process usually has 1-2 rounds. The most common rounds in the Logixal Solutions interview process are Technical, Resume Shortlist and Case Study.
How to prepare for Logixal Solutions 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 Logixal Solutions. The most common topics and skills that interviewers at Logixal Solutions expect are Java, Javascript, J2Ee, HTML and Web Services.
What are the top questions asked in Logixal Solutions interview?

Some of the top questions asked at the Logixal Solutions interview -

  1. Advanced java and real life applications of conce...read more
  2. sql queries which are easily available as interview quest...read more
  3. Core Java Complete basics interviewer asked about every conce...read more

Tell us how to improve this page.

Logixal Solutions Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 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
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Logixal Solutions Reviews and Ratings

based on 42 reviews

3.5/5

Rating in categories

3.1

Skill development

3.5

Work-life balance

3.4

Salary

2.8

Job security

3.2

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 42 Reviews and Ratings
Senior Software Engineer - Java

Mumbai Suburban,

Navi Mumbai

+1

2-7 Yrs

Not Disclosed

Flutter Developer

Mumbai,

Bangalore / Bengaluru

+1

9-14 Yrs

Not Disclosed

Cypress Automation QA Engg

Bangalore / Bengaluru,

Mumbai

4-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
48 salaries
unlock blur

₹5.5 L/yr - ₹15 L/yr

Associate Software Engineer
45 salaries
unlock blur

₹3 L/yr - ₹9.4 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Associate Technical Leader
10 salaries
unlock blur

₹11.4 L/yr - ₹24 L/yr

Technical Lead
9 salaries
unlock blur

₹18 L/yr - ₹33 L/yr

Explore more salaries
Compare Logixal Solutions with

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

HCLTech

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