Upload Button Icon Add office photos
Engaged Employer

i

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

Cross Country Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cross Country Infotech Java Developer Interview Questions, Process, and Tips

Updated 11 Feb 2023

Cross Country Infotech Java Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2023. 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 - HR 

(6 Questions)

  • Q1. When did you complete your B.E.?
  • Ans. 

    I completed my B.E. in 2015.

    • I completed my B.E. in 2015.

    • I graduated with a Bachelor's degree in Engineering in 2015.

    • My B.E. was completed in 2015.

  • Answered by AI
  • Q2. When did you complete your 12th?
  • Ans. 

    I completed my 12th in the year 2010.

    • I completed my 12th in 2010.

    • I finished my 12th grade in 2010.

    • My 12th grade was completed in 2010.

  • Answered by AI
  • Q3. Why there is year gap? Was there any back log during your Graduation?
  • Ans. 

    I took a year gap to gain practical experience and enhance my skills.

    • To gain practical experience and enhance my skills

    • To explore different technologies and frameworks

    • To work on personal projects and contribute to open-source projects

    • To attend workshops, seminars, and training programs

    • To take up internships or freelance projects

  • Answered by AI
  • Q4. In which year you completed your Graduation?
  • Ans. 

    I completed my graduation in the year 2015.

    • I completed my graduation in 2015.

    • I graduated in the year 2015.

    • My graduation was completed in 2015.

  • Answered by AI
  • Q5. Do you have any Java certficate? If no then please leave you are rejected.
  • Ans. 

    Java certification is not mandatory for a Java Developer role.

    • Certification is not a measure of practical skills and experience.

    • Experience and skills are more important than certification.

    • Certification can be helpful in some cases, but not mandatory.

    • Certification can be expensive and time-consuming.

    • Employers may value certification differently.

    • Examples of Java certifications: Oracle Certified Professional Java SE 11 De

  • Answered by AI
  • Q6. We don't accept one who have backlogs in any year during graduation, if you have any back log then please leave you are not selected for next Technical Round.
Round 3 - Technical 

