Upload Button Icon Add office photos
Engaged Employer

i

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

Cedcoss Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cedcoss Technologies Interview Questions, Process, and Tips

Updated 9 Jul 2024

Top Cedcoss Technologies Interview Questions and Answers

View all 40 questions

Cedcoss Technologies Interview Experiences

Popular Designations

49 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

This round contains 20 MCQ questions of aptitude. Difficulty was easy level

Round 2 - HR 

(3 Questions)

  • Q1. Explain operator overloading
  • Ans. 

    Operator overloading allows operators to have different meanings based on the operands they work with.

    • Operator overloading is a feature in object-oriented programming languages.

    • It allows operators such as +, -, *, /, etc. to be redefined for user-defined types.

    • For example, the + operator can be overloaded to concatenate two strings or add two numbers.

    • Operator overloading can make code more readable and intuitive.

    • Howeve...

  • Answered by AI
  • Q2. Difference between friend class and friend function
  • Ans. 

    Friend class allows access to private and protected members of another class, while friend function allows access to private and protected members of a class.

    • Friend class is declared using the 'friend' keyword followed by the class name.

    • Friend function is declared using the 'friend' keyword followed by the function prototype.

    • Friend class can access private and protected members of the class it is declared as a friend o...

  • Answered by AI
  • Q3. Explain Scope resolution operator
  • Ans. 

    Scope resolution operator (::) is used to access static members of a class or namespace.

    • Used to access static members of a class or namespace

    • Used to differentiate between a global identifier and a local identifier

    • Can be used to access nested classes or namespaces

    • Can be used to access overridden methods in inheritance

    • Example: std::cout << 'Hello World';

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. Print * patter of equivalent triangle
  • Ans. 

    To print * pattern of equivalent triangle

    • Use nested loops to print the pattern

    • The outer loop controls the number of rows

    • The inner loop controls the number of * in each row

  • Answered by AI
  • Q2. Reverse the words of the given string. Ex. - good to see you output- you see to good
  • Q3. Explain ACID properties
  • Ans. 

    ACID properties ensure database transactions are reliable and consistent.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single, indivisible unit of work.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that concurrent transactions do not interfere with each other.

    • Durability ensures that on...

  • Answered by AI
  • Q4. Few Questions of Exception Handling (Basic level)
Round 4 - Technical 

(1 Question)

  • Q1. This will be a final technical round and after this there will be a coding round and a personal interview round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basic skills and prepare for previous questions

Skills evaluated in this interview

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 (197)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2022. There were 5 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 Resume tips
Round 2 - Aptitude Test 

Test 1 of numerical ability with some (basic) technical questions which contains total 15 questions on google form.

Round 3 - Aptitude Test 

Test 2 of Non technical contains 15 questions from reasoning,verbal section

Round 4 - Technical 

(6 Questions)

  • Q1. What is constructor and constructor overloading?
  • Ans. 

    Constructor is a special method used to initialize objects. Constructor overloading is creating multiple constructors with different parameters.

    • Constructor is called when an object is created

    • It has the same name as the class

    • It can be overloaded by creating multiple constructors with different parameters

    • Constructor overloading allows creating objects with different initial values

    • Example: public class Person { public Per

  • Answered by AI
  • Q2. Java vs other language
  • Ans. 

    Java is a popular language with strong community support and cross-platform compatibility.

    • Java is object-oriented and has automatic memory management

    • Other languages like C++ require manual memory management

    • Java has a large standard library and is used for web development, mobile apps, and enterprise software

    • Other languages like Python are popular for data science and machine learning

    • Java is compiled to bytecode and run...

  • Answered by AI
  • Q3. What is Typecasting, difference between jvm and jit
  • Ans. 

    Typecasting is converting one data type to another. JVM is a virtual machine that executes Java bytecode. JIT is a part of JVM that compiles bytecode to machine code at runtime.

    • Typecasting is done using casting operators like (int), (float), etc.

    • JVM stands for Java Virtual Machine and is responsible for executing Java bytecode.

    • JIT stands for Just-In-Time compiler and is a part of JVM that compiles bytecode to machine c...

  • Answered by AI
  • Q4. What is String constant pool and heap memory
  • Ans. 

    String constant pool is a part of heap memory where Java stores string literals to optimize memory usage.

    • String constant pool is a cache of string literals created by the JVM.

    • String literals are stored in the pool to optimize memory usage.

    • When a new string literal is created, the JVM first checks if it already exists in the pool.

    • If it does, a reference to the existing string is returned. If not, a new string is created...

  • Answered by AI
  • Q5. Explain Class loader and wrapper class?
  • Ans. 

    Class loader loads classes into JVM while wrapper class wraps primitive data types into objects.

    • Class loader is responsible for loading classes into JVM at runtime.

    • It searches for the class file in the classpath and loads it into memory.

    • Wrapper classes are used to wrap primitive data types into objects.

    • They provide utility methods to perform operations on primitive data types.

    • For example, Integer class wraps int data t...

  • Answered by AI
  • Q6. She ask me about Family background?
Round 5 - Technical 

(1 Question)

  • Q1. He ask totally questions from DSA ?Related to String,array,Max-heap etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Iam not selected in 5th technical round because iam not able to answer 1-2 questions.iam the only one in my class who selected for 4th round .

Skills evaluated in this interview

Top Cedcoss Technologies Associate Software Engineer Interview Questions and Answers

Q1. What is constructor and constructor overloading?
View answer (1)

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)
Cedcoss Technologies Interview Questions and Answers for Freshers
illustration image

