Upload Button Icon Add office photos

Filter interviews by

Coda Global Trainee Developer Interview Questions and Answers

Updated 20 May 2017

Coda Global Trainee Developer Interview Experiences

1 interview found

I was interviewed in Jul 2016.

Interview Questionnaire 

4 Questions

  • Q1. DBMS - questions based on like operator
  • Q2. Pattern printing
  • Q3. Java-string concepts
  • Q4. A web application in student management
  • Ans. 

    A web application for managing student information

    • Allows administrators to add, edit, and delete student records

    • Includes features for tracking attendance, grades, and disciplinary actions

    • Provides a user-friendly interface for students and parents to access their information

    • Generates reports and analytics for administrators to analyze student performance

  • Answered by AI

Interview Preparation Tips

College Name: Velammal College Of Engineering And Technology

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 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 

(2 Questions)

  • Q1. Covered all java concepts
  • Q2. Basics of spring boot
Round 3 - Technical 

(1 Question)

  • Q1. Stream based questions, sql queries to find correct output
Round 4 - HR 

(1 Question)

  • Q1. Expected salary, basic hr questions, strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Covers all core java concepts, microservices architecture. Advantages of spring boot over spring

I applied via Naukri.com and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How hashmap works internally?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

    • Hashmap uses a hash function to convert the key into an index in an array.

    • Collisions can occur when two keys map to the same index, which is resolved using separate chaining or open addressing.

    • Hashmap provides constant time complexity O(1) for insertion, deletion, and retrieval of values.

    • Java's Hashmap implementation use...

  • Answered by AI
  • Q2. Why string is immutable?
  • Ans. 

    String is immutable to ensure thread safety and prevent unintended modification.

    • Immutable objects are safer to use in multi-threaded environments as they cannot be changed by other threads.

    • String pool is possible because of immutability, which saves memory and improves performance.

    • StringBuffer and StringBuilder classes are used for mutable string operations.

    • Example: String s = "hello"; s.concat(" world"); // returns a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst interview experience.

I have 4 years of experience in application development. At first, HR collect my details like notice period, salary expectations (which I mentioned 40% on current) etc.
After that HR scheduled my L1 round and I cleared L1 round with good feedback and rating.
After a week I called HR for scheduling L2 round but HR giving excuses like they don't have that much budget as per my expectations and they are rejecting my profile for further process.
I was trying to contact HR in many ways like, ph no, email, LinkedIn but no response from her.

I just wanted to say here, if you are preparing for Hexaware make sure you confirm your expectations and get it written from HR first then only proceed.

HR not only wasted candidate time but also play with candidate mentality. They forced you to resign from current company before giving any offer letter in the middle of interview process.

#becareful #beconfident #worstinterview #experience

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java 8 oops spring spring boot rest api
Round 2 - Technical 

(1 Question)

  • Q1. Java 8 spring stream api java oops rest api
Round 3 - HR 

(1 Question)

  • Q1. It was salary negotiation round which went good with a FAKE promise that the offer will be rolled out the next day which was also the last working day , they didnt roll the offer out with a lame excuse .

Interview Preparation Tips

Interview preparation tips for other job seekers - Few Recruiters spoiling company image, hiding facts , giving fake assurity with 100% confidence

