Upload Button Icon Add office photos
Engaged Employer

i

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

Securelayer7 Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Securelayer7 Technologies Penetration Tester Interview Questions and Answers

Updated 8 Nov 2022

Securelayer7 Technologies Penetration Tester Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What is Cross site scripting? Explain Csrf vs Xss ?
  • Ans. 

    Cross-site scripting (XSS) is a type of security vulnerability that allows attackers to inject malicious code into web pages viewed by other users.

    • XSS occurs when an attacker injects malicious code into a web page viewed by other users

    • CSRF occurs when an attacker tricks a user into performing an action on a website without their knowledge or consent

    • XSS can be used to steal sensitive information, such as login credentia...

  • Answered by AI
  • Q2. Types of SQL injection. Be Through with basics like osi layer and functionality of each layer . Clickjacking XXE, SSRF, Recent vulnerability like Log4j.... Cookies types of cookie headers.Why is cookie nee...

Interview Preparation Tips

Topics to prepare for Securelayer7 Technologies Penetration Tester interview:
  • Penetration Testing
  • OWASP
  • Business logic flaw
  • Idor
  • SQL injection
  • Xss
  • Csrf
  • Ssrf
  • Xxe
  • Log4j
Interview preparation tips for other job seekers - Be prepared with hand on knowledge like solving port swigger labs .
Knowing vulnerability will not fetch anything knowing logic behind vulnerability and attack mechanism will be beneficial.Give more importance to Owasp top 10 vulnerabilities.Be ready with everything.
Last but not the least
#fakeit_until_u_make_it...

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Interview Questionnaire 

