Upload Button Icon Add office photos

Filter interviews by

Cyber Square Python Trainer Interview Questions, Process, and Tips

Updated 26 Oct 2024

Cyber Square Python Trainer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Fair and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What do you know about HTML
  • Ans. 

    HTML is a markup language used for creating web pages.

    • HTML stands for HyperText Markup Language

    • It is used to structure content on the web

    • HTML elements are represented by tags like , ,

    • Attributes can be added to elements to provide additional information

Answered by AI
  • Q2. What do you know about Javascript
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites and web applications.

    • JavaScript is primarily used for client-side web development.

    • It can be used to add interactivity, animations, and dynamic content to websites.

    • JavaScript is often used in conjunction with HTML and CSS to create modern web applications.

    • Popular JavaScript frameworks/libraries include React, Angular, and...

  • Answered by AI
  • Q3. What are selectors in CSS and name some
  • Ans. 

    Selectors in CSS are patterns used to select the elements you want to style on a web page.

    • Selectors can be based on element type, class, ID, attribute, or relationship to other elements.

    • Examples include: element selector (p), class selector (.example), ID selector (#example), attribute selector ([href]), descendant selector (div p).

  • Answered by AI
  • Q4. What is the difference in MVT and MVC architecture
  • Ans. 

    MVT stands for Model-View-Template and MVC stands for Model-View-Controller. Both are architectural patterns used in web development.

    • MVT separates the logic into three components: Model (data handling), View (user interface), and Template (presentation layer). Django framework follows MVT architecture.

    • MVC separates the logic into three components: Model (data handling), View (user interface), and Controller (handles us...

  • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Cyber Square Python Trainer interview:
    • HTML
    • CSS
    • Javascript
    • Python
    • Django
    Interview preparation tips for other job seekers - Revise all the concepts you learned till now before the interview.

    Skills evaluated in this interview

    Interview questions from similar companies

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

    I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (5 Questions)

    • Q1. Difference between list & tuple?
    • Ans. 

      List is mutable, tuple is immutable in Python.

      • List uses square brackets [], tuple uses parentheses ().

      • List elements can be changed, added, or removed, tuple elements cannot be changed.

      • Lists are used for collections of items that may need to be modified, tuples are used for fixed collections of items.

      • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

    • Answered by AI
    • Q2. What is namespace and its types?
    • Ans. 

      Namespace is a way to organize variables and functions in a program to avoid naming conflicts.

      • Namespace helps in avoiding naming conflicts by providing a unique space for each identifier.

      • Types of namespaces include global namespace, local namespace, built-in namespace, and module namespace.

      • Example: In Python, each module has its own namespace where all the variables and functions defined in that module reside.

    • Answered by AI
    • Q3. Write code to explain multiple inheritance
    • Ans. 

      Multiple inheritance in Python allows a class to inherit attributes and methods from more than one parent class.

      • Python supports multiple inheritance by allowing a class to inherit from multiple parent classes.

      • The order of parent classes in the inheritance list matters, as methods are searched for in the order they appear.

      • Diamond problem can occur in multiple inheritance when two parent classes have a common ancestor cl...

    • Answered by AI
    • Q4. Define lambda function and give an example?
    • Ans. 

      Lambda function is an anonymous function defined using the lambda keyword in Python.

      • Lambda functions are used for creating small, one-time use functions without a name.

      • Syntax: lambda arguments: expression

      • Example: double = lambda x: x * 2

    • Answered by AI
    • Q5. Oops concept,decorator,iterator.

    Skills evaluated in this interview

    Interview experience
    2
    Poor
    Difficulty level
    Hard
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Not even asked for self intro, she was very rude and end the interview in 20mins, directly asked top level designs, even I have cleared and waiting for better outcome this interview hit hard.
    • Q2. I was stunned of the interviewer behavior and attitude.
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (1 Question)

    • Q1. Write a code for reverse an integer?
    • Ans. 

      Use string manipulation to reverse an integer in Python.

      • Convert the integer to a string

      • Use string slicing to reverse the string

      • Convert the reversed string back to an integer

    • Answered by AI
    Round 2 - Technical 

    (1 Question)

    • Q1. Differences between docker image and container
    • Ans. 

      Docker image is a template used to create containers, while a container is a running instance of an image.

      • Docker image is read-only, while a container is a writable instance of an image.

      • Multiple containers can be created from the same image, but each container is isolated from others.

      • Containers can be started, stopped, moved, and deleted, while images are static and cannot be changed.

      • Images are used to package an appli...

    • Answered by AI
    Interview experience
    4
    Good
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

    Round 1 - Coding Test 

    String,lists,dict and coding knowledge

    Interview Preparation Tips

    Interview preparation tips for other job seekers - reverse a string without using in built functions
    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 Aug 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Create new list from the provided list but the order should be shuffled and no duplicate element should be removed
    • Ans. 

      Create a new list with shuffled order and no duplicate elements.

      • Use the random.shuffle() function to shuffle the list

      • Use a set to keep track of elements already added to the new list to avoid duplicates

      • Convert the set back to a list to maintain the order of elements

    • Answered by AI
    • Q2. Architecture of existing application
    • Ans. 

      The existing application follows a microservices architecture with separate components for different functionalities.

      • The application is divided into multiple services that communicate with each other through APIs.

      • Each service is responsible for a specific task or functionality, promoting modularity and scalability.

      • Examples of microservices in the architecture include user authentication service, payment processing serv

    • Answered by AI
    Round 2 - HR 

    (2 Questions)

    • Q1. Why do you want to join
    • Ans. 

      I am passionate about Python development and excited about the innovative projects your company is working on.

      • Passionate about Python development

      • Excited about innovative projects at company

      • Seeking growth and learning opportunities

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

      In 5 years, I see myself as a senior Python developer leading a team of developers on innovative projects.

      • Continuing to enhance my Python skills and staying updated on new technologies

      • Taking on more leadership responsibilities and mentoring junior developers

      • Contributing to the success of the company through my technical expertise

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

    Round 1 - Technical 

    (2 Questions)

    • Q1. Questions related to python web framework
    • Q2. Real time python project problem solving questions
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. List & tuple diff
    • Q2. Pickling & unpickling

    Interview Preparation Tips

    Interview preparation tips for other job seekers - The interview was very easy and basic questions asked. I answered all of them correctly and also solved coding question but I got stuck in one question and interviewer told me she is done with interview. Next day, I called HR and asked her for feedback, she told me that the feedback was not positive. I'm not getting what went wrong as she told she didn't got detailed feedback just that it's not positive.
    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    -
    Result
    Selected Selected
    Round 1 - Aptitude Test 

    Avg aptitude questions

    Round 2 - Coding Test 

    2 easy coding questions

    Round 3 - Technical 

    (2 Questions)

    • Q1. Array question in python
    • Q2. SQL query based on condition
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I was interviewed in Nov 2024.

    Round 1 - HR 

    (2 Questions)

    • Q1. : Tell me about yourself
    • Q2. What is the difference between hard work and smart work? Tell me about the most boring job you have ever had?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - An Inspection Marketplace designed to streamline the third-party inspection process through innovative digital technology.

    Cyber Square Interview FAQs

    How many rounds are there in Cyber Square Python Trainer interview?
    Cyber Square interview process usually has 1 rounds. The most common rounds in the Cyber Square interview process are Technical.
    What are the top questions asked in Cyber Square Python Trainer interview?

    Some of the top questions asked at the Cyber Square Python Trainer interview -

    1. What is the difference in MVT and MVC architect...read more
    2. What do you know about Javascr...read more
    3. What are selectors in CSS and name s...read more

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.1k Interviews
    Accenture Interview Questions
    3.9
     • 7.9k Interviews
    Infosys Interview Questions
    3.7
     • 7.4k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Cognizant Interview Questions
    3.8
     • 5.5k Interviews
    Amazon Interview Questions
    4.1
     • 4.9k Interviews
    Capgemini Interview Questions
    3.8
     • 4.7k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.7k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    Genpact Interview Questions
    3.9
     • 3k Interviews
    View all
    Compare Cyber Square with

    TCS

    3.7
    Compare

    Accenture

    3.9
    Compare

    Wipro

    3.7
    Compare

    Cognizant

    3.8
    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