I applied via Job boards and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to send a file without any internet connection if you are in first floor and your coligue was in second floor?
  • Ans. 

    Use a physical medium like a USB drive or a portable storage device to transfer the file.

    • Physically carry the file on a USB drive or portable storage device.

    • Use a local network connection to transfer the file between the two floors.

    • Utilize Bluetooth or other wireless technologies to transfer the file.

    • If the distance is short, use a physical method like printing the file and physically handing it over.

  • Answered by AI
  • Q2. What is JVM?
  • Ans. 

    JVM stands for Java Virtual Machine. It is an abstract machine that enables a computer to run Java programs.

    • JVM is responsible for interpreting the compiled Java code and executing it on the computer.

    • It provides a platform-independent environment for Java programs to run on different operating systems.

    • JVM has various components like Class Loader, Bytecode Verifier, Just-In-Time Compiler, and Garbage Collector.

    • Examples ...

  • Answered by AI
  • Q3. What are the memories in JDK?
  • Ans. 

    JDK memories are areas of memory used by Java programs to store data and code.

    • JDK memories include heap memory, stack memory, and non-heap memory.

    • Heap memory is used to store objects and is managed by the garbage collector.

    • Stack memory is used to store method calls and local variables.

    • Non-heap memory is used to store class definitions and other data.

    • Examples of non-heap memory include the method area and the permanent ...

  • Answered by AI
  • Q4. Before all these introduce yourself?
  • Q5. Tell me brief idea about your college project?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on basics of laptop and also your technical skills...

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Database pooling
  • Q2. Collections - Hashing
  • Q3. Request mapping annotation syntax and how and where we use it
  • Ans. 

    Explaining request mapping annotation syntax and usage in Java development

    • RequestMapping annotation is used to map HTTP requests to specific methods in a controller class

    • It can be used to specify the URL path, HTTP method, request parameters, headers, and more

    • Example: @RequestMapping(value = '/users', method = RequestMethod.GET)

    • This maps a GET request to the '/users' URL path

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There are 2 technical rounds. The interview went around for 35-45 min. L1 interview is all about basics and direct questions. L2 is all about situation based which tests your logical thinking and its a very good experience.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Sort values in list based on some logic
  • Ans. 

    Sort array of strings based on custom logic

    • Define the custom logic for sorting

    • Implement a sorting algorithm such as bubble sort or quicksort

    • Apply the custom logic during the sorting process

  • Answered by AI
  • Q2. Find if a string is a pallandrome or not
  • Ans. 

    Check if a string is a palindrome or not.

    • Reverse the string and compare it with the original string.

    • Use two pointers, one at the beginning and one at the end, and compare the characters.

    • Ignore non-alphanumeric characters and convert to lowercase before checking.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - stick to the basics and you will be good

Skills evaluated in this interview

Java Developer Interview Questions & Answers

LTIMindtree user image samriddhi nautiyal

posted on 30 May 2021

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

7 Questions

  • Q1. 1. Difference between finally and static block?
  • Ans. 

    finally is used to execute a block of code after try-catch block, while static block is executed when class is loaded.

    • finally block is used to perform cleanup operations like closing database connections, file streams etc.

    • static block is used to initialize static variables or perform any other static initialization.

    • finally block is always executed whether an exception is thrown or not, while static block is executed on...

  • Answered by AI
  • Q2. 2. Use of @autowired annotation in spring?
  • Ans. 

    The @Autowired annotation in Spring is used to automatically wire dependencies into a bean.

    • It eliminates the need for manual wiring of dependencies

    • It can be used to inject dependencies into constructors, fields, and methods

    • It can be used with other annotations like @Qualifier and @Value

    • It can be used with both XML and Java-based configurations

  • Answered by AI
  • Q3. 3. How can we make a class immutable in java?
  • Ans. 

    To make a class immutable in Java, we need to follow certain guidelines.

    • Make the class final

    • Make all fields private and final

    • Do not provide setter methods

    • If the field is mutable, return a clone of it instead of the original object

    • Ensure that any mutable objects passed to the constructor are not modified outside the class

  • Answered by AI
  • Q4. 4. What are collections in java?
  • Ans. 

    Collections are data structures that store and manipulate groups of objects.

    • Collections provide a way to manage and manipulate groups of objects

    • Java provides several built-in collection classes such as ArrayList, LinkedList, HashSet, etc.

    • Collections can be used to perform operations like searching, sorting, filtering, etc.

    • Collections can store objects of any type, including primitive types and user-defined classes

  • Answered by AI
  • Q5. Difference between arrayList and vector and Hashmap and hashtable?
  • Ans. 

    ArrayList and Vector are similar but Vector is synchronized while HashMap and HashTable are both key-value pair data structures but HashTable is synchronized.

    • ArrayList and Vector both implement List interface but Vector is thread-safe while ArrayList is not.

    • Vector is slower than ArrayList due to synchronization.

    • HashMap and HashTable both store key-value pairs but HashTable is thread-safe while HashMap is not.

    • HashMap al...

  • Answered by AI
  • Q6. What is Rest Api?
  • Ans. 

    Rest Api is a web service that uses HTTP methods to access and manipulate data.

    • Rest stands for Representational State Transfer

    • It is an architectural style for building web services

    • Uses HTTP methods like GET, POST, PUT, DELETE

    • Data is transferred in JSON or XML format

    • Examples: Twitter API, Facebook Graph API

  • Answered by AI
  • Q7. Write a program to add numbers in harmonic series. (1+1/2+1/3+.....1/n)
  • Ans. 

    Program to add numbers in harmonic series (1+1/2+1/3+...+1/n)

    • Create a variable to store the sum

    • Use a loop to iterate through the series up to n

    • Add each term to the sum

    • Print the sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for the post of JAVA developer. If you are thorough with core java concepts and any JAVA framework, be it SPRING, HIBERNATE. then you are good to go. All the best for your interview.