19 Questions

  • Q1. Tell me about yoruself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies such as HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge in algorithms and data structures

    • Passionate about learning new technologies and solving complex problems

  • Answered by AI
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for fitness tracking.

    • Developed a web application using React for inventory management

    • Created a mobile app using Flutter for fitness tracking

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
  • Q3. Area of interest
  • Ans. 

    My area of interest is artificial intelligence and machine learning.

    • I have experience in developing machine learning models for predictive analytics.

    • I am interested in natural language processing and computer vision applications.

    • I enjoy exploring deep learning algorithms and neural networks.

    • I have worked on projects involving recommendation systems and image recognition.

  • Answered by AI
  • Q4. What are features of C++?
  • Ans. 

    C++ is a high-level programming language with features like object-oriented programming, templates, and memory management.

    • C++ supports object-oriented programming concepts like encapsulation, inheritance, and polymorphism.

    • Templates allow generic programming and code reusability.

    • C++ provides low-level memory manipulation through pointers.

    • Standard Template Library (STL) provides a collection of classes and functions for ...

  • Answered by AI
  • Q5. What is Big Data?
  • Ans. 

    Big Data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big Data is characterized by the 3Vs - Volume, Velocity, and Variety.

    • It requires specialized tools and technologies such as Hadoop, Spark, and NoSQL databases.

    • Examples of Big Data include social media data, sensor data, and financial market data.

  • Answered by AI
  • Q6. Write a program for reversing a string without using string function
  • Ans. 

    Program to reverse a string without using string function

    • Iterate through the string from end to start and append each character to a new string

    • Use a loop to swap the first and last characters, then move towards the middle until the entire string is reversed

    • Convert the string to a character array, then swap the first and last elements until the entire array is reversed

  • Answered by AI
  • Q7. What is your role in final year project?
  • Ans. 

    I was responsible for designing and implementing the project's database and backend functionality.

    • Designed the database schema and created the necessary tables

    • Implemented the backend functionality using Java and Spring framework

    • Collaborated with team members to integrate the frontend and backend components

    • Tested the application and fixed any bugs or issues that arose

    • Presented the project to the faculty and received pos

  • Answered by AI
  • Q8. What are keys in database and why do we use them?
  • Ans. 

    Keys in a database are unique identifiers used to establish relationships between tables and ensure data integrity.

    • Keys are used to uniquely identify records in a database table.

    • Primary keys are used to uniquely identify each record in a table.

    • Foreign keys establish relationships between tables.

    • Keys help enforce data integrity and maintain consistency in the database.

    • Examples of keys include primary keys, foreign keys,

  • Answered by AI
  • Q9. What are issues in cloud?
  • Ans. 

    Issues in cloud include security, downtime, vendor lock-in, and data privacy.

    • Security concerns such as data breaches and unauthorized access

    • Downtime and service interruptions affecting business operations

    • Vendor lock-in and limited flexibility in choosing cloud providers

    • Data privacy and compliance with regulations such as GDPR and HIPAA

  • Answered by AI
  • Q10. Brief introduction of your project and algorithms used in project
  • Ans. 

    Developed a web application for online shopping using React and Node.js

    • Implemented user authentication and authorization using JSON Web Tokens (JWT)

    • Used MongoDB as the database to store user and product information

    • Implemented a search feature using Elasticsearch to provide fast and accurate search results

    • Integrated Stripe payment gateway for secure online transactions

  • Answered by AI
  • Q11. Flow diagram of final year project
  • Ans. 

    The flow diagram of my final year project showcases the step-by-step process of its execution.

    • The flow diagram illustrates the sequence of activities and their dependencies.

    • It helps in understanding the overall structure and logic of the project.

    • Each step in the diagram represents a specific task or action.

    • Arrows indicate the flow of control or data between different steps.

    • Decision points are represented by diamond-sha...

  • Answered by AI
  • Q12. Why do we normalise our database?
  • Ans. 

    Normalisation reduces data redundancy and improves data integrity in a database.

    • Prevents data duplication and inconsistencies

    • Simplifies database maintenance and updates

    • Improves query performance

    • Enforces data integrity and consistency

    • Follows best practices for database design

    • Examples: breaking down a customer table into separate tables for orders, addresses, and payments

    • Examples: creating a separate table for product ca...

  • Answered by AI
  • Q13. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications and a strong background in computer science.

    • Experienced in developing web applications using technologies like HTML, CSS, JavaScript, and React

    • Strong background in computer science with knowledge of algorithms and data structures

    • Familiar with agile development methodologies and version control systems like Git

  • Answered by AI
  • Q14. Tell me your 5 qualities so that i should hire you
  • Ans. 

    I am a problem solver, team player, quick learner, detail-oriented, and have strong communication skills.

    • Problem solver - I enjoy tackling complex problems and finding innovative solutions.

    • Team player - I work well with others and value collaboration in achieving goals.

    • Quick learner - I am able to pick up new technologies and concepts quickly.

    • Detail-oriented - I pay attention to the smallest details to ensure high-qual...

  • Answered by AI
  • Q15. Do you have any engineering background
  • Ans. 

    Yes, I have a Bachelor's degree in Computer Engineering.

    • Bachelor's degree in Computer Engineering

    • Experience in software development

    • Knowledge of engineering principles applied to software design

  • Answered by AI
  • Q16. How was your day?
  • Ans. 

    My day was productive and challenging, with a lot of problem-solving and collaboration.

    • Completed a major coding project ahead of schedule

    • Participated in a brainstorming session with team members

    • Solved a tricky bug in the codebase

    • Attended a virtual meeting with stakeholders

  • Answered by AI
  • Q17. Do you have relatives in Pune? or what about your accomodation?
  • Ans. 

    No, I do not have any relatives in Pune. I have arranged for my accommodation in a rented apartment near the office.

    • No relatives in Pune

    • Accommodation arranged in a rented apartment near the office

  • Answered by AI
  • Q18. Do you know about My Passion Challenge test?
  • Ans. 

    Yes, My Passion Challenge test is a coding competition for software engineers.

    • My Passion Challenge test is a coding competition that evaluates the coding skills of software engineers.

    • It is designed to test problem-solving abilities, algorithmic thinking, and coding proficiency.

    • Participants are given a set of coding challenges to solve within a specified time limit.

    • The challenges can range from simple to complex, coveri...

  • Answered by AI
  • Q19. Any higher studies plan?
  • Ans. 

    Considering pursuing a Master's degree in Computer Science to deepen knowledge and advance career.

    • Considering pursuing a Master's degree in Computer Science

    • To deepen knowledge and advance career

    • Examples: MS in Computer Science at XYZ University, online courses in AI and Machine Learning

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: In this section, you will find questions from all technical subjects like data structures,design and analysis of algorithms, software testing and quality assurance , computer networks, database management , C , C++ , C# and java. The difficulty level is moderate.
For this section you can study from indiabix.com
In the 2nd section, we have to write a program and also have to follow constraints mentioned in the problem statement. Programs are based on file handling, structure and union , string operations,etc.
In 3rd round, you have to write an essay of about 10 lines. Essay topics are general issues like I had 'Traffic issues in India'.
Tips: Stick to your basics.
All the concepts should be clear.
Programs should be syntactically correct. Try to mention comments and also display output as expected. It adds up to your representation even if your logic goes wrong. :)
For essay writing round, there should be no grammatical mistakes.
Time management is very important.