Software Analyst Interview Questions & Answers

user image Neeraj Singh

posted on 21 Jul 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal

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 Resume tips
Round 2 - Aptitude Test 

It was EASY consist of Sections i.e. apptitude and reasoning, verbal,computer programming , and computer science which consist of DBMS, Operating System , etc.

Round 3 - HR 

(2 Questions)

  • Q1. Simple easy questions were asked!!
  • Q2. Introduce yourself,weakness and strength, short term and long term goal etc.

Software Analyst Interview Questions asked at other Companies

Q1. DFS Traversal Problem Statement Given an undirected and disconnected graph G(V, E), where V is the number of vertices and E is the number of edges, the connections between vertices are provided in the 'GRAPH' matrix. Each element of the mat... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was simple and online

Round 2 - HR 

(2 Questions)

  • Q1. It was offline mode
  • Q2. Tell ne about yourself. Are you comfortable in localisation?
Round 3 - Coding Test 

DSA problem
2 coding questions

Round 4 - Coding Test 

Subjective questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good in course subjects and DSA

Software Trainee Interview Questions asked at other Companies

Q1. 1. What is java and it's features ? 2. Why it is called platform independent language? 3. What is static memory allocation, dynamic memory allocation? 4. types of variable 5. Type casting 4. what is oops ? Is java contains a 100% opp's conc... read more
View answer (1)

Cedcoss Technologies interview questions for popular designations

 Software Developer

 (8)

 Associate Software Engineer

 (7)

 Software Engineer

 (3)

 Associate Software Developer

 (2)

 Full Stack Developer

 (2)

 Software Developer Trainee

 (2)

 Software Engineer Trainee

 (1)

 Business Analyst

 (1)

Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Lifecycle of activity

Interview Preparation Tips

Interview preparation tips for other job seekers - Just forcus on basics and your interview skills

Skills evaluated in this interview

Get interview-ready with Top Cedcoss Technologies Interview Questions

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

I applied via LinkedIn and was interviewed in Feb 2023. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Practice SQL and how u can implement in real life. Must be good in practical
  • Q2. Some basic of programming language.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice SQL and coding round is not too much difficult

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 (42)

Jobs at Cedcoss Technologies

View all

Sdet Technical Lead Interview Questions & Answers

user image MAYANK KESHARWANI

posted on 12 Oct 2023

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

I applied via LinkedIn and was interviewed in Apr 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 Resume tips
Round 2 - Coding Test 

Swap the numbers of an array from last

Round 3 - One-on-one 

(1 Question)

  • Q1. Asked dsa questions like tree heap bst etc

Sdet Technical Lead Interview Questions asked at other Companies

Q1. Bubble sort all sorting algorithms
View answer (1)

I applied via Campus Placement and was interviewed in Oct 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 Resume tips
Round 2 - Aptitude Test 

15 min aptitude qualifying in nature very easy everyone can do it

Round 3 - Technical 

(2 Questions)

  • Q1. What is Wrapper class in Java?
  • Ans. 

    Wrapper class is a class that wraps a primitive data type to provide additional functionality.

    • Wrapper classes are used to convert primitive data types into objects.

    • They provide methods to convert between primitive data types and objects.

    • Examples include Integer, Double, Boolean, etc.

    • Wrapper classes are immutable.

    • They are often used in collections and generics.

  • Answered by AI
  • Q2. Describe all stages of SDLC in detail
  • Ans. 

    SDLC is a process followed by software development teams to design, develop and test high-quality software.

    • Planning: Define project scope, requirements, and objectives

    • Analysis: Gather information and analyze requirements

    • Design: Create a detailed design plan

    • Implementation: Develop the software

    • Testing: Verify the software meets requirements

    • Deployment: Release the software to users

    • Maintenance: Fix bugs and make updates as

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare one programming language in great detail. Cover all basic topics . Study OOPS and also have knowledge of your core topics

Skills evaluated in this interview

Graduate Engineer Trainee (Get) Interview Questions asked at other Companies

Q1. Q: 1 What is IC engine? What is the types of IC engine? Q:2 Difference between Otto cycle and Diesel cycle? What is the process of both cycle and what is the effeciency of both cycle ? Which one is good in effeciency? Q:3 Difference between... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. What are your educational background.
  • Q2. Tell me about your journey from 10th to graduation.