Skills evaluated in this interview

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Test was active from 28th September 8 PM till 2 AM (29th September’20). We could attempt at any time. 
1.5 Hr Duration
Two coding questions.

  • Q1. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. DFS Approach (Slow)

    There is a cycle in the graph only if there is a back edge (back edge is an edge that connects a vertex to another vertex that is discovered before it's parent) present in the graph. To detect a back edge, we will keep track of vertices that have been already visited. If we reach a vertex that is already visited and is not the parent vertex of the current vertex, then there is a cycle in the graph.&n...

  • Answered Anonymously
  • Q2. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. Flood Fill Algorithm

    We can use the flood fill algorithm to check for all connected 1s.

     

    • We create two arrays, dx, and dy, in which we store the unit vectors for all eight directions. Thus, when we are at a given cell, we can easily check for all its adjacent cells by simply looping over the two arrays, adding their values to the current position, and checking for this new position recursively.
    • We will also create a ...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Online video call round on Microsoft Teams
Interviewer was very friendly.
This round is often called Domain Discussion Round.

  • Q1. 

    Longest Repeating Substring Problem Statement

    Given a string str consisting of lowercase English alphabet letters, and an integer K, you are allowed to perform at most K operations on this string. An oper...

  • Ans. Brute Force

    In this approach, we will consider every substring and check if it can be the longest repeating substring. Let’s say we have a variable ‘longestSubstring’ that stores the length of the longest repeating substring.
     

    We can convert a substring into a repeating substring if, (L - MX) <= K (where ‘L’ is the length of substring and ‘MX’ is the count of the character which occurs maximum times in this subst...

  • Answered Anonymously
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Medium

One hour HR round.
Also called Core Values Interview.
The Interviewer was a senior level employee and was very friendly.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 6.5 GPA, CS and Allied StreamsPublicis Sapient interview preparation:Topics to prepare for the interview - DS/ALGO, Competitive Programming, OS, DBMS, SQL Queries, Computer Networks BasicsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Interview is more like a two-way discussion rather than a question-answer session, feel free to ask for help/hints if you're stuck. 
Tip 2 : Even if you don't know the solution to the problem just try to work out a naive solution. You can optimize it later. 
Tip 3 : Make sure to read out the interview experiences of other people who have applied for the same role/company in the past

Application resume tips for other job seekers

Tip 1: Keep it concise and to the point.
Tip 2: Don't forget to show your best achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. What is System.out.println?
  • Ans. 

    System.out.println is a Java statement used to print output to the console.

    • System is a class in Java's core library.

    • out is a static member of the System class.

    • println is a method of the PrintStream class.

    • It is used to print output to the console.

    • It adds a newline character at the end of the output.

  • Answered by AI
  • Q2. What is static or final method?
  • Ans. 

    Static or final method is a method that belongs to a class rather than an instance of the class.

    • Static method can be called without creating an instance of the class.

    • Final method cannot be overridden by a subclass.

    • Static and final methods can be accessed using the class name.

    • Example: Math.max() is a static method in the Math class.

    • Example: String.toUpperCase() is a final method in the String class.

  • Answered by AI
  • Q3. What is collection?
  • Ans. 

    A collection is a group of objects that can be stored, manipulated, and retrieved as a single unit.

    • Collections are used to store and manage groups of related objects.

    • Java provides several built-in collection classes such as ArrayList, LinkedList, HashSet, etc.

    • Collections can be used to perform operations like sorting, searching, filtering, and more.

    • Collections can be generic or non-generic, depending on the type of obj

  • Answered by AI
  • Q4. Add string or integer value using map?
  • Ans. 

    Yes, we can add string or integer value using map in Java.

    • We can use put() method to add values to a map.

    • For string values, we can use String as the value type.

    • For integer values, we can use Integer as the value type.

    • Example: Map map = new HashMap<>(); map.put("key", "value");

    • Example: Map map = new HashMap<>(); map.put("key", 123);

  • Answered by AI
  • Q5. What is difference between sleep or wait method?
  • Ans. 

    Sleep method pauses the thread for a specified time, while wait method pauses the thread until notified.

    • Sleep method is a static method of Thread class, while wait method is an instance method of Object class.

    • Sleep method does not release the lock on the object, while wait method releases the lock and waits for notification.

    • Sleep method can be interrupted by another thread, while wait method can only be interrupted by ...

  • Answered by AI
  • Q6. What is join in sql?
  • Ans. 

    Join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query

    • Types of join include inner join, left join, right join, and full outer join

    • Join condition is specified using ON keyword

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

    • Join can also be used with subqueries

  • Answered by AI
  • Q7. SQL queries?
  • Ans. 

    SQL queries are used to retrieve, manipulate and manage data stored in relational databases.

    • SQL stands for Structured Query Language

    • Queries can be used to retrieve specific data from tables

    • Queries can also be used to update, insert or delete data

    • Examples of SQL queries include SELECT, INSERT, UPDATE and DELETE

    • Understanding SQL is important for working with databases in Java

  • Answered by AI
  • Q8. Http or generic?
  • Q9. Spring MVC flow?
  • Q10. Abstraction vs interface?
  • Ans. 

    Abstraction is a concept of hiding implementation details while interface is a contract that defines the behavior of a class.

    • Abstraction is achieved through abstract classes and methods

    • Interface is a collection of abstract methods and constants

    • Abstraction allows for flexibility in implementation

    • Interface allows for multiple inheritance

    • Abstraction is used for code reusability

    • Interface is used for achieving polymorphism

  • Answered by AI
  • Q11. Overloading vs overriding?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a different implementation of a method inherited from its superclass.

    • Overloading is resolved at compile-time based on the method signature.

    • Overriding is resolved at runtime based on the actual object type.

    • Overloading is used to provide different ways to call a method with different parameters.

    • Overrid...

  • Answered by AI
  • Q12. Encapsulation?

Interview Preparation Tips

Interview preparation tips for other job seekers - All are depend on your luck .nothing matter how's your knowledge.

Skills evaluated in this interview

Coda Global Interview FAQs

What are the top questions asked in Coda Global Trainee Developer interview?

Some of the top questions asked at the Coda Global Trainee Developer interview -

  1. A web application in student managem...read more
  2. DBMS - questions based on like opera...read more
  3. Pattern print...read more

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
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
Software Engineer
15 salaries
unlock blur

₹6.1 L/yr - ₹9.2 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹4.8 L/yr - ₹8 L/yr

Software Developer
4 salaries
unlock blur

₹6.1 L/yr - ₹7.5 L/yr

Associate Engineer
4 salaries
unlock blur

₹6.1 L/yr - ₹6.1 L/yr

Engineer
4 salaries
unlock blur

₹7.1 L/yr - ₹13 L/yr

Explore more salaries
Compare Coda Global with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

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