Duration: 90 minutes
Total Questions: 75

Round: Technical Interview
Experience: My first technical round really went well. So I was qualified for Hr round.
But some candidates had to appear for 2 technical interviews.

Tips: Stay confident about your answers and also mention area of interest in your resume and go through your resume before going to interview. 60% of technical interview is on projects. They are really interested in ideas used in your projects. Explain all the projects in detail like which front end and back end used.
Every round is an elimination round. So give your best and stay confident.


Round: HR Interview
Experience: Hr round is also elimination round. And you should have good communication skills.
There is always backfiring so you have to be attentive and confident.
Always try to reply in a positive way.
Tips: You should read about the history of company and also the domains on which they are working and their recent projects.

Skills: Verbal Communication Skills
College Name: Jawaharlal Nehru Engineering College

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: An objective type written test. Around 60 questions in 1 hr which included around 10 aptitude questions and others from C, Datastructure, Operating System, Computer Network, Software Engineering, Database etc

Round: Technical Interview
Experience: Questions were mainly from Datastructure, Operating System and Database. I was asked to reverse a linked list using a stack and write some sql queries which included use of JOIN.

Round: HR Interview
Experience: At each stage, we get to know if we are still in the selection process of have been eliminated.They were looking for right logic rather than perfect syntax.

College Name: NA

Interview Preparation Tips

College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

11 Questions

  • Q1. Hobbies: Drawing. Asked about drawing and pencil shading. Draw in next 5 mins something great to impress me else rejected
  • Q2. Sketch my face
  • Q3. If you are told to do a job of a peon for the company will you?
  • Q4. Remove all the pcs from the lab and keep in other lab RIGHT NOW?
  • Ans. 

    Yes, I can remove all the pcs from the lab and keep them in another lab right now.

    • Ensure all the necessary equipment and tools are available for the move

    • Coordinate with the lab staff to ensure a smooth transition

    • Label and document each PC for easy identification and setup in the new lab

    • Ensure proper packaging and handling to prevent any damage during the move

  • Answered by AI
  • Q5. Impress me with your talents
  • Q6. If a person asks you on a construction site to pick up bricks will you?
  • Q7. How crazy are you?
  • Q8. Show me how crazy are you in next 5 mins?
  • Q9. Write down Fibonacci series and also explain pseudo code for it?
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The first two numbers of the series are always 0 and 1

    • The next number is the sum of the previous two numbers

    • The series goes on infinitely: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ...

    • Pseudo code: 1. Initialize variables a=0, b=1, c=0 2. Print a and b 3. Repeat steps 4-6 until desired number of terms 4. c=a+b 5. Pr

  • Answered by AI
  • Q10. Write algorithm for matrix multiplication?
  • Ans. 

    Algorithm for matrix multiplication

    • Create a result matrix with dimensions of the two input matrices

    • Iterate through each row and column of the result matrix

    • For each element in the result matrix, multiply corresponding row in first matrix with corresponding column in second matrix

    • Add the products obtained in the previous step to get the final value for the element

  • Answered by AI
  • Q11. Explain your project and which algorithm you used in it. Why that algorithm?
  • Ans. 

    I worked on a project that involved sentiment analysis of customer reviews using Naive Bayes algorithm.

    • The project involved collecting customer reviews from various sources.

    • Preprocessing the data by removing stop words, stemming, and tokenizing.

    • Used Naive Bayes algorithm for sentiment analysis.

    • The algorithm was chosen because of its simplicity and effectiveness in text classification tasks.

    • The accuracy of the model was

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: Confused

If they say do you have any questions?
NEVER ASK about your performance in that round.

Round: Technical Interview
Experience: Good
Tips: Interview depends on your basic knowledge

Skills: Presence Of Mind, Technical Skills, Analytical Skills
College Name: Vidyalankar Institute Of Technology
Motivation: Got rejected for TCS aptitude.
Funny Moments: Whole HR interview

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. Talk about your BE project?
  • Ans. 

    Developed a web-based project management system for a construction company.

    • Used PHP and MySQL for backend development

    • Implemented user authentication and authorization

    • Designed a responsive UI using Bootstrap

    • Integrated Google Maps API for location tracking

    • Enabled file uploads and downloads for project documents

  • Answered by AI
  • Q2. If you belong to EXTC, then why IT?
  • Ans. 

    EXTC and IT are not mutually exclusive fields. My knowledge in EXTC complements my skills in IT.

    • My knowledge in EXTC gives me a strong foundation in electronics and communication, which are essential in the IT industry.

    • I have also gained programming skills through my coursework and projects in EXTC.

    • IT is a rapidly growing field with a lot of opportunities, and I believe my skills and knowledge make me a strong candidat...

  • Answered by AI
  • Q3. Are you ok with relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for a position that aligns with my career goals

    • I am excited about the prospect of exploring a new city and culture

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q4. Which languages are you familiar with?
  • Ans. 

    I am familiar with several programming languages.

    • Java

    • Python

    • C++

    • JavaScript

    • SQL

  • Answered by AI
  • Q5. BE project members and your guide
  • Q6. What/s the diffrencebetween leader and a manager
  • Ans. 

    A leader inspires and motivates while a manager plans and organizes.

    • Leaders focus on the big picture while managers focus on details

    • Leaders lead by example while managers delegate tasks

    • Leaders inspire and motivate while managers enforce rules and policies

    • Leaders are visionaries while managers are implementers

    • Examples of leaders: Steve Jobs, Martin Luther King Jr. Examples of managers: Tim Cook, COO of Apple

  • Answered by AI
  • Q7. Are you okay with relocation?
  • Ans. 

    Yes, I am open to relocation for the right opportunity.

    • I am willing to relocate for the right job opportunity

    • I am open to exploring new places and cultures

    • I understand that relocation may come with challenges, but I am prepared to face them

    • I am excited about the prospect of starting fresh in a new location

  • Answered by AI
  • Q8. What's the name of the person who took your technical interview?
  • Ans. 

    I'm sorry, I don't have that information.

    • N/A

  • Answered by AI
  • Q9. How was the TCS aptitude test?
  • Ans. 

    The TCS aptitude test was challenging but fair.

    • The test covered a wide range of topics including math, logic, and English.

    • The questions were designed to test problem-solving skills and critical thinking.

    • Time management was crucial as there were many questions to answer in a limited time.

    • Overall, the test was a good indicator of one's aptitude for software engineering.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: pretty decent and interactive
Tips: be true, be yourself

General Tips: Do not fake a personality, be original. Avoid an answer if you have to, but , in an affirmative way.
Skills: Ability To Justify, Ability To Be Involved In Hands On Work, Ability To Deal Diplomatically, Ability To Convince
College Name: Vidyalankar Institute Of Technology
Funny Moments: The HR interviewer asked me the name of my tech interviewer.

Interview Questionnaire 

7 Questions

  • Q1. Introduce Yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. About Your Family
  • Q3. About MindTree
  • Q4. Why MindTree?
  • Ans. 

    MindTree's focus on innovation, culture of learning, and diverse opportunities make it an ideal fit for my career growth.

    • Strong focus on innovation and cutting-edge technologies

    • Culture of continuous learning and development

    • Diverse opportunities for growth and career advancement

  • Answered by AI
  • Q5. Plans for Higher Study
  • Ans. 

    I am currently focusing on gaining practical experience in the software engineering field, but I may consider pursuing higher studies in the future.

    • Currently focusing on gaining practical experience in software engineering

    • Open to considering higher studies in the future

    • Higher studies could include a Master's degree in Computer Science or related field

  • Answered by AI
  • Q6. About Relocation
  • Q7. Any Question?

Interview Preparation Tips

