Upload Button Icon Add office photos

Data Security Council of India Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jan 2016. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Questions on linked list
  • Q2. Questions on resume
  • Q3. About my interests
  • Q4. My interest in symantec
  • Q5. Place to work

Interview Preparation Tips

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How you find loop in a linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If there is a loop in the linked list, the two pointers will eventually meet.

    • To detect the meeting point, we reset one of the pointers to the head of the linked list and move both pointers at the same speed.

    • The meeting point is the start of the loop.

  • Answered by AI
  • Q2. What is LRU, MRU and LFU
  • Ans. 

    LRU, MRU and LFU are caching algorithms used to manage memory in computer systems.

    • LRU stands for Least Recently Used and removes the least recently used items from the cache when the cache is full.

    • MRU stands for Most Recently Used and removes the most recently used items from the cache when the cache is full.

    • LFU stands for Least Frequently Used and removes the least frequently used items from the cache when the cache i...

  • Answered by AI
  • Q3. Camel banana problem

Interview Preparation Tips

Round: Test
Experience: coding test in hacker rank. can code in any language except in C and C++.
Duration: 1 hour
Total Questions: 2

Round: Technical Interview
Experience: In technical round the questions are on OS, basics of C(mainly in linked lists) and maths puzzle

They mostly see how you are approaching towards a problem.
It is first time that I heard the camel banana problem. So I struggled for some time and came up with a solution. He said he liked the approach but it can be optimized.

Round: HR Interview
Experience: It started with explain about yourselves. and then he asked to explain about one project with technical details. Later he asked me to explain binary search for a guy who don't know much of technical knowledge. He continued with why we only do 2 partitions why can we make it up to 3. Later he asked me what I liked most in my mobile phone. I said chatting apps. So he asked me that if I was hired as a developer to make a chatting app how will I do it.
Tips: way of thinking and way of approaching towards a problem.

Round: HR Interview
Experience: This round was focused mainly on whether I like to work in Bangalore or not. How I first heard about Symantec. how I will suit for the company. what are my future plans.

Skills: C, OS, Math Puzzles
College Name: IIT Madras

Skills evaluated in this interview

Intern Interview Questions & Answers

FireEye user image Siriguppa Aditya

posted on 15 May 2017

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: Test had all kinds of questions apti+c-apti+cse concepts+coding.
It covered all the things related to computer science.There were 3 coding questions among 39
Duration: 1 hour
Total Questions: 39

Round: Technical Interview
Experience: Resume Related

Round: Technical Interview
Experience: Resume related and tested my knowledge on networking

Analyst Interview Questions & Answers

Gen user image Anonymous

posted on 12 Apr 2022

I applied via Referral and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and clarify all your doubt
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Assignment 

The task was a Codility type

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions were mostly related to Django Rest Framework and internal working of it, apart from that there were questions related to Django ORM.
  • Q2. Given an API request how would to resolve the space issue that is happening with GET
  • Ans. 

    To resolve space issue with GET API request, consider pagination, compression, caching, and optimizing query parameters.

    • Implement pagination to limit the number of results returned in each request.

    • Use compression techniques like Gzip to reduce the size of the response data.

    • Implement caching mechanisms to store frequently accessed data and reduce the number of requests.

    • Optimize query parameters to only request necessary

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Complete resume based questions
  • Q2. You must me thorough of what you have mentioned in your resume.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data structures, Algorithm

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Q2. Reverse Linked list
  • Q3. Multi threaded queue
  • Q4. Design pattern
  • Q5. Basic C++ concepts
  • Q6. Puzzles

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems
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 

Easy problem on java

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the CV details

Data Analyst Interview Questions & Answers

McAfee user image Sidharth Kriplani

posted on 13 Aug 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Aug 2022. There were 3 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 Resume tips
Round 2 - Technical 

(4 Questions)

  • Q1. I was provided with three tables: 1st table had city wise sales, 2nd table had province_id and name, 3rd table had city_id, city_name, and province_id 1. Get the highest sales value, city, province. Do th...
  • Q2. Can aggregate functions be used with HAVING clause? With WHERE clause? What is the difference between WHERE and HAVING clause? Can HAVING be used without GROUP BY?
  • Ans. 

    Yes, aggregate functions can be used with HAVING and WHERE clauses. WHERE filters rows before grouping, HAVING filters groups after grouping.

    • Aggregate functions can be used with HAVING clause to filter groups based on the result of the aggregate function.

    • Aggregate functions can also be used with WHERE clause to filter rows before grouping.

    • WHERE clause filters rows before grouping, while HAVING clause filters groups aft...

  • Answered by AI
  • Q3. What is the order of execution of a SQL Query?
  • Ans. 

    The order of execution of a SQL query is: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • FROM: Specifies the tables involved in the query

    • WHERE: Filters the rows based on specified conditions

    • GROUP BY: Groups the rows that have the same values into summary rows

    • HAVING: Filters the groups based on specified conditions

    • SELECT: Selects the columns to be displayed in the result set

    • ORDER BY: Sorts the result set based on speci

  • Answered by AI
  • Q4. What are User Defined Functions? Stored Procedures? Triggers?
  • Ans. 

    User Defined Functions, Stored Procedures, and Triggers are database objects used to perform specific tasks in database management systems.

    • User Defined Functions are custom functions created by users to perform specific calculations or operations in a database.

    • Stored Procedures are precompiled SQL statements that can be executed by calling the procedure name.

    • Triggers are special types of stored procedures that are auto...

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

(1 Question)

  • Q1. This was a managerial round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for SQL the most

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Data Security Council of India Interview FAQs

How to prepare for Data Security Council of India 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 Data Security Council of India. The most common topics and skills that interviewers at Data Security Council of India expect are Corporate Sales, IT Sales, Presales, Research and B2B Sales.

Recently Viewed

INTERVIEWS

Indian Red Cross Society

No Interviews

INTERVIEWS

Antarang Foundation

No Interviews

INTERVIEWS

Aseema Charitable Trust

No Interviews

INTERVIEWS

Wadhwani Foundation

No Interviews

INTERVIEWS

CASA Mental Health

No Interviews

SALARIES

Data Security Council of India

No Salaries

REVIEWS

Data Security Council of India

No Reviews

INTERVIEWS

Freelancers Union

No Interviews

COMPANY BENEFITS

Data Security Council of India

No Benefits

INTERVIEWS

AROH Foundation

No Interviews

Tell us how to improve this page.

Data Security Council of India Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

McAfee Interview Questions
4.0
 • 30 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
Fortinet Interview Questions
4.2
 • 11 Interviews
NASSCOM Interview Questions
3.9
 • 6 Interviews
FireEye Interview Questions
4.3
 • 5 Interviews
Trend Micro Interview Questions
4.3
 • 1 Interview
View all

Data Security Council of India Reviews and Ratings

based on 21 reviews

3.1/5

Rating in categories

2.9

Skill development

3.3

Work-life balance

2.8

Salary

2.9

Job security

2.7

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 21 Reviews and Ratings
AI/ML Solutions Engineer

Noida,

Bangalore / Bengaluru

1-4 Yrs

Not Disclosed

Threat Researcher/ Threat Hunter

Noida

3-6 Yrs

Not Disclosed

Intern - Global Trade

Noida

0-1 Yrs

Not Disclosed

Explore more jobs
Consultant
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Marketing Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Data Security Council of India with

NASSCOM

3.9
Compare

Gen

4.0
Compare

Trend Micro

4.3
Compare

Check Point Software Technologies

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