Upload Button Icon Add office photos

Filter interviews by

CSC Covansys Corporation Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I applied via campus placement at University College of Engineering, Hyderabad and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Quant ,reasoning and english questions level of difficulty is easy

Round 2 - Coding Test 

Mcqs on Machine learning were asked in depth questions were asked

Round 3 - Technical 

(2 Questions)

  • Q1. How can we select K value for KNN algo?
  • Q2. Difference between Having and Where

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparing for ml and concepts of sql and dbms are important ,with a touch of HR questions like :tell something about yourself which is not mentioned in your resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. What can you tell me about SCCM technology?
  • Ans. 

    SCCM (System Center Configuration Manager) is a software management suite developed by Microsoft for managing large groups of computers running Windows OS.

    • SCCM allows for remote control, patch management, software distribution, operating system deployment, network access protection, and hardware and software inventory.

    • It helps organizations to manage their IT infrastructure more efficiently and securely.

    • SCCM integrates...

  • Answered by AI
  • Q2. What is Active Directory and how does it function?
  • Ans. 

    Active Directory is a directory service developed by Microsoft for Windows domain networks.

    • Centralized database for managing network resources

    • Stores information about users, computers, groups, and more

    • Allows for authentication and authorization of users and computers

    • Enables administrators to manage and secure network resources

    • Supports features like Group Policy, LDAP, and Kerberos authentication

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Communication skills
  • Q2. Personal information about studies and family

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong technical skills are required.

Intune Support Specialist CL4 Interview Questions & Answers

Softtek user image Radhakrishna sure

posted on 23 Nov 2024

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain android, ios enrollmenent methods details autopilot complete overview along with prerequisites
  • Q2. Explaince group policy analytics what is MDM wins over GPO applied group policy and mdm policy for co-managed device, which policy wins gpo or mdm, why? user is not able to login on his device, what is...
Round 2 - Technical 

(1 Question)

  • Q1. Explaince conditonal access details and methods of conditional access

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

90 min MCQ +coding test on hackerrank.

Round 2 - Technical 

(2 Questions)

  • Q1. Sort colors DSA question
  • Q2. Detect cycle in a linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect cycle in a linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at some point, there is a cycle in the linked list.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Was asked about why you want to join the company,my experience etc.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic question on windows administration.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl from a respected family, it is advisable not to go there. They may claim that there are many girls, but in reality, there are very few, and they harass them. The environment is quite detrimental. If you do not support the seniors' inappropriate behavior, there inappropriate touching you will have to leave immediately, as the HR lacks proper manners. No one will listen, even if the level of harassment is extremely high.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Scenario based file transferring question.
  • Q2. SQL basic query
Round 2 - Technical 

(2 Questions)

  • Q1. Project realated question
  • Q2. Behavioural and team management skill
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

AOSP Engineer Interview Questions & Answers

Pitney Bowes user image Anonymous

posted on 29 Oct 2024

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

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. GMS Integration and Certification
  • Q2. Build process, bug fixing and debugging tools
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Location specific question
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Extension methods and writing the code for an API
  • Ans. 

    Extension methods allow adding new methods to existing types without modifying the original code. Writing code for an API involves designing and implementing the interface for interacting with a software application.

    • Extension methods in C# allow adding new methods to existing classes without modifying the original source code.

    • When writing code for an API, consider the functionality that needs to be exposed to users and...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Extension methods
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What are the differences between B2B and B2C?
  • Ans. 

    B2B focuses on selling products or services to other businesses, while B2C focuses on selling products or services to individual consumers.

    • B2B transactions typically involve larger order sizes and longer sales cycles compared to B2C.

    • B2B marketing often targets a specific niche audience or industry, while B2C marketing targets a broader consumer base.

    • B2B relationships are usually more formal and based on long-term partn...

  • Answered by AI
  • Q2. What is exception propogation?
  • Ans. 

    Exception propagation is the process of passing an exception up the call stack until it is caught and handled.

    • Exceptions are thrown when an error occurs in a program.

    • If an exception is not caught and handled in a method, it is propagated to the calling method.

    • This continues until the exception is caught and handled or reaches the top of the call stack.

  • Answered by AI
  • Q3. What are the latest features of Java 17?
  • Ans. 

    Java 17 introduces new features like sealed classes, pattern matching for switch statements, and more.

    • Sealed classes restrict which classes can be subclasses, enhancing encapsulation and maintainability.

    • Pattern matching for switch statements simplifies code by allowing patterns in case labels.

    • New APIs like JEP 356: Enhanced Pseudo-Random Number Generators provide improved security and performance.

    • JEP 382: New macOS Ren...

  • Answered by AI

Skills evaluated in this interview

java Interview Questions & Answers

CDW user image Anonymous

posted on 7 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. 123rty 123 123 123 321 321 321
Round 2 - One-on-one 

(1 Question)

  • Q1. Hgjyuhliyoi ouououon 9ou9u9ppp

Tell us how to improve this page.

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 262 Interviews
Altimetrik Interview Questions
3.8
 • 206 Interviews
Xoriant Interview Questions
4.2
 • 174 Interviews
ThoughtWorks Interview Questions
3.9
 • 140 Interviews
3i Infotech Interview Questions
3.5
 • 139 Interviews
Apexon Interview Questions
3.3
 • 129 Interviews
Brillio Interview Questions
3.5
 • 124 Interviews
View all

CSC Covansys Corporation Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-Life balance

4.5

Salary & Benefits

4.5

Job Security

4.0

Company culture

4.5

Promotions/Appraisal

4.5

Work Satisfaction

Explore 6 Reviews and Ratings
Software Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹40 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹6.1 L/yr - ₹6.8 L/yr

Explore more salaries
Compare CSC Covansys Corporation with

Xoriant

4.2
Compare

3i Infotech

3.5
Compare

CitiusTech

3.4
Compare

HERE Technologies

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview