Upload Button Icon Add office photos
Premium Employer

i

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

Seclore Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Seclore Graduate Trainee Interview Questions and Answers

Updated 7 Sep 2023

Seclore Graduate Trainee Interview Experiences

1 interview found

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 Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Prepare well on HCF, LCM, there were questions on time management, ratio and mixtures

Round 2 - Coding Test 

Prepare C++ and Java and Python. I was asked questions on Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for aptitude round and be confident in HR and technical round. All the best to you all

Interview questions from similar companies

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

First round is coding round

Round 2 - Technical 

(1 Question)

  • Q1. This round include basic understanding of oops, dbms, and leetcode coding problems.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Coding test of easy level questions. 3-4 questions was there.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Give intro. 2.some DSA questions and i answered all. 3.some oops and Basic questions of CsE
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Strings related question

Interview Preparation Tips

Topics to prepare for Freshworks Graduate Trainee interview:
  • strings
  • Debugging

I was interviewed before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    Merge two sorted arrays into one sorted array in place.

    • Iterate from the end of both arrays and compare elements to merge in place

    • Use two pointers to keep track of the current position in each array

    • Update the elements in ARR1 from the end to the beginning

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string consisting of parentheses is balanced or not.

    • Iterate through each character in the string and use a stack to keep track of opening parentheses

    • If an opening parenthesis is encountered, push it onto the stack

    • If a closing parenthesis is encountered, check if it matches the top of the stack. If it does, pop the stack, else return 'Not Balanced'

    • At the end, if the stack is empty, re

  • Answered by AI
  • Q3. 

    Reverse Integer Problem Statement

    Given a 32-bit signed integer N, your task is to return the reversed integer. If reversing the integer causes overflow, return -1.

    Input:

    The first line contains an int...
  • Ans. 

    Reverse a 32-bit signed integer and handle overflow cases.

    • Implement a function to reverse the given integer.

    • Check for overflow conditions and return -1 if overflow occurs.

    • Use 32-bit capacity data types only.

    • Example: For input 123, output should be 321.

  • Answered by AI
Round 2 - Assignment 

Round duration - 60 minutes
Round difficulty - Easy

Round 3 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Deepest Left Leaf Node Problem Statement

    You are provided with a binary tree consisting of 'N' nodes. Your goal is to identify the deepest leaf node that is a left child of some node within the given bina...

  • Ans. 

    Identify the deepest left leaf node in a binary tree.

    • Traverse the binary tree in level order to find the deepest left leaf node.

    • Keep track of the maximum depth and the value of the deepest left leaf node found so far.

    • Return the value of the deepest left leaf node at the end.

  • Answered by AI
  • Q2. 

    Sub Sort Problem Statement

    You are given an integer array ARR. Determine the length of the shortest contiguous subarray which, when sorted in ascending order, results in the entire array being sorted in a...

  • Ans. 

    Find the length of the shortest subarray that needs to be sorted to make the entire array sorted in ascending order.

    • Iterate from left to right to find the first element out of order.

    • Iterate from right to left to find the last element out of order.

    • Calculate the length of the subarray between the out of order elements.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Invert a Binary Tree

    You are provided with a Binary Tree and one of its leaf nodes. Your task is to invert this binary tree, making sure to adhere to the following guidelines:

    • The given leaf node beco...
  • Ans. 

    Invert a binary tree with a given leaf node as the new root, following specific guidelines.

    • Start by identifying the leaf node provided in the input.

    • Follow the guidelines to invert the binary tree with the leaf node as the new root.

    • Ensure that the left child becomes the right child of the new root if available, and the parent becomes the left child.

    • Implement the inversion process for each test case and output the result

  • Answered by AI
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

This Round the HR checks whether you will be good fit for culture code that's followed by the company.

Interview Preparation Tips

Professional and academic backgroundI completed Electrical Engineering from Sri Krishna College of Engineering and Technology. I applied for the job as Graduate Trainee in ChennaiEligibility criteriaAbove 7 CGPAFreshworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, SQL, OOPS, Basics of system design.Time required to prepare for the interview - 7 monthsInterview preparation tips for other job seekers

Tip 1 : Make sure that you have good understand of data structures, Algorithm and OOPS
Tip 2 : Practice as many problems as you can in any platform that you are comfortable on.
Tip 3 : Have a decent knowledge on SQL, DBMS, OS, computer networks

Application resume tips for other job seekers

Tip 1 : Keep your resume short preferably 1 page and make sure its communicating all points 
Tip 2 : Add only those thing that you are confident on.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I was interviewed before Mar 2024.

Round 1 - Coding Test 

Hackerrank test - leetcode type questions - easy to medium

Round 2 - Assignment 

Assignment - to submit in Github

Round 3 - Technical 

(1 Question)

  • Q1. Technical q - coding, SQL
Round 4 - Technical 

(1 Question)

  • Q1. Technical q - coding ( to optimise and also the time and space complexity for the same)
Round 5 - HR 

(1 Question)

  • Q1. General HR questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Questions were regarding Oops concepts
  • Q2. Sql Queries,joins,keys
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Business Administration, passionate about marketing and eager to learn and grow in a dynamic work environment.

    • Recent graduate with a degree in Business Administration

    • Passionate about marketing

    • Eager to learn and grow in a dynamic work environment

  • Answered by AI
  • Q2. Given a topic to speak fee lines on it
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

10 Genral Apti , 10 code apti duration 1 hr

Round 2 - Coding Test 

3 hrs, 2 Stages 1st stage 3 Question, 2nd stage have 3 Question

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

I applied via Referral and was interviewed before Jan 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Topics varying from Maths,Logical Reasoning and Coding MCQs

Round 2 - Group Discussion 

30-40mints GD on random topic

Round 3 - Technical 

(1 Question)

  • Q1. Coding questions and computer fundamentals theory
Round 4 - HR 

(1 Question)

  • Q1. Normal Hr Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the fundamentals
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2023. 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 

Technical MCQ questions given which are pseudo code and grammar, aptitude test

Round 3 - Coding Test 

Given two coding questions to execute within amount of time

Round 4 - Technical 

(1 Question)

  • Q1. What are your projects? Explain about your project what is an array? write a program on reverse string write a program on even and odd numbers
Round 5 - HR 

(1 Question)

  • Q1. Asked about my place Asked to talk about favorite's place in your city

Interview Preparation Tips

Topics to prepare for LTIMindtree Graduate Trainee interview:
  • Computer Skills
Interview preparation tips for other job seekers - prepare well what u written on resume, projects and your technical questions on branch
Contribute & help others!
anonymous
You can choose to be anonymous

Seclore Interview FAQs

How many rounds are there in Seclore Graduate Trainee interview?
Seclore interview process usually has 3 rounds. The most common rounds in the Seclore interview process are Resume Shortlist, Aptitude Test and Coding Test.

Recently Viewed

INTERVIEWS

Seclore

No Interviews

SALARIES

Birla White

INTERVIEWS

Invenics

No Interviews

INTERVIEWS

Seclore

No Interviews

INTERVIEWS

Seclore

No Interviews

INTERVIEWS

Birla White

No Interviews

LIST OF COMPANIES

Birla White

Locations

INTERVIEWS

Valtech

No Interviews

DESIGNATION

SALARIES

Sipal Technologies

Tell us how to improve this page.

Seclore Graduate Trainee Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Coforge Interview Questions
3.3
 • 517 Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Zeta Interview Questions
3.3
 • 69 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
embedUR Systems Interview Questions
3.3
 • 48 Interviews
View all
Product Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Quality Engineer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Support Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Seclore with

Druva

3.7
Compare

Freshworks

3.5
Compare

Zoho

4.3
Compare

Tally Solutions

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