Round: Test
Experience: First round was aptitude test organised by our college through AMCAT
It had 4 section –
1. English – 25 questions (25 minutes)
2. Quantitative – 25 questions (35 minutes)
3. Technical – 25 questions (35 minutes)
4. Logical – 24 questions (35 minutes)
Practice previous Amcat papers. Technical was mostly from data structure and algorithm. There were very basic questions from Operating System and SQL. Each section had individual cut off . It was adaptive test so you can not go back to your previous answer.
Tips: If you are good in basics then you can easily score well in AMCAT.There is no negative marking in AMCAT.You have to manage time as some of the questions are lengthy.Follow R.S.Aggarwal book.
Topics to concentrate for Quantative:
· Time and Work
· Pipes and Cisterns
· Problems on Trains
· Boats and Streams
· Calendar and Clocks
· Probability
· Ratios and Percentage
· Number systems

Logical Ability
Analogy Pattern Recognition
Classification Pattern Recognition
Coding Pattern Recognition
Number Series Pattern Recognition
Direction sense, Blood relations, CDL
Puzzles, Logical word sequence
Selection decision table
Data sufficiency
Objective reasoning

English:

Synonyms/Antonyms/Word Meaning (Vocabulary)
Complete the Sentence (Grammar)
Spot error/Correct sentence (Grammar/sentence construction)
Sentence Ordering (Comprehension skills)
Questions based on passage (Comprehension skills)
Duration: 130 minutes
Total Questions: 99

Round: Resume Shortlist
Experience: Eligibility Criteria:

10th and 12th percentage - 65%
Aggregate of 60% in Engineering (BE / B.Tech/MCA only)
Please note the percentage calculation in case of CGPA:
Total marks obtained from in all the subjects from the first to last semester divided by total of maximum marks in all the subjects from first to last semester.
Candidates need to clear all exams before joining & should come with Degree Certificates
At the time of recruitment, Mindtree allow candidates to appear for the selection/interview process if they have less than 2 backlogs
Only Students from circuit branches can take part in the Mindtree selection process (branches mentioned below) :-
Computer Science and Engineering
Electronics
Electronics and Electricals
Electronics & Communication Engineering
Electronics & Instrumentation
Electronics and telecommunication Engineering
Information Science
Information Technology
Instrumentation Engineering
Telecommunication
MCA

Round: Test
Experience: This round is elimination round and your programs will be considered for technical round. There were 2 C/C++/Java programming questions and you need to type the program, compile and submit. Some hints will be on the screen. This test is conducted by Aspiring Minds. You have to focus on basics programming. There were two questions.One question from pattern printing and other one from array/pointer/String.
Tips: Focus on basic programming
Duration: 20 minutes
Total Questions: 2

Round: Technical Interview
Experience: Thorough discussion about the projects. My major work was on Advance Java, so the interviewer kept on grilling me. Questions on the database, challenges faced, control flow were asked. She even asked me about the implementation of my project. The interview ended with some questions on OOPs concepts.
Tips: Prepare both the programs which have been asked in Programming test. You are surely going to face this question. Prepare well with Logics.Apart from that you need to focus on C/Data Structure/DBMS/Basics of Operating System/Basics of OOPS.

C- Pointer/Array/Strings/Structure/Union
Data Structure : Linked List/Stack/Tree/Sorting/Traversal/SEaching

Round: HR Interview
Experience: This was end of d interview, thankfully I was able to answer all of them. I was the first candidate to enter .

I hope all that I shared above could help you in your preparation. Be confident and give your best.
Tips: In HR round, questions are of fixed type. in every Interview So preparee it from Indiabix.

General Tips: Focus on basics. The "basic" is most difficult to cover :D So Prepare well and be Confident
Skill Tips: Confidence is the key in all interview
Skills: Smartness, Ability To Think Of Creative Solutions, Technical Skill, Confidence
College Name: B P Poddar Institute of management and technology

I applied via Campus Placement

Interview Questionnaire 