Round 3 - Technical 

(3 Questions)

  • Q1. Networking Basics
  • Q2. Hardware basics
  • Q3. OSI vs TCP IP
  • Ans. 

    OSI is a theoretical model with 7 layers, while TCP/IP is a practical implementation with 4 layers.

    • OSI model has 7 layers: Physical, Data Link, Network, Transport, Session, Presentation, Application

    • TCP/IP model has 4 layers: Network Interface, Internet, Transport, Application

    • OSI model is a theoretical framework, while TCP/IP is the protocol suite used for internet communication

    • TCP/IP model is more widely used in practi

  • Answered by AI

System Administrator Interview Questions asked at other Companies

Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can manage applications using MAM then why do we need MDM?
View answer (8)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Assignment 

Write a summary of given information through a video meeting.

Round 2 - Technical 

(4 Questions)

  • Q1. Asked about the latest trends and techniques about writing tech documents.
  • Q2. Tell about the phases of buyer?
  • Ans. 

    The phases of buyer include awareness, consideration, decision, and retention.

    • Awareness - when the buyer becomes aware of a need or problem

    • Consideration - when the buyer researches and evaluates different solutions

    • Decision - when the buyer makes a purchase decision

    • Retention - when the buyer becomes a repeat customer

  • Answered by AI
  • Q3. What are the basic content framing types?
  • Ans. 

    The basic content framing types include listicles, how-to guides, case studies, interviews, and product reviews.

    • Listicles - articles presented in a list format, such as 'Top 10 Ways to Improve SEO'.

    • How-to guides - step-by-step instructions on how to do something, like 'How to Write a Blog Post'.

    • Case studies - in-depth analysis of a specific situation or project, like 'Case Study: Increasing Website Traffic'.

    • Interviews ...

  • Answered by AI
  • Q4. Content lifecycle to market a product
  • Ans. 

    Content lifecycle involves planning, creating, distributing, and analyzing content to market a product.

    • Research target audience and keywords

    • Create high-quality and engaging content

    • Distribute content through various channels like social media, email, and SEO

    • Track and analyze content performance to make improvements

    • Update and repurpose content as needed

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cedcoss Technologies SEO and Content Writer interview:
  • Computer
  • Wordpress
  • Zoho
  • Technical Documentation
  • Newsletters
  • Press Release Submission
  • Article Writing
  • Blogs
  • Case Studies
  • White papers
  • Infographic
Interview preparation tips for other job seekers - You can join the organisation but they are not so professional about the employee benefits.

SEO and Content Writer Interview Questions asked at other Companies

Q1. What do you know about Keyword Research, Backlink Development &amp; What is the most important SEO aspect between this two?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Cedcoss Technologies Interview FAQs

How many rounds are there in Cedcoss Technologies interview?
Cedcoss Technologies interview process usually has 2-3 rounds. The most common rounds in the Cedcoss Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for Cedcoss 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 Cedcoss Technologies. The most common topics and skills that interviewers at Cedcoss Technologies expect are Javascript, PHP, HTML, Wordpress and CSS.
What are the top questions asked in Cedcoss Technologies interview?

Some of the top questions asked at the Cedcoss Technologies interview -

  1. What is constructor and constructor overloadi...read more
  2. How much you updated tobyour software and knowledge about your creativit...read more
  3. What is Typecasting, difference between jvm and ...read more
How long is the Cedcoss Technologies interview process?

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

Recently Viewed

JOBS

Cedcoss Technologies

No Jobs

INTERVIEWS

Cedcoss Technologies

No Interviews

INTERVIEWS

Infosys

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Qualcomm

No Interviews

INTERVIEWS

IFB

No Interviews

INTERVIEWS

ZS

No Interviews

INTERVIEWS

VVDN Technologies

No Interviews

SALARIES

Cedcoss Technologies

INTERVIEWS

Groupon

No Interviews

Tell us how to improve this page.

Cedcoss Technologies Interview Process

based on 37 interviews

Interview experience

3.4
  
Average
View more

Interview Questions from Similar Companies

Techugo Interview Questions
4.0
 • 4 Interviews
ChromeInfotech Interview Questions
2.9
 • 2 Interviews
View all

Cedcoss Technologies Reviews and Ratings

based on 344 reviews

3.0/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

3.0

Salary

2.6

Job security

2.8

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 344 Reviews and Ratings
Php Developer

Lucknow

1-2 Yrs

Not Disclosed

Customer Sucess Associate

Lucknow

2-5 Yrs

Not Disclosed

Tiktok Marketing Expert

Lucknow

3-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Analyst
86 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Analyst
77 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
73 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cedcoss Technologies with

Srijan Technologies

3.5
Compare

QSS Technosoft Inc.

3.4
Compare

SPARX IT Solutions

3.6
Compare

Classic Informatics

4.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent