Find Interview Questions for Top Companies
Atlassian Interview Questions and Answers
Ques:- Describe difference between C structure and C++ structure?
Asked In :- atlassian,
Ques:- write an efficient code to find the first occurrence of 1 in a sorted binary array
Ques:- Why it need to be create a virtual environment before staring an project in django ?
Right Answer:
Creating a virtual environment before starting a Django project is important to isolate project dependencies, avoid version conflicts, and ensure that the project runs with the specific packages and versions it needs without affecting the global Python environment.
Ques:- What is namespace in Python?
Comments
Admin Feb 2, 2020

In Python, every new name introduced has its place where it lives and can be hooked. It is called a namespace. It is like a box where a variable name is graphed to the object placed. Whenever the variable is searched out in the bar, this box will be searched, to get the related object. Name space in Python is the frequently asked question in Python interview.

Ques:- How functional dependency is related to database table design?
Right Answer:
Functional dependency is a relationship between attributes in a database table where one attribute uniquely determines another. It is crucial for database table design as it helps in organizing data efficiently, ensuring data integrity, and minimizing redundancy by guiding the normalization process.
Ques:- What is the difference between “procedure” and “function”?
Right Answer:
A procedure is a set of SQL statements that perform a specific task and can return multiple values or no value, while a function is a set of SQL statements that perform a specific task and must return a single value. Functions can be used in SQL expressions, whereas procedures cannot.
Ques:- What is CI/CD? CI (Continuous Integration) is the practice of automatically integrating code changes. CD (Continuous Delivery/Deployment) automates the release of that code to production.
Right Answer:

CI/CD stands for Continuous Integration and Continuous Delivery/Deployment. CI is the practice of automatically integrating code changes into a shared repository frequently, while CD automates the process of delivering that code to production, ensuring that software can be released reliably and quickly.

Ques:- What is canary deployment? A canary release rolls out a new version to a small subset of users to monitor before full rollout.
Right Answer:

Canary deployment is a strategy where a new version of software is released to a small group of users first, allowing for monitoring and testing before it is rolled out to the entire user base.

Ques:- What is blue-green deployment? It’s a deployment strategy where two environments (blue and green) exist. One is live, and the other is updated and swapped in after verification.
Right Answer:

Blue-green deployment is a strategy that uses two identical environments, called blue and green. One environment (e.g., blue) is live and serving users, while the other (e.g., green) is updated with the new version of the application. After testing and verification, the traffic is switched from the blue environment to the green environment, making it live. This allows for minimal downtime and easy rollback if needed.

Ques:- How do you secure a CI/CD pipeline?
Right Answer:

To secure a CI/CD pipeline, implement the following measures:

1. **Access Control**: Use role-based access control (RBAC) to restrict permissions.
2. **Secrets Management**: Store sensitive information like API keys and passwords securely using secret management tools.
3. **Code Scanning**: Integrate static and dynamic code analysis tools to identify vulnerabilities.
4. **Dependency Management**: Regularly update and scan dependencies for known vulnerabilities.
5. **Environment Isolation**: Use separate environments for development, testing, and production.
6. **Audit Logs**: Enable logging and monitoring to track changes and access to the pipeline.
7. **Secure Communication**: Use HTTPS and secure protocols for data transmission.
8. **Automated Testing**: Implement automated tests to catch security issues early in the pipeline.
9. **Container Security**: If using containers, ensure images are scanned and use minimal base images.
10. **Regular Updates**: Keep CI/CD tools and infrastructure up to

AmbitionBox Logo

What makes Takluu valuable for interview preparation?

1 Lakh+
Companies
6 Lakh+
Interview Questions
50K+
Job Profiles
20K+
Users