Upload Button Icon Add office photos

C-Edge Technologies

Compare button icon Compare button icon Compare

Filter interviews by

C-Edge Technologies Interview Questions and Answers

Updated 1 May 2025
Popular Designations

33 Interview questions

A SQL Database Administrator was asked 2mo ago
Q. Tell me about your experience with SQL Server.
Ans. 

SQL Server is a relational database management system that provides robust data storage, retrieval, and management capabilities.

  • Database Design: I have experience designing normalized database schemas to ensure data integrity and reduce redundancy, such as creating tables with primary and foreign keys.

  • Performance Tuning: I regularly analyze query performance using execution plans and indexing strategies, optimizin...

View all SQL Database Administrator interview questions
A Java Developer was asked 6mo ago
Q. What Spring Boot annotations have you used, and how did you use them?
Ans. 

I have used annotations like @RestController, @Autowired, @RequestMapping, @Service, @Component, @Repository in Spring Boot.

  • Used @RestController to define RESTful web services.

  • Used @Autowired to inject dependencies.

  • Used @RequestMapping to map web requests to specific handler methods.

  • Used @Service to mark a class as a service component.

  • Used @Component to mark a class as a Spring component.

  • Used @Repository to mark a...

View all Java Developer interview questions
A Java Developer was asked 6mo ago
Q. What is the return type of the add method?
Ans. 

The return type of the add method depends on the specific implementation and requirements of the program.

  • Return type can be int, double, void, or any other data type depending on what the method is supposed to do.

  • For example, an add method for adding two integers may have a return type of int.

  • If the add method is simply updating a value and not returning anything, the return type may be void.

View all Java Developer interview questions
A Java Developer was asked 6mo ago
Q. What is thread safety?
Ans. 

Thread safety ensures that shared data is accessed and modified by multiple threads in a safe and consistent manner.

  • Thread safety is important in multi-threaded programming to prevent race conditions and ensure data integrity.

  • It can be achieved through synchronization mechanisms like locks, mutexes, and atomic operations.

  • For example, using synchronized keyword in Java to protect critical sections of code from conc...

View all Java Developer interview questions
A Java Developer was asked 6mo ago
Q. How do you optimize queries?
Ans. 

Optimizing queries involves using indexes, limiting result sets, avoiding unnecessary joins, and optimizing database schema.

  • Use indexes on columns frequently used in WHERE clauses

  • Limit result sets by using pagination or filtering

  • Avoid unnecessary joins by denormalizing data or using subqueries

  • Optimize database schema by reducing redundancy and normalizing data

View all Java Developer interview questions
A Java Developer was asked 7mo ago
Q. Explain JDBC and the return type of a statement.
Ans. 

JDBC is a Java API for connecting and executing SQL queries on databases. The return type of a statement in JDBC is boolean.

  • JDBC stands for Java Database Connectivity.

  • It allows Java programs to interact with databases using SQL queries.

  • The return type of a statement in JDBC is boolean, indicating whether the query was successfully executed.

View all Java Developer interview questions
A Java Developer was asked 7mo ago
Q. What is exception propagation in Java?
Ans. 

Exception propagation in Java refers to the process of passing an exception up the call stack until it is handled.

  • When an exception occurs, Java looks for a matching catch block in the current method.

  • If not found, the exception is propagated to the calling method.

  • This continues until a catch block is found or the main method is reached.

  • Example: If method A calls method B, and B throws an exception, A must handle i...

View all Java Developer interview questions
Are these interview questions helpful?
A System Analyst was asked 8mo ago
Q. How many common Linux commands do you know?
Ans. 

I know several common Linux commands used for system administration and troubleshooting.

  • ls - list directory contents

  • cd - change directory

  • pwd - print working directory

  • cp - copy files and directories

  • mv - move/rename files and directories

  • rm - remove/delete files and directories

  • grep - search for patterns in files

  • chmod - change file permissions

  • sudo - execute a command as a superuser

  • top - display and update sorted infor...

View all System Analyst interview questions
A System Analyst was asked 8mo ago
Q. Explain SQL join.
Ans. 

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

  • SQL join is used to retrieve data from multiple tables based on a related column.

  • Types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

  • INNER JOIN returns rows when there is at least one match in both tables.

  • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

  • RIG...

View all System Analyst interview questions
A Java Developer was asked 10mo ago
Q. What is the difference between Runnable and Callable in Java?
Ans. 

Runnable is a functional interface with a run() method, while Callable is a functional interface with a call() method that can return a result or throw an exception.

  • Runnable does not return a result or throw a checked exception, while Callable can return a result or throw a checked exception.

  • Callable is used in scenarios where you need to return a result or handle checked exceptions, while Runnable is used for sim...

View all Java Developer interview questions

C-Edge Technologies Interview Experiences

27 interviews found

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

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Some coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is exception propogation in java?
  • Q2. Expalin JDBC and return type of statement?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare they gonna ask you to write a code.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why Strings are immutable in java?
  • Q2. What is difference between runnable and callable in java?
Round 2 - One-on-one 

(2 Questions)

  • Q1. How does spring auto configuration works?
  • Q2. Second level cache in hibernate?
Round 3 - One-on-one 

(2 Questions)

  • Q1. What was your role in your team?
  • Ans. 

    I was responsible for designing and developing Java applications, collaborating with team members, and troubleshooting issues.

    • Designed and developed Java applications according to project requirements

    • Collaborated with team members to ensure smooth project execution

    • Troubleshooted and resolved any issues that arose during development

  • Answered by AI
  • Q2. Tell me about transaction management in spring.

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java and basic spring boot questions will help a lot.