4 Questions

  • Q1. Tell me about a time when you have worked on a group project
  • Ans. 

    Worked on a group project to develop a mobile app for a charity organization

    • Collaborated with team members to define project scope and requirements

    • Assigned tasks and set deadlines to ensure timely completion

    • Conducted regular meetings to discuss progress and address any issues

    • Implemented agile methodology to adapt to changing requirements

    • Delivered a functional and user-friendly app within the given timeframe

  • Answered by AI
  • Q2. How will you write a program to . For example, create a calculator
  • Ans. 

    To create a calculator program, use a GUI framework and implement basic arithmetic operations.

    • Choose a programming language and a GUI framework such as JavaFX or Tkinter.

    • Implement the basic arithmetic operations such as addition, subtraction, multiplication, and division.

    • Add functionality for decimal points, clear button, and negative numbers.

    • Test the program thoroughly to ensure accuracy and usability.

  • Answered by AI
  • Q3. Why do you want to work for this organisation?
  • Ans. 

    I am excited to work for this organisation because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge technology

    • I appreciate the emphasis on professional development and growth opportunities for employees

    • I am drawn to the company's culture of collaboration and teamwork

    • I am excited about the potential to work on projects that have a

  • Answered by AI
  • Q4. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers to create innovative solutions.

    • Leading a team of developers to create innovative solutions

    • Continuing to learn and stay up-to-date with the latest technologies

    • Contributing to the growth and success of the company

    • Mentoring and coaching junior developers

    • Taking on more responsibilities and challenges

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: I responded with a description of my third year engineering project. The interviewer was interested in knowing more about
a. how did we come up with the project idea
b. how was the work divided between the team members
c. what challenges did we face and how we overcame them
d. what was the final outcome. was the deliverable as per specifications
Tips: In my experience, interviewers are trying to understand how one works in a group / team. Provide examples instead of generic responses - these will serve as evidences to your claims. Try to include following pointers in your responses
a. what was your personal contribution (this is the most technical part of the response)
b. how did you assist other members
c. how did you seek help from other members
d. how did you take accountability of something outside your personal tasks.
e. how did you keep focus on the bigger picture

Round: Technical Interview
Experience: I responded with a flowchart of a standard calculator. It was a simple design. The interviewer was more interested in knowing
a. how did I come up with a design
b. how did I make sure the design was correct
c. what are the limitations of the design?
d. what enhancements can I make to the design
Tips: In my experience, the interviewers are trying to understand your analytical skills.
a. how do you understand the problem statement
b. why do you decide on one particular design. are there any alternatives.
c. how do you break down the problem statement to smaller tasks
d. how thoroughly do you understand your design, with limitations.
e. does it fulfill your client's purpose.


Round: HR Interview
Experience: I had undertaken thorough research about the organisation, which enabled me to map my ambitions and expectations to the organisational values and purpose.
Tips: I highly recommend doing a background research on the organisation. It also helps to be clear on your expectations.
For example, 'I want to work here because the company believes in taking a client centric approach to deliver solutions, while maintaining high ethical standards. This way of work aligns with my idea of undertaking challenging tasks in an environment which provides developmental platforms for employees.'

Round: HR Interview
Experience: I responded with my professional ambitions in the industry. The interviewer is more interested in understanding what your objective is and your plan to get there.
Tips: Study the career opportunities and pathways available in the industry. Decide which one suits your goals the best. It is alright not to have a completely confirmed plan. You can also demonstrate that you are flexible with your plan and will select the best available option at a future point in time.

General Tips: Learn from the experience. If you do not get selected, there is always a next opportunity. Understand what the recruiters are looking for. Try to refrain from repeating your mistakes.
Skills: Leadership Skills, Teamwork, Ability To Improvise, Basic Mathematics, Ability To Deal Diplomatically, Activeness Of Candidate, Analytical Skills, Object Oriented Programming (OOP) Basics, Programming
College Name: Vidyalankar Institute Of Technology
Funny Moments: The HR rep complimented me on having a unique name and asked me what it means. To which I had no answer. Quite embarrassing!

Skills evaluated in this interview

Securelayer7 Technologies Interview FAQs

How many rounds are there in Securelayer7 Technologies Penetration Tester interview?
Securelayer7 Technologies interview process usually has 2 rounds. The most common rounds in the Securelayer7 Technologies interview process are Resume Shortlist and Technical.
What are the top questions asked in Securelayer7 Technologies Penetration Tester interview?

Some of the top questions asked at the Securelayer7 Technologies Penetration Tester interview -

  1. What is Cross site scripting? Explain Csrf vs Xs...read more
  2. Types of SQL injection. Be Through with basics like osi layer and functionality...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
View all
Security Consultant
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Security Consultant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Python Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Securelayer7 Technologies with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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