(23 Questions)

  • Q1. 1. What are four pillars of OOPS ?
  • Ans. 

    The four pillars of OOPS are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and methods together to protect data from outside interference.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms or behaviors.

  • Answered by AI
  • Q2. 2. Give me Real life example of Polymorphism
  • Ans. 

    Polymorphism is when an object can take on multiple forms and behave differently based on the context.

    • A car can be a vehicle, but it can also be a sports car or a family car, each with different behaviors.

    • A shape can be a square, rectangle, or triangle, each with different methods for calculating area and perimeter.

    • A media player can play different types of media, such as audio or video, each with different playback co

  • Answered by AI
  • Q3. 3. What is difference between Abstract class and Interface.
  • Ans. 

    Abstract class can have implementation while interface cannot. A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract class can have constructors while interface cannot.

    • Abstract class can have instance variables while interface cannot.

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

    • A class can implement multiple interfaces but can only exten...

  • Answered by AI
  • Q4. 4. Can we have multi level inheritance in Java
  • Ans. 

    Yes, Java supports multi level inheritance.

    • Multi level inheritance is the process of inheriting a class from another derived class.

    • It helps in creating a hierarchy of classes with each level inheriting properties from the previous level.

    • For example, class C can inherit from class B, which in turn inherits from class A.

    • Java does not support multiple inheritance, where a class can inherit from multiple classes at the sam

  • Answered by AI
  • Q5. 5. What is difference between composition and inheritance
  • Ans. 

    Composition is a way to combine objects to create complex structures, while inheritance is a way to create new classes based on existing ones.

    • Composition is a 'has-a' relationship, where an object contains other objects as its parts.

    • Inheritance is an 'is-a' relationship, where a subclass inherits properties and behaviors from its superclass.

    • Composition allows for greater flexibility and modularity in design, as objects...

  • Answered by AI
  • Q6. 6. What is exception handing
  • Ans. 

    Exception handling is the process of handling errors and exceptions that occur during program execution.

    • Exceptions are objects that represent errors or exceptional situations that occur during program execution.

    • Exception handling involves catching and handling these exceptions to prevent program crashes.

    • Java provides try-catch-finally blocks for handling exceptions.

    • Examples of exceptions include NullPointerException, A...

  • Answered by AI
  • Q7. 7. What is difference between throw and throws
  • Ans. 

    throw is used to explicitly throw an exception while throws is used to declare an exception that a method may throw.

    • throw is used within a method to throw an exception when a certain condition is met

    • throws is used in the method signature to declare the exceptions that the method may throw

    • throw is followed by an instance of an exception class while throws is followed by the name of the exception class

    • throw is used to ha...

  • Answered by AI
  • Q8. 8. Can we have multiple try block
  • Ans. 

    Yes, we can have multiple try blocks in Java.

    • Multiple try blocks can be used to handle different exceptions separately.

    • Each try block must have at least one catch or finally block.

    • Nested try blocks can also be used.

    • Example: try { //code } catch (Exception e) { //code } try { //code } catch (IOException e) { //code }

    • Example of nested try blocks: try { try { //code } catch (Exception e) { //code } } catch (Exception e) {

  • Answered by AI
  • Q9. 9. When is memory allocated, when class is created or instance is created or when it is?
  • Ans. 

    Memory is allocated when an instance of a class is created.

    • Memory allocation happens when an object is created using the 'new' keyword.

    • Static variables are allocated memory when the class is loaded.

    • Memory is released when the object is no longer referenced or when the program terminates.

  • Answered by AI
  • Q10. 10. What is stack in programming?
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Push() adds an element to the top of the stack.

    • Pop() removes the top element from the stack.

    • Peek() returns the top element without removing it.

    • Used in programming for function calls, expression evaluation, and memory management.

  • Answered by AI
  • Q11. 11. What is queue in programming?
  • Ans. 

    A queue is a data structure that follows the FIFO (First In First Out) principle.

    • Elements are added to the back of the queue and removed from the front.

    • Common operations include enqueue (add to back) and dequeue (remove from front).

    • Examples include a line of people waiting for a movie or a printer queue.

    • Java provides the Queue interface and its implementations like LinkedList and PriorityQueue.

  • Answered by AI
  • Q12. 12. Difference between error and exception
  • Ans. 

    Errors are unrecoverable, while exceptions are recoverable.

    • Errors are caused by the environment in which the application is running, while exceptions are caused by the application itself.

    • Errors cannot be handled by the application, while exceptions can be handled using try-catch blocks.

    • Examples of errors include OutOfMemoryError and StackOverflowError, while examples of exceptions include NullPointerException and Array

  • Answered by AI
  • Q13. 13. Other than inheritance what you will use to connect two classes?
  • Ans. 

    We can use composition, aggregation, or association to connect two classes.

    • Composition is a strong form of aggregation where the lifetime of the contained object is controlled by the container object.

    • Aggregation is a weaker form of composition where the contained object has an independent lifecycle.

    • Association is a relationship between two classes where one class uses the functionality of another class.

    • Examples of asso...

  • Answered by AI
  • Q14. 14. What are different types of Access Modifiers in Java?
  • Ans. 

    Access modifiers in Java are used to set the accessibility of classes, methods, and variables.

    • There are four types of access modifiers in Java: public, private, protected, and default.

    • Public: accessible from anywhere in the program.

    • Private: accessible only within the same class.

    • Protected: accessible within the same class, same package, and subclasses.

    • Default: accessible within the same package only.

  • Answered by AI
  • Q15. 15. What is protected ?
  • Ans. 

    protected is a Java access modifier that allows access within the same package and subclasses.

    • Protected members can be accessed within the same package and subclasses.

    • It is used to provide encapsulation and prevent direct access from outside the class.

    • Protected members can be accessed using the dot operator.

    • Example: protected int num; can be accessed in a subclass using obj.num;

  • Answered by AI
  • Q16. 16. Can subclass access private methods parent class?
  • Ans. 

    No, subclass cannot access private methods of parent class.

    • Private methods are only accessible within the same class where they are defined.

    • Subclasses can access protected and public methods of parent class.

    • Private methods can be accessed indirectly through public or protected methods of parent class.

  • Answered by AI
  • Q17. 17. Can subclass inherit the properties of Parent class if we not load parent class
  • Ans. 

    No, subclass cannot inherit properties of parent class if parent class is not loaded.

    • In order for a subclass to inherit properties of a parent class, the parent class must be loaded.

    • If the parent class is not loaded, the subclass will not have access to its properties.

    • This is because inheritance is a compile-time concept and requires the parent class to be present during compilation.

    • Attempting to access properties of a...

  • Answered by AI
  • Q18. 18. Can class be private?
  • Ans. 

    Yes, a class can be private in Java.

    • A private class can only be accessed within the same outer class.

    • It cannot be accessed from outside the class or even from subclasses.

    • Private classes are often used for implementation details that should not be exposed to other classes.

    • Example: private class Node in a LinkedList implementation.

  • Answered by AI
  • Q19. 19. What are collections?
  • Ans. 

    Collections are objects that group multiple elements into a single unit.

    • Collections are used to store, retrieve, manipulate and communicate aggregate data.

    • Java provides a set of interfaces and classes that implement various types of collections.

    • Examples of collections include List, Set, Map, Queue, etc.

    • Collections can be used to improve code readability, reusability, and performance.

  • Answered by AI
  • Q20. 20. What are different types of collections?
  • Ans. 

    Collections are used to store and manipulate groups of objects in Java. There are three main types of collections.

    • The three main types of collections are List, Set, and Map.

    • List is an ordered collection that allows duplicates. Example: ArrayList.

    • Set is an unordered collection that does not allow duplicates. Example: HashSet.

    • Map is a collection that maps keys to values and does not allow duplicate keys. Example: HashMap

  • Answered by AI
  • Q21. 21. Difference between array and heap?
  • Ans. 

    Arrays are fixed in size and stored in stack memory, while heap is dynamic and stored in heap memory.

    • Arrays are declared with a fixed size, while heap can grow or shrink dynamically.

    • Arrays are stored in stack memory, while heap is stored in heap memory.

    • Arrays can only store elements of the same data type, while heap can store objects of different types.

    • Examples of arrays include int[], char[], and String[], while examp...

  • Answered by AI
  • Q22. 22. Can we add duplicates to Set?
  • Ans. 

    No, Set does not allow duplicates.

    • Set is a collection that does not allow duplicates.

    • If you try to add a duplicate element to a Set, it will not be added.

    • You can use a List if you need to allow duplicates.

  • Answered by AI
  • Q23. 23. Can we add duplicates to Array?
  • Ans. 

    Yes, duplicates can be added to an array.

    • Arrays in Java can contain duplicate elements.

    • Duplicate elements can be added to an array using the add() method of ArrayList class.

    • For example, int[] arr = {1, 2, 3, 3, 4}; or ArrayList list = new ArrayList<>(Arrays.asList(1, 2, 3, 3, 4));

Answered by AI

Interview Preparation Tips

Topics to prepare for Cross Country Infotech Java Developer interview:
  • OOPS
  • Abstract class
  • Interface in Java
  • Constructor in Java
  • Access Modifiers in Java
  • Real life examples of OOPs
  • Palindrome problem
  • Exception handling in Java
Interview preparation tips for other job seekers - I interviewed at Cross Country Infotech, Pune on 10 Feb 2023. It was mass hiring for Trainee Software Engineer for Java, Angular, React.js. The company is totally horrible and whoever will attend their rounds will get the worst experience of their life ever. Here I will tell you all the details about what happened which interview questions they asked and many more.

There were three rounds of interview
HR Screening
Technical Round
Managerial Round

In job description, the eligibility criteria was given as 2020-2021 and 2022 Passout Only Education: BE/B Tech/MCA/MSc Candidate with non-technical background should be completed with One technical course/Internship/Training

The timing for the interview was 9 AM to 4 PM

I found this job posting on naukri.com.
The first round was HR Screening round. Here, they were shortlisting the resume. In my opinion this round was the most disgusting and horrible round, as what they were doing in first round was not upto what they have described on the job portal. The eligibility criteria they described on portal was graduation and not any other criteria were mentioned, I think because of this reason student have appeared for there drive, but what they did in first round was horrible, in Hr screening they said me that you were having backlogs in your first year that's why you are not eligible for further rounds, I was shocked after I heard that from HR, because for that round I sat for 4 hours, if this was your criteria then why didn't you said it in your job description, you just fooled the people to come for your drive by giving false description on job portal, it was most horrible drive, and also they rejected people who didn't have java certificate specifically, they were not accepting other technology certificates at all. In my opinion this was the first disgusting thing they did to people who have arrived there for interview from very long distance and sat for 4 or 5 hours for their first round of interview, which was HR Screening round. After she told me that I was not eligible, then I convinced her that I have Java certificate and also that backlog thing is past and is not any more, on that she told me to wait for the second round which was Technical Round. So after this I was relived a little bit, but this was something a silence before the storm, more misery was on the way. After 1st round I sat again for 3 hours there, then after that they took my technical round. The interviewer ask me the following questions: 1. What are four pillars of OOPS 2. Give me Real life example of Polymorphism 3. What is difference between Abstract class and Interface. 4. Can we have multi level inheritance in Java 5. What is difference between composition and inheritance 6. What is exception handing 7. What is difference between throw and throws 8. Can we have multiple try block 9. When is memory allocated, when class is created or instance is created or when it is? 10. What is stack 11. What is queue 12. Difference between stack and heap 11. Asked what will you use for debugging other than print statements 12. Difference between error and exception 13. Other than inheritance what you will use to connect to classes?
14. What are different types of Access Modifiers in Java?
15. What is protected?
16. Can subclass access private methods parent class?
17. Can subclass inherit the properties of Parent class if we not load parent class constructor inside subclass?
18. Can class be private?
19. What are collections?
20. What are different types of collections? 21. Difference between array and heap?
22. Can we add duplicates to Set?
23. Can we add duplicates to Array?

He asked me to write a program to check whether string was Palindrome or not?

Later he asked me some nonsense questions which he himself was not understanding, for those questions I tried my best level to give the information.
This round had gone above 1 hour, nearly like 80 to 90 minutes.
After the Technical Round I asked him for the feedback, he told me that I have a good knowledge of things, as fresher you have lot of understanding. ( as I have given correct answers to his 90% of questions) After this he told me to wait for result of this round.

Then again I waited for 1 hour, then HR came to me and said "You are not selected for the next round, you can leave for today now"

I was soo shocked, It was so much disgusting, as in this Technical Round I have given correct answers to his 90% of questions and also at the end he was happy with my answers and had given me feedback that I have good knowledge, but still they rejected me for 3rd round which was Managerial Round. I filled so much deceived, after such a good feedback they rejected me. What a shameful and disgusting this company could be with no moral and ethical values. I didn't get the answer why they rejected me in 2nd round despite of good performance. That technical round was monstrous, but still I've given correct answers to 90% of his questions. At this day I wasted my total more than 9 hours in that company for horrible experience. I suggest the one who is reading this that this company have no ethics and responsibility to the time of the people, if you are going to give interview to this company I will suggest not to, but if you still are then be prepared for such a worst experience, you may get rejected for unknown reasons even though you have performed very well, like given 100%.

Some warnings about this company:
1. You have to wait a lot for the rounds to happen.
2. This company Cross Country Infotech do not specify proper job description, in screening round, they will reject you for very very very silly reasons, like you had a backlog in your first year even though you are graduated now that doesn't matter, you don't have specific Java certificate.
3. You will get reject even if you answer to 90% of the interviewer questions in Technical round.
4. You will never know why you got rejected even after the best performance.
5. Imagine getting rejected for silly or unknown reasons like this after waiting hours and hours, like 9 hours, you will fill very down and deceived, this company will make your moral down.

At end I will say the Cross Country Infotech company is disgusting and have no moral, ethical or professional values, no value for people and thier time. STAY AWAY STAY SAFE from this Cross Country Infotech company!

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Screening 

(2 Questions)

  • Q1. Prior Experience with Java
  • Ans. 

    I have 5 years of experience working with Java in various projects.

    • Developed web applications using Java EE framework

    • Utilized Spring framework for dependency injection and MVC architecture

    • Worked with databases using JDBC and Hibernate

    • Implemented RESTful web services with JAX-RS

    • Used Maven for project management and build automation

  • Answered by AI
  • Q2. What are the difficulties you have come across and how did you resolve it
  • Ans. 

    I have faced difficulties with integrating third-party APIs and resolved them by thoroughly reading documentation and seeking help from online forums.

    • Thoroughly read documentation of the third-party API to understand its functionalities and requirements

    • Seek help from online forums or communities to troubleshoot any issues encountered

    • Utilize debugging tools to identify and fix any integration errors

    • Collaborate with the ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why there are multiple types of integers data types instead of one
  • Ans. 

    Different integer data types are used to optimize memory usage and represent different ranges of values.

    • Different integer data types have different ranges and memory sizes, allowing for more efficient memory usage.

    • For example, 'int' typically uses 4 bytes of memory and can represent values from -2,147,483,648 to 2,147,483,647, while 'short' uses 2 bytes and can represent values from -32,768 to 32,767.

    • Choosing the appro...

  • Answered by AI
  • Q2. Why javascript isn't a programming language
  • Ans. 

    JavaScript is a programming language, not to be confused with Java.

    • JavaScript is a high-level, interpreted programming language used for web development.

    • It is capable of creating complex applications and is widely used for front-end and back-end development.

    • JavaScript has its own syntax, rules, and features that make it a programming language.

    • Java, on the other hand, is a different programming language that is not rela

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Live Connections Java Developer interview:
  • Java
Interview preparation tips for other job seekers - Be confident and have a clear understanding of basics of java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Thirty questions that cover basic aptitude in grammar, mathematics, and other subjects.

Round 2 - Coding Test 

Each person was assigned one system, with a total of 30 questions, consisting of 10 questions per language, such as Java.

Round 3 - One-on-one 

(4 Questions)

  • Q1. Can you provide a description of yourself?
  • Ans. 

    Experienced Java Developer with strong problem-solving skills and a passion for creating efficient and scalable solutions.

    • Over 5 years of experience in Java development

    • Proficient in Spring framework and Hibernate

    • Strong understanding of data structures and algorithms

    • Experience with RESTful web services and microservices architecture

    • Passionate about continuous learning and staying updated with latest technologies

  • Answered by AI
  • Q2. What are the details of your college project?
  • Ans. 

    Developed a web-based student management system using Java and MySQL.

    • Used Java for backend development

    • Implemented CRUD operations for student records

    • Utilized MySQL for database management

  • Answered by AI
  • Q3. One or two basic java questions
  • Q4. Could you provide a coding example related to multi-linked lists?
  • Ans. 

    A multi-linked list is a data structure where each node has multiple pointers to other nodes.

    • Create a Node class with multiple pointers to other nodes

    • Implement methods to add, remove, and traverse nodes in the multi-linked list

    • Consider implementing a doubly linked list as an example of a multi-linked list

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. Basic java questions
  • Q2. What is the implementation of a basic Java program to swap two numbers using a third variable?
  • Ans. 

    Swapping two numbers using a third variable in a basic Java program.

    • Declare three integer variables: a, b, and temp.

    • Assign values to variables a and b.

    • Use temp variable to swap values of a and b.

    • Print the swapped values of a and b.

  • Answered by AI
  • Q3. How can you swap two numbers without using a third variable?
  • Ans. 

    Use bitwise XOR operation to swap two numbers without using a third variable.

    • Use bitwise XOR operation to swap two numbers without using a third variable.

    • Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ensure that you comprehend all concepts thoroughly and approach the interview with confidence.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Experience level codes ask.

Round 2 - HR 

(2 Questions)

  • Q1. I don't remember at this time question.but question was experience level 3+ yrs level rounds and java,Mysql, spring boot mostly question.
  • Q2. I didn't remember question but all questions are Java related .

Interview Preparation Tips

Interview preparation tips for other job seekers - This very nice company.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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 

Object oriented programming,Data Structures,Lifecycle

Round 3 - HR 

(2 Questions)

  • Q1. What are your hobbies
  • Ans. 

    My hobbies include playing guitar, reading books, and hiking.

    • Playing guitar: I have been playing guitar for 5 years and enjoy learning new songs and techniques.

    • Reading books: I love reading fiction and non-fiction books, especially in the science and technology genres.

    • Hiking: Exploring nature and going on hikes is a great way for me to relax and stay active.

  • Answered by AI
  • Q2. What are your future goals
  • Ans. 

    My future goal is to become a senior software developer and contribute to the development of innovative software solutions.

    • To gain expertise in new programming languages and technologies

    • To lead a team of developers and mentor junior developers

    • To continuously learn and stay updated with the latest industry trends

    • To contribute to open-source projects and collaborate with other developers

    • To improve my problem-solving and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't worry to ask if you have any doubts.Prepare well
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Case Study 

Skill set and additional review

Round 3 - Technical 

(2 Questions)

  • Q1. Technical question roles and responsibilities
  • Q2. Procedure merge nvl

Interview Preparation Tips

Interview preparation tips for other job seekers - technically prepare along with previous experience strong confidence
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Tell me more about your last task that you worked on.
  • Ans. 

    Developed a web application for managing customer orders and inventory.

    • Used JavaScript, HTML, and CSS to build the front-end interface.

    • Implemented a RESTful API using Node.js and Express.js for the back-end functionality.

    • Utilized a PostgreSQL database to store and retrieve data.

    • Implemented authentication and authorization features for secure access.

    • Performed unit testing and debugging to ensure the application's functi...

  • Answered by AI
  • Q2. Design a System from High level and low level
  • Ans. 

    Designing a system involves creating a high-level architecture and breaking it down into low-level components.

    • Start by identifying the problem the system needs to solve

    • Create a high-level architecture that outlines the major components and their interactions

    • Break down each component into smaller, more manageable pieces

    • Design each low-level component with a specific function in mind

    • Ensure that all components work togeth...

  • Answered by AI
  • Q3. Some direct Questions from SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself everyday, not for interview, for being better Engineer

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Screening 

(2 Questions)

  • Q1. Prior Experience with Java
  • Ans. 

    I have 5 years of experience working with Java in various projects.

    • Developed web applications using Java EE framework

    • Utilized Spring framework for dependency injection and MVC architecture

    • Worked with databases using JDBC and Hibernate

    • Implemented RESTful web services with JAX-RS

    • Used Maven for project management and build automation

  • Answered by AI
  • Q2. What are the difficulties you have come across and how did you resolve it
  • Ans. 

    I have faced difficulties with integrating third-party APIs and resolved them by thoroughly reading documentation and seeking help from online forums.

    • Thoroughly read documentation of the third-party API to understand its functionalities and requirements

    • Seek help from online forums or communities to troubleshoot any issues encountered

    • Utilize debugging tools to identify and fix any integration errors

    • Collaborate with the ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why there are multiple types of integers data types instead of one
  • Ans. 

    Different integer data types are used to optimize memory usage and represent different ranges of values.

    • Different integer data types have different ranges and memory sizes, allowing for more efficient memory usage.

    • For example, 'int' typically uses 4 bytes of memory and can represent values from -2,147,483,648 to 2,147,483,647, while 'short' uses 2 bytes and can represent values from -32,768 to 32,767.

    • Choosing the appro...

  • Answered by AI
  • Q2. Why javascript isn't a programming language
  • Ans. 

    JavaScript is a programming language, not to be confused with Java.

    • JavaScript is a high-level, interpreted programming language used for web development.

    • It is capable of creating complex applications and is widely used for front-end and back-end development.

    • JavaScript has its own syntax, rules, and features that make it a programming language.

    • Java, on the other hand, is a different programming language that is not rela

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Live Connections Java Developer interview:
  • Java
Interview preparation tips for other job seekers - Be confident and have a clear understanding of basics of java
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 Feb 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are components
  • Ans. 

    Components are reusable and independent parts of a software system that perform specific functions.

    • Components are modular and can be easily integrated into different parts of a software system.

    • They help in organizing code and promoting reusability.

    • Examples include buttons, input fields, and dropdown menus in a user interface.

    • Components can be class-based (e.g. React components) or function-based (e.g. Angular component

  • Answered by AI
  • Q2. Es6 features in javascript
  • Ans. 

    ES6 features in JavaScript include arrow functions, classes, template literals, destructuring, and more.

    • Arrow functions provide a more concise syntax for writing functions.

    • Classes allow for easier object-oriented programming.

    • Template literals enable easier string interpolation.

    • Destructuring simplifies extracting values from arrays and objects.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - great company

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts, mvc related questions
  • Q2. Store procedure, function,
  • Q3. Asked SQL query scenario based questions
Round 2 - Technical 

(1 Question)

  • Q1. Oops , SQL and mvc questions. Mostly question was scenario based

Cross Country Infotech Interview FAQs

How many rounds are there in Cross Country Infotech Java Developer interview?
Cross Country Infotech interview process usually has 3 rounds. The most common rounds in the Cross Country Infotech interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in Cross Country Infotech Java Developer interview?

Some of the top questions asked at the Cross Country Infotech Java Developer interview -

  1. Do you have any Java certficate? If no then please leave you are reject...read more
  2. 9. When is memory allocated, when class is created or instance is created or wh...read more
  3. 13. Other than inheritance what you will use to connect two class...read more

Tell us how to improve this page.

Cross Country Infotech Java Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Process Associate
101 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Senior Process Associate
32 salaries
unlock blur

₹2.5 L/yr - ₹5.5 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹7 L/yr - ₹18 L/yr

Software Engineer
28 salaries
unlock blur

₹4.5 L/yr - ₹15.8 L/yr

SME
12 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Cross Country Infotech 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