Skills evaluated in this interview

System Analyst Interview Questions & Answers

user image Swapnil Suryawanshi

posted on 5 Nov 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain SQL join
  • Ans. 

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

    • SQL join is used to retrieve data from multiple tables based on a related column.

    • Types of SQL joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table.

    • RIGHT JO...

  • Answered by AI
  • Q2. Write down how many common you know in Linux
  • Ans. 

    I know several common Linux commands used for system administration and troubleshooting.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • cp - copy files and directories

    • mv - move/rename files and directories

    • rm - remove/delete files and directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as a superuser

    • top - display and update sorted informatio...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What can you share about your educational background and work experience?
  • Q2. What motivates you to join this organization?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Sql interview questions.
  • Q2. Related to projects which is mentioned in resume.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Ok ok ok
  • Q2. Easy questions nice panel they have ask easy questions about sql
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql queries asked
  • Q2. Linux question ....

Junior Java Developer Interview Questions & Answers

user image Imamuddin Khan

posted on 28 Feb 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. 1)Explain your project and tell all functionality about ur project
  • Q2. Explain spring boot advantage
  • Ans. 

    Spring Boot simplifies the development of Java applications by providing a set of tools and conventions for building production-ready applications quickly.

    • Provides a pre-configured environment for developing and deploying Java applications

    • Reduces the need for boilerplate code and configuration

    • Supports embedded servers for easy deployment

    • Offers built-in support for monitoring, metrics, and health checks

    • Integrates seamle...

  • Answered by AI
  • Q3. Tell me @qualifier annotation why we are using in project
  • Ans. 

    The @Qualifier annotation is used in Spring to specify which bean should be autowired when multiple beans of the same type are present.

    • Used to disambiguate beans of the same type

    • Helps in selecting a specific bean when multiple beans of the same type are available

    • Can be used in conjunction with @Autowired annotation

  • Answered by AI
  • Q4. Explain spring security
  • Ans. 

    Spring Security is a powerful and customizable authentication and access control framework for Java applications.

    • Provides authentication and authorization capabilities

    • Integrates with various authentication mechanisms like LDAP, OAuth, and database

    • Supports role-based access control and method-level security

    • Configurable through XML or Java-based configuration

    • Example: Securing a REST API with Spring Security

  • Answered by AI
  • Q5. What is jdbc ? Different between jdbc and hibernate
  • Ans. 

    JDBC is a Java API for connecting and executing queries on a database. Hibernate is an ORM framework that simplifies database interactions.

    • JDBC is a low-level API for database connectivity in Java, requiring manual handling of SQL queries and connections.

    • Hibernate is a high-level ORM framework that maps Java objects to database tables, abstracting away the need for manual SQL queries.

    • JDBC is more suitable for simple da...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are making fool to candidate without any reason they rejected to the candidate..

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Return type of add method?
  • Q2. What spring boot annotations you used and how?
  • Q3. Tell me about your previouse projects
  • Q4. How to optimize queries
  • Q5. What is thread safety

Interview Preparation Tips

Interview preparation tips for other job seekers - No work , old technologies. no scope for latest trends. dominating Team leads. Worlds most rude HR department. They tell you different package at first and give less while joining. they do it with everyone.
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 Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Resume-related questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Resume-related questions
Round 3 - HR 

(1 Question)

  • Q1. HR discussions round !

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about C-Edge Technologies?
Ask anonymously on communities.

C-Edge Technologies Interview FAQs

How many rounds are there in C-Edge Technologies interview?
C-Edge Technologies interview process usually has 1-2 rounds. The most common rounds in the C-Edge Technologies interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for C-Edge Technologies 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 C-Edge Technologies. The most common topics and skills that interviewers at C-Edge Technologies expect are SQL, Java, Linux, Unix and Spring.
What are the top questions asked in C-Edge Technologies interview?

Some of the top questions asked at the C-Edge Technologies interview -

  1. How many types in SQL joins and syntax of joins? Difference between joins? What...read more
  2. What is more important, completing scope perfectly or completing on ti...read more
  3. What is difference between runnable and callable in ja...read more
What are the most common questions asked in C-Edge Technologies HR round?

The most common HR questions asked in C-Edge Technologies interview are -

  1. What are your salary expectatio...read more
  2. Share details of your previous j...read more
  3. Tell me about yourse...read more
How long is the C-Edge Technologies interview process?

The duration of C-Edge Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 32 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 85%
2-4 weeks 15%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 59 Interviews
Tata Digital Interview Questions
2.8
 • 48 Interviews
DataMetica Interview Questions
3.5
 • 45 Interviews
View all

C-Edge Technologies Reviews and Ratings

based on 414 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.2

Salary

4.1

Job security

3.6

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 414 Reviews and Ratings
Cobol Developer

Thane

2-4 Yrs

Not Disclosed

Java Developer

Thane

2-4 Yrs

Not Disclosed

Dot Net Developer

Thane

2-4 Yrs

Not Disclosed

Explore more jobs
Assistant System Analyst
657 salaries
unlock blur

₹3.5 L/yr - ₹8.4 L/yr

System Analyst
386 salaries
unlock blur

₹4 L/yr - ₹11.2 L/yr

Software Developer
95 salaries
unlock blur

₹4 L/yr - ₹8.8 L/yr

Java Developer
81 salaries
unlock blur

₹3.5 L/yr - ₹7.7 L/yr

Software Engineer
41 salaries
unlock blur

₹3.9 L/yr - ₹9 L/yr

Explore more salaries
Compare C-Edge Technologies with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview