Add office photos
Engaged Employer

Apmosys Technologies

3.5
based on 205 Reviews
Filter interviews by

30+ Zion Cloud Solutions Interview Questions and Answers

Updated 19 Dec 2024
Popular Designations

Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile

Ans.

Interview questions for Software Engineer position

  • Project explanation should include details on the project's purpose, scope, and technologies used

  • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

  • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity testing checks if the major functionalities are working fine

  • R...read more

Add your answer

Q2. If not then which technology can we use instead of this?

Ans.

It depends on the specific requirements and constraints of the project.

  • Consider the project's goals and objectives

  • Evaluate the available technologies and their capabilities

  • Assess the project's budget and timeline

  • Consult with stakeholders and experts in the field

  • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

Add your answer

Q3. Programs of method overloading and overriding , programs of for loop while loop and when we use them And so on

Ans.

Method overloading and overriding are used in object-oriented programming to create multiple methods with the same name but different parameters or implementations. For and while loops are used for iteration in programming.

  • Method overloading involves creating multiple methods in the same class with the same name but different parameters. Example: void print(int num) and void print(String str)

  • Method overriding involves creating a method in a subclass that has the same name, re...read more

Add your answer

Q4. Which technology are you using, is this latest?

Ans.

We are using a variety of technologies, including some of the latest ones.

  • We are using React for our front-end development.

  • We are also using Node.js for our back-end development.

  • We are using Docker for containerization.

  • We are using Kubernetes for orchestration.

  • We are using AWS for cloud hosting.

  • We are constantly evaluating new technologies to see if they can improve our development process.

Add your answer
Discover Zion Cloud Solutions interview dos and don'ts from real experiences

Q5. What is encapsulation

Ans.

Encapsulation is the process of hiding implementation details and exposing only necessary information.

  • Encapsulation is a fundamental concept in object-oriented programming.

  • It helps in achieving data abstraction and information hiding.

  • It allows for better control over the data and prevents unauthorized access.

  • Example: A class in Java can have private variables and public methods to access them.

  • Example: A capsule is a good analogy for encapsulation as it hides the medicine insi...read more

View 1 answer

Q6. Troubleshooting of Network

Ans.

Troubleshooting network involves identifying and resolving issues related to network connectivity and performance.

  • Start by identifying the symptoms of the problem

  • Check network cables and connections

  • Verify network settings and configurations

  • Use network diagnostic tools to identify and isolate the problem

  • Resolve the issue by applying appropriate fixes

  • Test the network to ensure the problem is resolved

Add your answer
Are these interview questions helpful?

Q7. What is the difference between string buffer and string builder?

Ans.

String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

  • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

  • String builder is not synchronized, providing better performance in single-threaded applications.

  • String builder is faster than string buffer due to lack of synchronization overhead.

  • Example: StringBuffer sb = new StringBuffer(); StringBuilder sb = new StringBuilder();

Add your answer

Q8. What are the different types of exception in java?

Ans.

There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

  • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

  • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

  • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

  • Examples of unchecked exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and...read more

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. Difference between Java and c++

Ans.

Java is a high-level programming language, while C++ is a general-purpose programming language.

  • Java is platform-independent, while C++ is platform-dependent.

  • Java uses automatic memory management (garbage collection), while C++ requires manual memory management.

  • Java has a simpler syntax and is easier to learn, while C++ has a more complex syntax.

  • Java is mainly used for developing web and enterprise applications, while C++ is commonly used for system-level programming and game ...read more

View 1 answer

Q10. What is polymorphysm

Ans.

Polymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.

  • Polymorphism is a fundamental concept in object-oriented programming.

  • It allows a single interface to be used for different types of objects.

  • Polymorphism is achieved through method overriding and method overloading.

  • Example: A shape class with different subclasses like circle, square, and triangle.

  • All these subclasses can be treated as shapes and...read more

View 1 answer

Q11. what is advantages and disadvantges manual testing

Ans.

Manual testing allows for human intuition and creativity but can be time-consuming and prone to human error.

  • Advantages of manual testing include human intuition and creativity in identifying issues, flexibility to adapt test cases on the fly, and cost-effectiveness for small projects.

  • Disadvantages of manual testing include time-consuming nature, potential for human error, difficulty in reproducing test cases, and lack of scalability for large projects.

  • Example: Manual testing ...read more

Add your answer

Q12. What are the 4 principles of oops?

Ans.

The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Inheritance allows a class to inherit properties and behavior from another class.

  • Encapsulation restricts access to certain components within a class, protecting the data.

  • Abstraction hides complex implementation details and only shows the necessary features.

  • Polymorphism allows objects to be treated as instances of their parent class.

Add your answer

Q13. Tuple in python

Ans.

A tuple is an immutable sequence of elements in Python.

  • Tuples are defined using parentheses ()

  • Tuples can contain elements of different data types

  • Elements in a tuple can be accessed using indexing

  • Tuples are immutable, meaning their elements cannot be modified once created

View 2 more answers

Q14. what is mannual software

Ans.

Manual software testing is the process of manually testing software for defects without the use of automation tools.

  • Manual testing involves testers executing test cases by hand to identify bugs and issues.

  • It is time-consuming and requires human intervention for each test step.

  • Manual testing is often used for exploratory testing, usability testing, and ad-hoc testing.

  • Examples of manual testing include regression testing, smoke testing, and user acceptance testing.

Add your answer

Q15. What are different tests

Ans.

Different tests in software testing include unit testing, integration testing, system testing, and acceptance testing.

  • Unit testing focuses on testing individual components or modules of the software.

  • Integration testing checks if different modules work together correctly.

  • System testing validates the entire system against the requirements.

  • Acceptance testing ensures that the software meets the user's expectations.

  • Other types of tests include regression testing, performance testi...read more

Add your answer

Q16. Why strings are immutable?

Ans.

Strings are immutable in order to ensure data integrity and security.

  • Immutable strings prevent accidental data modification, ensuring data integrity.

  • Immutable strings enhance security by preventing unauthorized access or tampering.

  • Immutable strings allow for more efficient memory management and optimization.

  • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

Add your answer

Q17. What is the uses of this project

Ans.

This project is used for managing and tracking software development tasks and projects.

  • Helps in organizing tasks and deadlines

  • Allows team collaboration and communication

  • Tracks progress and milestones

  • Generates reports for project analysis

Add your answer

Q18. Difference between JDK jvm and jre

Ans.

JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

  • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

  • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

  • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

  • JDK is used for developing Java applications, while JRE is used for running Java appl...read more

Add your answer

Q19. Difference between mysql and nosql and sql

Ans.

MySQL is a relational database management system, NoSQL is a non-relational database management system, and SQL is a query language used to interact with databases.

  • MySQL is a traditional relational database that uses structured query language (SQL) for querying and managing data.

  • NoSQL databases are non-relational and can handle unstructured data. They are more flexible and scalable than MySQL.

  • SQL is a language used to communicate with databases, including MySQL and NoSQL data...read more

Add your answer

Q20. Difference between sanity, smoke and regression testing

Ans.

Sanity testing is a quick test to check if the software is stable, smoke testing is a subset of sanity testing focusing on critical functionalities, and regression testing is retesting after code changes.

  • Sanity testing is a narrow and deep testing to ensure that the most critical functionalities work correctly after changes.

  • Smoke testing is a broad and shallow testing to ensure that the basic functionalities work before further testing.

  • Regression testing is retesting the soft...read more

Add your answer

Q21. what is software

Ans.

Software is a set of instructions that tell a computer how to perform specific tasks or functions.

  • Software is a collection of programs, data, and instructions that enable a computer to perform tasks.

  • It can be categorized into system software (e.g. operating systems) and application software (e.g. word processors).

  • Examples of software include Microsoft Windows, Adobe Photoshop, and Google Chrome.

Add your answer

Q22. Give examples on test cases

Ans.

Test cases are scenarios designed to validate the functionality of a software application.

  • Testing login functionality with valid credentials

  • Testing login functionality with invalid credentials

  • Testing password reset functionality

  • Testing search functionality with different input values

Add your answer

Q23. Explain linear search algorithm.

Ans.

Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

  • Iterate through each element in the list

  • Compare the current element with the target value

  • Return the index if a match is found, otherwise return -1

Add your answer

Q24. Operator overloading in Java?

Ans.

Operator overloading allows operators to be redefined for user-defined types in Java.

  • Operator overloading is not supported in Java as it can lead to ambiguity and confusion.

  • Java does not allow custom operators to be defined or existing operators to be overloaded.

  • Instead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.

Add your answer

Q25. Different types of https methods in api testing

Ans.

Different types of https methods in api testing include GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD.

  • GET - Used to retrieve data from the server

  • POST - Used to submit data to the server

  • PUT - Used to update existing data on the server

  • DELETE - Used to delete data on the server

  • PATCH - Used to partially update data on the server

  • OPTIONS - Used to check what HTTP methods are supported by the server

  • HEAD - Used to retrieve headers from the server without the body content

Add your answer

Q26. why you use microservices

Ans.

Microservices offer scalability, flexibility, and easier maintenance in software development.

  • Scalability: Microservices allow for individual components to be scaled independently, leading to better resource utilization.

  • Flexibility: Each microservice can be developed, deployed, and updated independently, allowing for faster innovation and adaptation to changing requirements.

  • Easier maintenance: With smaller, more focused services, it is easier to identify and fix issues, as wel...read more

Add your answer

Q27. Define java and it's features

Ans.

Java is a high-level, object-oriented programming language known for its platform independence and robust features.

  • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

  • It is object-oriented, allowing for modular and reusable code

  • Java is known for its robust standard library, which includes tools for networking, I/O, and more

  • It supports multithreading, allowing for concurrent execution of code

  • Java is statically typed, providing type s...read more

Add your answer

Q28. Object Oriented Programming Concepts - with example - difference

Ans.

Object Oriented Programming Concepts involve encapsulation, inheritance, and polymorphism.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: class Car with properties like make, model, and methods like start(), stop().

  • Inheritance: Allows a class to inherit properties and methods from another class. Example: class SUV extends Car, inheriting properties and methods from the Car class.

  • Polymorphism: Ability of objects to take on...read more

Add your answer

Q29. JavaScript difference between && and &&&

Ans.

&& is a logical AND operator in JavaScript, while &&& is not a valid operator.

  • && is used to combine two logical expressions and returns true only if both expressions are true

  • &&& is not a valid operator in JavaScript and will result in a syntax error

Add your answer

Q30. Write 10 html tag

Ans.

List of 10 HTML tags commonly used in web development

  • </p></li><li><p><body></p></li><li><p><div></p></li><li><p><p></p></li><li><p><a></p></li><li><p><img></p></li><li><p><ul></p></li><li><p><li></p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_30GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_30">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"></div></div></div><div class="css-175oi2r"><div class="" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/manual-tester/interview-questions" data-testid="asked_in_31" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Manual Tester Interview" target="_self">Manual Tester<!-- --> Interview</a></div></div></div><div data-testid="question_31"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q31. explain Defect life cycle</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_31"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in a software application.</p><p></p><ul><li><p>Defect identification: Defects are identified by testers during testing.</p></li><li><p>Defect reporting: Testers report defects in a defect tracking tool.</p></li><li><p>Defect fixing: Developers fix the reported defects.</p></li><li><p>Defect retesting: Testers retest the fixed defects to ensure they are resolved.</p></li><li><p>Defect closing: Once the defects are verified as fixed, they are closed.</p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_31GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_31">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"></div></div></div><div class="css-175oi2r"><div class="" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/software-testing-trainer/interview-questions" data-testid="asked_in_32" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Software Testing Trainer Interview" target="_self">Software Testing Trainer<!-- --> Interview</a></div></div></div><div data-testid="question_32"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q32. what is java ,oops concept</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_32"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>Java is a programming language that supports object-oriented programming (OOP) concepts.</p><p></p><ul><li><p>Java is a high-level programming language known for its platform independence.</p></li><li><p>OOP concepts in Java include classes, objects, inheritance, polymorphism, and encapsulation.</p></li><li><p>Classes are blueprints for objects, which are instances of classes.</p></li><li><p>Inheritance allows a class to inherit properties and behaviors from another class.</p></li><li><p>Polymorphism allows objects to be treated as instances of their parent cl...<span dir="auto" class="css-text-146c3p1 text-sm font-pn-600 cursor-pointer text-neutral-200 underline" data-testid='answer_read_more_32'>read more</span></p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_32GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_32">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 mt-3 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r flex-row"><button aria-label="Java" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-32-java" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">Java</div></button></div></div></div></div></div></div><div class="css-175oi2r"><div class="" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/manual-tester/interview-questions" data-testid="asked_in_33" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Manual Tester Interview" target="_self">Manual Tester<!-- --> Interview</a></div></div></div><div data-testid="question_33"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q33. Los process of loans</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_33"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>The process of loans involves application, approval, disbursement, and repayment.</p><p></p><ul><li><p>Application: Borrower submits loan application with required documents.</p></li><li><p>Approval: Lender reviews application, checks creditworthiness, and decides whether to approve or deny.</p></li><li><p>Disbursement: If approved, funds are disbursed to borrower.</p></li><li><p>Repayment: Borrower makes scheduled payments to repay the loan amount.</p></li><li><p>Examples: Personal loans, home loans, car loans.</p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_33GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_33">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"></div></div></div><div class="css-175oi2r"><div class="" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/software-testing-trainer/interview-questions" data-testid="asked_in_34" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Software Testing Trainer Interview" target="_self">Software Testing Trainer<!-- --> Interview</a></div></div></div><div data-testid="question_34"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q34. SDLC life cycle with example</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_34"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>SDLC stands for Software Development Life Cycle, a process used to design, develop, and test software.</p><p></p><ul><li><p>SDLC involves phases like planning, analysis, design, implementation, testing, and maintenance.</p></li><li><p>Example: In the planning phase, project requirements are gathered and feasibility is assessed.</p></li><li><p>Example: In the testing phase, software is tested for bugs and errors.</p></li><li><p>Each phase has specific deliverables and goals to be achieved before moving to the next phase.</p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_34GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_34">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 mt-3 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r flex-row"><button aria-label="Software Development" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-34-software-development" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">Software Development</div></button><button aria-label="SDLC" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-34-sdlc" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">SDLC</div></button></div></div></div></div></div></div><div class="css-175oi2r"><div class="" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/production-support-associate/interview-questions" data-testid="asked_in_35" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Production Support Associate Interview" target="_self">Production Support Associate<!-- --> Interview</a></div></div></div><div data-testid="question_35"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q35. Commands of linux</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_35"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>Linux commands are used to interact with the operating system and perform various tasks.</p><p></p><ul><li><p>ls - list directory contents</p></li><li><p>cd - change directory</p></li><li><p>pwd - print working directory</p></li><li><p>mkdir - make a new directory</p></li><li><p>rm - remove files or directories</p></li><li><p>cp - copy files or directories</p></li><li><p>mv - move files or directories</p></li><li><p>grep - search for patterns in files</p></li><li><p>chmod - change file permissions</p></li><li><p>sudo - execute a command as the superuser</p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_35GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_35">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="border-b border-misc-1 pb-4 mt-3 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r flex-row"><button aria-label="Operating Systems" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-35-operating-systems" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">Operating Systems</div></button><button aria-label="Linux" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-35-linux" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">Linux</div></button></div></div></div></div></div></div><div class="css-175oi2r"><div class="pb-4" itemscope="" itemProp="mainEntity" itemType="https://schema.org/Question"><div class="pt-4 font-pn-600 text-base leading-[22px] text-neutral"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r mb-1 flex-row items-center"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 text-neutral">Asked in </div><a href="/profiles/software-testing-trainer/interview-questions" data-testid="asked_in_36" class="text-xs font-pn-600 underline tracking-sm text-neutral-300 hover:text-grey" title="Software Testing Trainer Interview" target="_self">Software Testing Trainer<!-- --> Interview</a></div></div></div><div data-testid="question_36"><h2 itemProp="name" class="[&_pre]:bg-[#f5f5f5] text-left tracking-[0.4px] questionCard font-pn-600 text-base leading-[22px] text-neutral break-words overflow-scroll inline">Q36. c++ java difference</h2></div></div><div class="mt-1" itemscope="" itemProp="acceptedAnswer" itemType="https://schema.org/Answer" data-testid="answer_36"><div class="inline"><span class="font-pn-600 text-sm text-neutral"> Ans. </span><div class="[&>:first-child]:inline [&_ul]:list-disc [&_ol]:list-[auto] [&_ul]:!pl-[14px] [&_ul]:!leading-[20px] [&_ul]:my-[0.5rem] [&_li]:leading-[20px] [&_li]:mb-[0.5rem] [&_li]:ml-[0.75rem] ![&_ol]:!pl-[14px] [&_p]:leading-[20px] text-left tracking-[0.4px] font-pn-400 text-sm text-neutral break-words overflow-scroll inline qna-answer" itemProp="text"><p>C++ and Java are both popular programming languages, but they have key differences in syntax, memory management, and platform compatibility.</p><p></p><ul><li><p>C++ is a statically typed language, while Java is a dynamically typed language.</p></li><li><p>C++ allows for manual memory management with pointers, while Java has automatic garbage collection.</p></li><li><p>C++ is platform-dependent, while Java is platform-independent due to its bytecode compilation.</p></li><li><p>C++ supports multiple inheritance, while Java only supports single i...<span dir="auto" class="css-text-146c3p1 text-sm font-pn-600 cursor-pointer text-neutral-200 underline" data-testid='answer_read_more_36'>read more</span></p></li></ul></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline w-max mt-2" data-testid="add_answer_36GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="add_answer_36">Add your answer</div><div aria-label="right arrow" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class=" mt-3 flex items-center text-neutral text-xs font-pn-400 tracking-[0.4px]"><div class="css-175oi2r r-150rngu r-18u37iz r-16y2uox r-1wbh5a2 r-lltvgl r-buy8e9 r-agouwx r-2eszeu"><div class="css-175oi2r r-18u37iz"><div class="css-175oi2r flex-row"><button aria-label="Java" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-36-java" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">Java</div></button><button aria-label="C++" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[20px] px-3 border border-grey-200 bg-white min-h-[32px] mr-2 " data-testid="topic-chip-36-c-plus-plus" type="button"><div dir="auto" class="css-146c3p1 text-sm font-pn-400 text-primary-text">C++</div></button></div></div></div></div></div></div></div><div class="css-175oi2r"><div class="css-175oi2r p-5 rounded-[6px] bg-white mb-5 border-card-border bolder-[1px] border-solid shadow-main !mb-0 mt-2 md:mt-5 border border-misc-1"><a href="/overview/apmosys-technologies-overview?campaign=MoreAboutCompanyWidget" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row"><h2 href="/overview/apmosys-technologies-overview?campaign=MoreAboutCompanyWidget" dir="auto" aria-level="2" role="heading" class="css-146c3p1 mb-[13px] leading-[0.94] lg:mb-[6px] lg:leading-[1.33] flex items-center text-[16px] text-primary-text font-pn-700 hover:text-brand">More about working at <!-- -->Apmosys Technologies<!-- --> </h2><div class="css-175oi2r -rotate-90 mb-1.5 ml-1"><div aria-label="Back" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 web:-mt-0.5" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div></a><div class="css-175oi2r flex flex-row flex-wrap items-center pr-4 mt-2 mb-3 md:pl-0 md:pr-6"><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="GlobalLink"><a href="/overview/apmosys-technologies-overview/locations/mumbai-offices?campaign=MoreAboutCompanyWidget" dir="auto" aria-label="HQ - Mumbai, Maharashtra, India" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline">HQ - Mumbai, Maharashtra, India</a></div><div class="css-175oi2r bg-[#c4c4c4] h-2.5 w-0.5 mx-2 inline-block"></div></div><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="GlobalLink"><a href="/it-services-and-consulting-companies-in-india?campaign=MoreAboutCompanyWidget" dir="auto" aria-label="IT Services & Consulting" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline">IT Services & Consulting</a></div><div class="css-175oi2r bg-[#c4c4c4] h-2.5 w-0.5 mx-2 inline-block"></div></div><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="GlobalLink"><a href="/list-of-companies?indianEmployeeCounts=51-200&campaign=MoreAboutCompanyWidget" dir="auto" aria-label="51-200 Employees (India)" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline">51-200 Employees (India)</a></div><div class="css-175oi2r bg-[#c4c4c4] h-2.5 w-0.5 mx-2 inline-block"></div></div><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="GlobalLink"><a href="/logistics-companies-in-india?campaign=MoreAboutCompanyWidget" dir="auto" aria-label="Logistics" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline">Logistics</a></div></div></div></div></div><div class="css-175oi2r bg-white mt-2 p-5 rounded-md shadow-main border border-misc-1 md:mt-5"><div dir="auto" class="css-146c3p1 text-base text-misc-4 font-pn-700 leading-6 tracking-md">Contribute & help others!</div><div class="css-175oi2r flex-row mt-4 gap-2 border border-card-border p-3 rounded-lg md:gap-3 md:border-none"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] flex-1 md:border md:border-card-border md:p-3 md:rounded-lg md::w-full" data-testid="contributionCardSmall"><div aria-label="Write a review" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Write a review</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] flex-1 md:border md:border-card-border md:p-3 md:rounded-lg md::w-full" data-testid="contributionCardSmall"><div aria-label="Share interview" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Share interview</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] flex-1 md:border md:border-card-border md:p-3 md:rounded-lg md::w-full" data-testid="contributionCardSmall"><div aria-label="Contribute salary" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Contribute salary</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] flex-1 md:border md:border-card-border md:p-3 md:rounded-lg md::w-full" data-testid="contributionCardSmall"><div aria-label="Add office photos" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Add office photos</div></div></div></div></div><div class="css-175oi2r mt-2 md:mt-0 md:ml-5 md:max-w-[328px]"><div class="css-175oi2r z-1 !z-[initial]" id=""><div class="css-175oi2r flex "><div class="css-175oi2r"><div class="css-175oi2r py-4 md:py-5 px-4 md:pb-5 flex flex-col rounded-none md:rounded-md md:shadow-main mb-2 md:mb-5 md:border md:border-misc-1 bg-white" data-testid="topQuestionWidget"><h2 class="text-primary-text text-base tracking-lg font-pn-700 leading-6 cursor-pointer">Top HR Questions asked in Zion Cloud Solutions </h2><div class="css-175oi2r"><div class="css-175oi2r r-150rngu r-eqz5dr r-16y2uox r-1wbh5a2 r-11yh6sk r-1rnoaur r-agouwx"><div class="css-175oi2r"><div class="css-175oi2r"><div class="css-175oi2r mt-4"><a href="/interviews/zion-cloud-solutions-question/tell-me-about-yourself-dh1ZPatL" dir="auto" class="css-146c3p1 r-1loqt21" data-testid="question-1"><span class="css-1jxf684 text-primary-text text-sm tracking-sm font-pn-600">Q<!-- -->1<!-- -->.<!-- --> </span><span class="css-1jxf684 text-primary-text font-normal text-sm tracking-sm font-pn-400">Tell me about yourself</span></a><div class="css-175oi2r flex-row items-center pt-1"><a href="/interviews/zion-cloud-solutions-question/tell-me-about-yourself-dh1ZPatL" data-testid="viewOrAddAnswer-1" class="font-pn-600 text-sm text-brand mr-1 tracking-sm hover:text-brand-600" title="View Answer (1)" target="_self">View answer (1)</a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:14px;height:14px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div></div><div class="css-175oi2r h-[12px] border-b border-card-border pt-4"></div></div><div class="css-175oi2r"><div class="css-175oi2r mt-3"><a href="/interviews/zion-cloud-solutions-question/tell-me-if-you-have-any-past-experience-nJZCMhf3" dir="auto" class="css-146c3p1 r-1loqt21" data-testid="question-2"><span class="css-1jxf684 text-primary-text text-sm tracking-sm font-pn-600">Q<!-- -->2<!-- -->.<!-- --> </span><span class="css-1jxf684 text-primary-text font-normal text-sm tracking-sm font-pn-400">Tell me if you have any past experience</span></a><div class="css-175oi2r flex-row items-center pt-1"><a href="/interviews/zion-cloud-solutions-question/tell-me-if-you-have-any-past-experience-nJZCMhf3" data-testid="viewOrAddAnswer-2" class="font-pn-600 text-sm text-brand mr-1 tracking-sm hover:text-brand-600" title="Add Answer" target="_self">Add answer</a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:14px;height:14px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div></div><div class="css-175oi2r h-[12px] border-b border-card-border pt-4"></div></div><div class="css-175oi2r"><div class="css-175oi2r mt-3"><a href="/interviews/zion-cloud-solutions-question/what-were-your-role-in-previous-company-cJrWvDSp" dir="auto" class="css-146c3p1 r-1loqt21" data-testid="question-3"><span class="css-1jxf684 text-primary-text text-sm tracking-sm font-pn-600">Q<!-- -->3<!-- -->.<!-- --> </span><span class="css-1jxf684 text-primary-text font-normal text-sm tracking-sm font-pn-400">What were your role in previous company?</span></a><div class="css-175oi2r flex-row items-center pt-1"><a href="/interviews/zion-cloud-solutions-question/what-were-your-role-in-previous-company-cJrWvDSp" data-testid="viewOrAddAnswer-3" class="font-pn-600 text-sm text-brand mr-1 tracking-sm hover:text-brand-600" title="Add Answer" target="_self">Add answer</a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:14px;height:14px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div></div><div class="css-175oi2r h-[12px] border-b border-card-border pt-4"></div></div><div class="css-175oi2r"><div class="css-175oi2r mt-3"><a href="/interviews/zion-cloud-solutions-question/did-u-resign-by-ur-own-or-the-comapny-resign-you-OKwKMnvC" dir="auto" class="css-146c3p1 r-1loqt21" data-testid="question-4"><span class="css-1jxf684 text-primary-text text-sm tracking-sm font-pn-600">Q<!-- -->4<!-- -->.<!-- --> </span><span class="css-1jxf684 text-primary-text font-normal text-sm tracking-sm font-pn-400">Did u Resign by ur own or The comapny Resign you ??</span></a><div class="css-175oi2r flex-row items-center pt-1"><a href="/interviews/zion-cloud-solutions-question/did-u-resign-by-ur-own-or-the-comapny-resign-you-OKwKMnvC" data-testid="viewOrAddAnswer-4" class="font-pn-600 text-sm text-brand mr-1 tracking-sm hover:text-brand-600" title="View Answer (1)" target="_self">View answer (1)</a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:14px;height:14px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div></div><div class="css-175oi2r h-[12px] border-b border-card-border pt-4"></div></div><div class="css-175oi2r"><div class="css-175oi2r mt-3"><a href="/interviews/zion-cloud-solutions-question/why-you-want-to-join-us-instead-of-other-good-companies-OKw86pMg" dir="auto" class="css-146c3p1 r-1loqt21" data-testid="question-5"><span class="css-1jxf684 text-primary-text text-sm tracking-sm font-pn-600">Q<!-- -->5<!-- -->.<!-- --> </span><span class="css-1jxf684 text-primary-text font-normal text-sm tracking-sm font-pn-400">Why you want to join us instead of other good companies.</span></a><div class="css-175oi2r flex-row items-center pt-1"><a href="/interviews/zion-cloud-solutions-question/why-you-want-to-join-us-instead-of-other-good-companies-OKw86pMg" data-testid="viewOrAddAnswer-5" class="font-pn-600 text-sm text-brand mr-1 tracking-sm hover:text-brand-600" title="View Answer (1)" target="_self">View answer (1)</a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:14px;height:14px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div></div></div></div></div></div></div></div><div class="css-175oi2r mt-2 md:mt-5 md:order-4"><div class="css-175oi2r p-5 px-4 flex flex-col rounded-none md:rounded-md bg-white md:shadow-main md:border md:border-misc-1" data-testid="interviewProcessWidget"><h2 class="text-primary-text tracking-lg font-pn-700 text-base">Interview Process at Zion Cloud Solutions </h2><div dir="auto" class="css-146c3p1 tracking-lg font-pn-600 text-misc-2 text-sm">based on <!-- -->28<!-- --> interviews in the <!-- -->last 1 year</div><div class="css-175oi2r my-3"><div class="css-175oi2r"><div dir="auto" class="css-146c3p1 text-primary-text text-sm tracking-lg font-pn-700">Interview experience</div><div class="css-175oi2r flex items-center flex-row mt-2"><div class="css-175oi2r gap-1 flex flex-row items-center min-w-[45px] min-h-[20px] py-[2px] mr-2"><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#9acd32"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">4.0</span></div></div><div dir="auto" class="css-146c3p1 text-sm tracking-sm font-pn-400 text-neutral">Good</div></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline flex !justify-start" data-testid="GlobalLink"><div dir="auto" class="css-146c3p1 text-sm font-pn-600 text-brand">View more</div><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:18px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="css-175oi2r"></div></div></div><div class="css-175oi2r mt-2 md:mt-0 md:order-2"><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 rounded-none md:rounded-md bg-white py-5 px-4 md:shadow-main md:border md:border-misc-1 md:px-5" data-testid="interview_community_widget"><div class="css-175oi2r flex flex-row items-center" data-testid="interview_community_widget_interivew_tips"><div aria-label="interview tips and stories logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 border border-misc-1 rounded" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 ml-2 text-sm font-pn-400 text-neutral">Interview Tips & Stories</div></div><div dir="auto" class="css-146c3p1 font-pn-700 text-neutral text-base mt-4 " data-testid="interview_community_widget_sub_text">Ace your next interview with expert advice and inspiring stories</div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline hover:bg-brand-200 hover:border-[#495AC8] mt-2 w-max px-4 h-9 border rounded-[24px] border-brand mt-4 " data-testid="interview_community_widget_linkGlobalLink"><a href="/communities/interview-tips-and-stories" dir="auto" aria-label="Explore community" role="link" class="css-146c3p1 text-sm font-pn-600 text-brand" data-testid="interview_community_widget_link">Explore community</a></div></div></div></div><div class="css-175oi2r md:order-3 mt-2 md:mt-5"><div class="css-175oi2r p-5 rounded-[6px] bg-white mb-2 md:border md:border-misc-1 md:shadow-main md:mb-0 !mb-0" id="similar_companies_widget"><h2 dir="auto" aria-level="2" role="heading" class="css-146c3p1 text-[16px] text-primary-text font-pn-700 leading-normal mb-[4px]" data-testid="similar_companies_widget_title">Top Interview Questions from Similar Companies</h2><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="NTPC Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_ntpc"><a href="/interviews/ntpc-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" NTPC Interview Questions by employees" target="_self"> <!-- -->NTPC<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#9acd32"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">4.2</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->220<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="Lenskart Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_lenskart"><a href="/interviews/lenskart-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" Lenskart Interview Questions by employees" target="_self"> <!-- -->Lenskart<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#ffba01"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">3.2</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->161<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="Xoriant Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_xoriant"><a href="/interviews/xoriant-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" Xoriant Interview Questions by employees" target="_self"> <!-- -->Xoriant<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#9acd32"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">4.1</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->150<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="iEnergizer Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_ienergizer"><a href="/interviews/ienergizer-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" iEnergizer Interview Questions by employees" target="_self"> <!-- -->iEnergizer<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#377e01"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">4.7</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->143<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="Snapdeal Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_snapdeal"><a href="/interviews/snapdeal-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" Snapdeal Interview Questions by employees" target="_self"> <!-- -->Snapdeal<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#9acd32"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">3.9</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->135<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><div class="css-175oi2r"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73"><div class="css-175oi2r flex py-[9px] flex-row cursor-pointer"><div class="css-175oi2r rounded-[3px] border-[0.8px] object-contain border-img-bord border-solid"><div aria-label="Societe Generale Global Solution Centre Logo" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:48px;height:48px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-ehq7j7"></div></div></div><div class="css-175oi2r max-w-[90%] md:max-w-[100%] md:w-[calc(100%-48px)] pl-[14px]"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="similar_companies_widget_link_societe-generale"><a href="/interviews/societe-generale-interview-questions/top-questions" data-testid="" class="text-primary-text text-[14px] leading-[1.43] font-pn-700 line-clamp-2 text-ellipsis" title=" Societe Generale Global Solution Centre Interview Questions by employees" target="_self"> <!-- -->Societe Generale Global Solution Centre<!-- --> <!-- --> <!-- -->Interview Questions</a></div><div class="css-175oi2r flex items-center flex-row mt-[3px]"><div class="css-175oi2r gap-1 flex flex-row items-center "><svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="24" rx="4.8" fill="#9acd32"></rect><path d="M7.36875 19.5L8.5875 13.9539L4.5 10.2237L9.9 9.73026L12 4.5L14.1 9.73026L19.5 10.2237L15.4125 13.9539L16.6313 19.5L12 16.5592L7.36875 19.5Z" fill="white"></path></svg><div dir="auto" class="css-146c3p1 flex flex-row android:mb-[4px]"><span class="css-1jxf684 text-primary-text font-pn-700 text-sm">3.9</span></div></div><div dir="auto" class="css-146c3p1 text-[12px] leading-[1.33] font-pn-500 text-secondary-text" data-testid="data_count"> • <!-- -->128<!-- --> <!-- -->Interview Questions</div></div></div></div></div></div><a href="/list-of-companies" dir="auto" class="css-146c3p1 pt-2 leading-[1.14] inline-block text-[14px] font-pn-600 text-primary cursor-pointer r-1loqt21" id="view_all_similarCompanies" data-testid="similar_companies_widget_view_all">View all<!-- --> </a></div></div></div></div></div></div><div class="css-175oi2r md:max-w-[1024px]"><div class="css-175oi2r flex-row items-center md:mb-4 flex-wrap mx-4 md:max-w-[676px] flex-wrap mt-4 overflow-scroll md:mx-0" data-testid="breadCrumbs"><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="breadCrumbs_link_0GlobalLink"><a href="/" dir="auto" aria-label="Home" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline" data-testid="breadCrumbs_link_0">Home</a></div><div dir="auto" class="css-146c3p1 mx-1 font-pn-600 text-sm tracking-sm text-neutral-200" data-testid="breadCrumbs_link_0">></div></div><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="breadCrumbs_link_1GlobalLink"><a href="/interviews" dir="auto" aria-label="Interviews" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline" data-testid="breadCrumbs_link_1">Interviews</a></div><div dir="auto" class="css-146c3p1 mx-1 font-pn-600 text-sm tracking-sm text-neutral-200" data-testid="breadCrumbs_link_1">></div></div><div class="css-175oi2r flex-row items-center"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row shrink justify-center items-center no-underline" data-testid="breadCrumbs_link_2GlobalLink"><a href="/interviews/apmosys-technologies-interview-questions" dir="auto" aria-label="Apmosys Technologies Interview Questions And Answers" role="link" class="css-146c3p1 text-sm font-pn-600 text-neutral-200 underline" data-testid="breadCrumbs_link_2">Apmosys Technologies Interview Questions And Answers</a></div><div dir="auto" class="css-146c3p1 mx-1 font-pn-600 text-sm tracking-sm text-neutral-200" data-testid="breadCrumbs_link_2">></div></div><div class="css-175oi2r flex-row items-center"><div dir="auto" class="css-146c3p1 font-pn-600 text-sm tracking-sm text-neutral-200">Top Apmosys Technologies Interview Questions And Answers</div></div></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-1 web:px-4 h-12 rounded-[32px] flex-row items-center web:shadow-[0px_6px_16px_-2px_rgba(0,21,136,0.3)] web:bg-gradient-4 z-10 web:transition-[width] web:duration-500 web:whitespace-nowrap web:overflow-hidden fixed bottom-[72px] right-4 md:bottom-12 md:right-10 z-[9]" style="width:180px"><div class="css-175oi2r flex-row items-center"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 transition-all duration-500 mr-2" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-700 text-sm text-white whitespace-nowrap transition-opacity duration-500">Share an Interview</div></div></div></div></div><section data-hydration-on-demand="true"><div class="bg-[#f6f7ff]"><div class="px-[1rem] py-[1.25rem] mb-[0] md:mb-[2rem] md:py-[1.5rem] md:px-[1rem] flex justify-center items-center bg-[#eff1fe]"><div class="flex flex-col items-center md:items-start"><div class="text-center text-[16px] font-pn-700 w-[60%] md:text-[1.5rem] md:w-full">Stay ahead in your career. Get AmbitionBox app</div><div><div aria-label="play-icon" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mt-4 w-[108px] h-8 md:w-[149px] md:h-11" style="width:149px;height:44px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div></div><a class="ml-[2rem] w-[126px] h-[126px] bg-white rounded-[6px] shadow-default md:flex items-center justify-center hidden" href="https://play.google.com/store/apps/details?id=com.ambitionbox.android&utm_source=ambitionbox&utm_medium=desktop&utm_campaign=footer_app_promotion_banner_qr_HomeScreen" target="_blank" title="AmbitionBox App"><div aria-label="qr-code" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:96px;height:96px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></a></div><div class="px-4 gap-5 w-full md:max-w-[67rem] md:mx-auto md:px-0"><div class="flex"><div class=" min-w-[75%] mr-0 md:mr-[5%] md:border-r-[1px] md:border-r-[#e9e8f9] border-none"><div class="flex flex-col mb-0 md:flex-row md:mb-[2.5625rem] mt-[1.25rem]"><div class="w-auto mb-[1.25rem] md:w-[60%] h-full bg-[#0a0a0a] rounded-[0.5rem] text-center"><img alt="qr-code" loading="lazy" width="400" height="140" decoding="async" data-nimg="1" class="mt-[1.25rem] object-contain" style="color:transparent" src="https://static.ambitionbox.com/static/awards/awards_footer_badge.svg"/></div><div class="flex flex-col m-0 md:m-[5%] md:mt-0"><div class="text-[13px] font-pn-600 mb-4 md:text-[16px] md:mb-[10px] w-full">Helping over 1 Crore job seekers every month in choosing their right fit company</div><div class="flex flex-wrap w-full"><div class="min-w-[25%] md:hidden"><span class="font-pn-700">70 Lakh+</span><p class="font-pn-400 text-[14px]">Reviews</p></div><div class="min-w-[25%] md:hidden"><span class="font-pn-700">5 Lakh+</span><p class="font-pn-400 text-[14px]">Interviews</p></div><div class="min-w-[25%] md:hidden"><span class="font-pn-700">4 Crore+</span><p class="font-pn-400 text-[14px]">Salaries</p></div><div class="min-w-[25%] md:hidden"><span class="font-pn-700">1 Cr+</span><p class="font-pn-400 text-[14px]">Users/Month</p></div><div class="min-w-[25%] hidden md:block"><span class="font-pn-700">70 Lakh+</span><p class="font-pn-400 text-[14px]">Reviews</p></div><div class="min-w-[25%] hidden md:block"><span class="font-pn-700">5 Lakh+</span><p class="font-pn-400 text-[14px]">Interviews</p></div><div class="min-w-[25%] hidden md:block"><span class="font-pn-700">4 Crore+</span><p class="font-pn-400 text-[14px]">Salaries</p></div><div class="min-w-[25%] hidden md:block"><span class="font-pn-700">1 Crore+</span><p class="font-pn-400 text-[14px]">Users/Month</p></div></div></div></div></div><div class="pt-5 hidden md:block"><div class="mb-[10px] text-[16px] block font-pn-700">Contribute</div><button aria-label="Write a Review" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Write a Review</div></button><button aria-label="Add a salary" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add a salary</div></button><button aria-label="Share an interview" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Share an interview</div></button><button aria-label="Add Office Photos" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add Office Photos</div></button><button aria-label="Add Company Benefits" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add Company Benefits</div></button></div></div><div class="px-[17px] py-[15px] mb-6 align-left mx-[-1rem] mt-[1.5rem] md:hidden bg-[#e9e8f9]"><div class="mb-[8px] text-[14px] font-pn-600 block">Contribute to help millions</div><div class="flex flex-row flex-wrap gap-2"><button aria-label="Write a Review" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400 bg-[#e9e8f9]" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Write a Review</div></button><button aria-label="Add a salary" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400 bg-[#e9e8f9]" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add a salary</div></button><button aria-label="Share an interview" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400 bg-[#e9e8f9]" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Share an interview</div></button><button aria-label="Add Office Photos" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400 bg-[#e9e8f9]" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add Office Photos</div></button><button aria-label="Add Company Benefits" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] border border-brand bg-transparent h-9 px-4 mb-2 px-[14px] py-[7px] w-max font-pn-400 bg-[#e9e8f9]" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-brand text-sm" id="">Add Company Benefits</div></button></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 ml-16 rounded-[28px] border-[1px] border-solid border-[#E4E6EE] focus:border-primary bg-white flex-row h-9 py-2 hidden md:flex false !h-14 w-fit items-center !ml-0 py-[14px]"><div class="css-175oi2r pl-3 pr-4 flex flex-row gap-2 items-center pl-6"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:24px;height:24px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><input placeholder="Search Companies, Designation and Communities" autoCorrect="off" maxLength="150" autoCapitalize="sentences" autoComplete="on" dir="auto" rows="1" spellcheck="false" class="css-11aywtz r-6taxm2 text-[#9A9A9A] text-sm font-pn-400 outline-none focus:text-black w-[364px] " value=""/></div><div class="css-175oi2r w-[1px] bg-[#E9E9E9] h-full"></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 min-w-[176px] flex flex-row items-center justify-between pl-4 pr-6"><div dir="auto" class="css-146c3p1 text-sm font-pn-700 mr-5 text-neutral-600">Reviews</div><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.9134 6.10032C12.0347 6.22782 12.0277 6.42765 11.8978 6.54665L8.2196 9.91507C8.09594 10.0283 7.90406 10.0283 7.7804 9.91507L4.10224 6.54665C3.9723 6.42765 3.96528 6.22782 4.08656 6.10032C4.20784 5.97282 4.41149 5.96593 4.54144 6.08493L8 9.25225L11.4586 6.08493C11.5885 5.96593 11.7922 5.97282 11.9134 6.10032Z" fill="#1E223C"></path></svg></div></div><div class="flex flex-row items-start pt-[2.5rem] md:pb-[1rem]"><div class="flex items-start min-w-[80%] flex-wrap md:flex-nowrap w-full"><div class="flex flex-col mb-[1.5rem] md:mb-0 md:pr-[1.25rem] min-w-[50%] md:min-w-[16%]"><div class="inline-block"><div class="font-pn-600 mb-[0.375rem]">Users/Jobseekers</div><ul class="mt-[14px]"><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/list-of-companies" class="hover:text-primary">Companies</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/reviews" class="hover:text-primary">Reviews</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/salaries" class="hover:text-primary">Salaries</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/jobs" class="hover:text-primary">Jobs</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/interviews" class="hover:text-primary">Interviews</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/salaries/take-home-salary-calculator" class="hover:text-primary">Salary Calculator</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/colleges" class="hover:text-primary">Campus Placements</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/topics/aptitude/questions-and-answers" class="hover:text-primary">Practice Test</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/compare" class="hover:text-primary">Compare Companies</a></li></ul></div></div><div class=" flex flex-col order-3 mb-[1.5rem] md:mb-0 md:pr-[1.25rem] w-[50%] md:w-auto md:min-w-[18%] md:order-2"><div class="mb-[0.375rem] inline-block"><span class="font-pn-600">Employers</span><ul class="mt-[14px]"><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://employer.ambitionbox.com/?utm_source=ambitionbox&utm_medium=footer&utm_campaign=create-new-company/" target="_blank" class="hover:text-primary">Create a new company</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://employer.ambitionbox.com/company-page?utm_source=ambitionbox&utm_medium=footer&utm_campaign=update-company-infomation" target="_blank" class="hover:text-primary">Update company information</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://employer.ambitionbox.com/review-management?utm_source=ambitionbox&amp;utm_medium=footer&amp;utm_campaign=respond-to-reviews" target="_blank" class="hover:text-primary">Respond to reviews</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/employer/sendemail" target="_blank" class="hover:text-primary">Invite employees to review</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/alpha/company/photos/employer/AmbitionBox_Offering_For_Employers.pdf?campaign=ambitionbox_footer_ambitionBox_offering_for_employers" target="_blank" class="hover:text-primary">AmbitionBox Offering for Employers</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/alpha/company/photos/employer/AmbitionBox_Offering_For_Employers_Brochure.pdf?campaign=ambitionbox_footer_ambitionBox_offering_for_employers_brochure" target="_blank" class="hover:text-primary">AmbitionBox Employers Brochure</a></li></ul></div></div><div class="flex flex-col md:pr-[1.25rem] mb-[1.5rem] md:mb-0 w-[50%] md:w-auto order-2 md:order-3"><div class="css-175oi2r"><div class="mb-[0.375rem] inline-block"><span class="font-pn-600">AmbitionBox Awards</span><ul class="mt-[14px]"><li class="flex text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="/abeca-2025?campaign=ab_footer" target="" class="hover:text-primary">ABECA 2025</a><div aria-label="subIcon" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 ml-1" style="width:67px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></li><li class="flex text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="/abeca-2024?campaign=ab_footer" target="" class="hover:text-primary">ABECA 2024</a></li><li class="flex text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/awards/best-places-to-work-in-india-2022" target="" class="hover:text-primary">AmbitionBox Best Places to Work 2022</a></li><li class="flex text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/best-places-to-work-in-india-2021" target="" class="hover:text-primary">AmbitionBox Best Places to Work 2021</a></li><li class="flex text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/employer/awards2025/sendemail" target="" class="hover:text-primary">Invite employees to rate </a></li></ul></div></div></div><div class="flex flex-col md:pr-[1.25rem] min-w-[50%] mb-[1.5rem] md:mb-0 md:min-w-[15%] order-2 md:order-4"><div class="mb-[0.375rem] inline-block"><span class="font-pn-600">AmbitionBox</span><ul class="mt-[14px]"><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/about-us" target="_blank" class="hover:text-primary">About Us</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="mailto:support@ambitionbox.com?Subject=Query" target="_blank" class="hover:text-primary">Email Us</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/unboxed" target="_blank" class="hover:text-primary">Blog</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/faq" target="_blank" class="hover:text-primary">FAQ</a></li><li class="text-[12px] mb-[0.4375rem] font-pn-400 md:2 md:mb-2 md:text-[14px]"><a href="https://www.ambitionbox.com/credits" target="_blank" class="hover:text-primary">Credits</a></li></ul></div></div><div class="w-full order-5 mx-4 md:w-auto md:flex md:flex-col md:pr-[1.25rem] md:py-0 md:mx-0"><div class="mb-[0.375rem] flex py-[1.8125rem] border-t-[1px] border-t-[#e6e5f7] text-center md:inline-block md:mx-0 md:py-0 md:border-t-0 md:text-start"><span class="font-pn-600 hidden md:block">Terms & Policies</span><ul class="flex flex-wrap justify-center md:block md:mt-[14px]"><li class="font-pn-600 md:font-pn-400 mb-2 text-[14px] mr-[0.625rem] pr-[0.625rem] border-r-[1px] border-r-[#e4e6ee] md:text-[14px] md:border-r-0 md:mr-0 md:pr-0"><a href="https://ambitionbox.com/legal/privacy-policy" target="_blank" class="hover:text-primary">Privacy</a></li><li class="font-pn-600 md:font-pn-400 mb-2 text-[14px] mr-[0.625rem] pr-[0.625rem] border-r-[1px] border-r-[#e4e6ee] md:text-[14px] md:border-r-0 md:mr-0 md:pr-0"><a href="https://ambitionbox.com/legal/grievances" target="_blank" class="hover:text-primary">Grievances</a></li><li class="font-pn-600 md:font-pn-400 mb-2 text-[14px] mr-[0.625rem] pr-[0.625rem] border-r-[1px] border-r-[#e4e6ee] md:text-[14px] md:border-r-0 md:mr-0 md:pr-0"><a href="https://ambitionbox.com/legal/terms-of-use" target="_blank" class="hover:text-primary">Terms of Use</a></li><li class="font-pn-600 md:font-pn-400 mb-2 text-[14px] mr-[0.625rem] pr-[0.625rem] border-r-[1px] border-r-[#e4e6ee] md:text-[14px] md:border-r-0 md:mr-0 md:pr-0"><a href="https://www.ambitionbox.com/legal/summons-notice-form" target="_blank" class="hover:text-primary">Summons/Notices</a></li><li class="font-pn-600 md:font-pn-400 mb-2 text-[14px] mr-[0.625rem] pr-[0.625rem] border-r-[1px] border-r-[#e4e6ee] md:text-[14px] md:border-r-0 md:mr-0 md:pr-0"><a href="https://ambitionbox.com/legal/community-guidelines" target="_blank" class="hover:text-primary">Community Guidelines</a></li></ul></div></div></div></div><div class="py-[1.25rem] mx-4 flex justify-center items-center border-y-[#e9e8f9] border-y-[1px] md:hidden"><div class="flex flex-col items-center"><div class="text-center text-[16px] font-pn-700 mw-full">Get AmbitionBox app</div><div><div aria-label="play-icon" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mt-4 w-[108px] h-8 md:w-[149px] md:h-11" style="width:149px;height:44px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div></div></div><div class="border-t-0 pt-[20px] pb-[7px] flex flex-col-reverse items-center justify-center md:justify-between md:flex-row md:py-[1.5625rem] md:border-t-[#e9e8f9] md:border-t-[1px]"><p class="text-[12px] text-center mt-[33px] max-w-[64rem] px-[9px] pb-[29px] md:min-w-[60%] font-pn-400 md:mt-0 md:px-0 md:pb-0">Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.</p><div class="flex flex-col md:flex-row items-center"><span class="font-pn-700 text-[14px] mb-[0.5625rem] md:mb-0 leading-6 md:leading-normal">Follow us</span><ul class="flex ml-[14px] gap-3"><li><a href="https://bit.ly/3NiaWEQ" target="_blank" class="hover:text-primary"><img alt="Youtube" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" src="https://static.ambitionbox.com/static/icons/social/youtube-logo.svg"/></a></li><li><a href="https://bit.ly/3OGrqHZ" target="_blank" class="hover:text-primary"><img alt="Instagram" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" src="https://static.ambitionbox.com/static/icons/social/instagram-logo.svg"/></a></li><li><a href="https://bit.ly/3bw5Pnm" target="_blank" class="hover:text-primary"><img alt="LinkedIn" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" src="https://static.ambitionbox.com/static/icons/social/linkedin-logo.svg"/></a></li><li><a href="https://bit.ly/3A8gP4y" target="_blank" class="hover:text-primary"><img alt="Facebook" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" src="https://static.ambitionbox.com/static/icons/social/fb-logo.svg"/></a></li><li><a href="https://bit.ly/3No1Ne1" target="_blank" class="hover:text-primary"><img alt="Twitter" loading="lazy" width="24" height="24" decoding="async" data-nimg="1" style="color:transparent" src="https://static.ambitionbox.com/static/icons/social/twitter-logo.svg"/></a></li></ul></div></div></div></div></section></main><div class="css-175oi2r fixed transition-background duration-300 fade-in opacity-0"><div class="h-full absolute top-0 transform translate-x-[-100%] transition-none w-[260px] z-[2]"><div class="css-175oi2r r-150rngu r-eqz5dr r-16y2uox r-1wbh5a2 r-11yh6sk r-1rnoaur r-agouwx h-full bg-white w-[260px] r-2eszeu"><div class="css-175oi2r" style="padding-top:0px;padding-bottom:0px"><div class="css-175oi2r w-full pb-9 flex-1"><div class="css-175oi2r flex flex-row items-center justify-between p-4 pr-3 border-b border-grey-200"><div class="css-175oi2r flex-1 flex-row items-center justify-between"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row items-center" data-testid="userProfile"><div aria-label="Profile Image" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r ml-2 w-full"><div dir="auto" class="css-146c3p1 r-dnmrzs r-1udh08x r-1udbk01 r-3s2u2q r-1iln25a font-pn-700 text-sm tracking-lg text-primary-text w-full">Hello, Guest</div></div></div><button aria-label="Login" role="button" tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex-row justify-center items-center rounded-[24px] bg-brand h-8 px-4 web:ml-auto" id="" type="button"><div dir="auto" class="css-146c3p1 font-pn-700 text-white text-xs font-pn-600" id="">Login</div></button></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73" data-testid="awardBanner"><div aria-label="Awards 2025" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 !w-full" style="width:260px;height:80px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="css-175oi2r px-4"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-3" data-testid="home"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-primary">Home<!-- --> </a></div></div></div><div class="css-175oi2r py-1 border-b border-grey-200"><div class="css-175oi2r px-4 mb-1" data-testid="communitiesSection"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-12" data-testid="communities">COMMUNITIES</div><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 absolute bottom-0 right-0.5" style="width:40px;height:24px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div class="css-175oi2r flex my-1"></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2" data-testid="viewAllCommunities"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/communities" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">View all communities<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">AWARDS</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">ABECA 2025<!-- --> </a><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 ml-1" style="width:67px;height:18px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">ABECA 2024<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Best Places to work 2022<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Best Places to Work 2021<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">REVIEWS</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/reviews" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Browse company reviews<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">SALARIES</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/salaries" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Browse salaries<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/salaries/take-home-salary-calculator" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Salary calculator<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/are-you-paid-fairly" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Are you paid Fairly<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">INTERVIEWS</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/interviews" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Browse company interviews<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/colleges" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Campus placements<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">COMPANIES</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/list-of-companies" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Discover companies<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/compare" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Compare companies<!-- --> </a></div></div></div><div class="css-175oi2r px-4 mb-1"><div class="css-175oi2r py-2.5 flex flex-row overflow-hidden"><div class="css-175oi2r relative"><div dir="auto" class="css-146c3p1 text-xs font-pn-400 tracking-xs text-grey-600 mr-4">MISCELLANEOUS</div></div><div class="css-175oi2r h-1/2 w-full border-b border-grey-200"></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/jobs" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Jobs<!-- --> </a></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-2"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="https://employer.ambitionbox.com?utm_source=ambitionbox&utm_medium=drawer&utm_campaign=employer-login" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">For Employer<!-- --> </a></div></div></div></div><div class="css-175oi2r py-6 px-4 border-b border-grey-200"><div dir="auto" class="css-146c3p1 font-pn-600 text-xs tracking-xs text-grey-600 pb-3">Contribute to help millions!</div><div class="css-175oi2r flex flex-row flex-wrap items-center" style="row-gap:12px;column-gap:10px"><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] undefined" data-testid="contributionCardSmall"><div aria-label="Write a review" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Write a review</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] undefined" data-testid="contributionCardSmall"><div aria-label="Share interview" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Share interview</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] undefined" data-testid="contributionCardSmall"><div aria-label="Contribute salary" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Contribute salary</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] undefined" data-testid="contributionCardSmall"><div aria-label="Add office photos" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Add office photos</div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex items-center justify-center w-[68px] undefined" data-testid="contributionCardSmall"><div aria-label="Add office benefits" class="css-175oi2r r-1mlwlqe r-1udh08x r-417010 mb-1" style="width:36px;height:36px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div dir="auto" class="css-146c3p1 font-pn-600 text-xs text-center tracking-sm text-primary">Add office benefits</div></div></div></div><div tabindex="0" class="css-175oi2r r-1loqt21 r-1otgn73 flex flex-row items-center py-3 px-4"><div class="css-175oi2r r-1mlwlqe r-1udh08x r-417010" style="width:16px;height:16px"><div class="css-175oi2r r-1niwhzg r-vvn4in r-u6sd8q r-1p0dtai r-1pi2tsx r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-13qz1uu r-1wyyakw r-4gszlv"></div></div><div class="css-175oi2r flex flex-row items-center relative"><a href="/terms-and-policies" dir="auto" role="link" class="css-146c3p1 ml-4 text-sm font-pn-600 tracking-sm shrink-0 text-grey-700">Terms & Policies<!-- --> </a></div></div></div></div></div></div></div><div class="fixed bottom-[55px] md:bottom-0 max-w-[52px] right-0 z-[100]"><div class="flex flex-col items-end pr-0 mb-0 md:pr-10 md:mb-4 ease-in-out duration-500"></div></div></div><div class="css-175oi2r r-1awozwy r-1777fci r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-12vffkv" style="opacity:0;transform:translateY(0px)" data-testid="toastAnimatedContainer"></div><div id="loaderCommon" class="pageLoader-hidden"><div class="pageLoader-cont"><div class="pageLoader"></div></div></div></div><div class="css-175oi2r r-97e31f r-bv2aro r-hxflta r-10xqauy r-1p0dtai r-1d2f490 r-u8s1d r-zchlnj r-ipm5af r-12vffkv"><div class="css-175oi2r r-13awgt0 r-12vffkv"></div></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"urlName":"apmosys-technologies","metaData":{"title":"Top 30 Apmosys Technologies Interview Questions \u0026 Answers (Updated 2024) | AmbitionBox","description":"Practice Top 30 Apmosys Technologies Interview questions \u0026 answers reported by 10 real candidates on AmbitionBox.","canonicalUrl":"/interviews/apmosys-technologies-interview-questions/top-questions","logo":"apmosys-technologies","status":200,"redirectUrl":null,"companyId":319043,"updateOn":"19 Dec 2024","questionsCount":36},"photosData":{"data":{"Pagination":{"Total":0,"TotalPages":0,"CurrentPage":1},"Photos":[]}},"coverPhoto":{"type":null,"url":null,"fileName":null,"title":null,"description":null,"additionalData":null,"pagePublishedForJS":false},"filterParamsData":{},"page":"1","topQuestionsData":{"data":[{"question":"1 Project Explanation 2 SDLC \u0026amp; STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile","containsHtml":false,"questionUrl":"1-project-explanation2-sdlc-and-stlc3-differentiate-smoke-vs-sanity4-what-is-regression-testing5-bug-life-cycle6-scenarios-on-real-time-example7-questions-on-agile-i33LsHWn","answer":"\u003cp\u003eInterview questions for Software Engineer position\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eProject explanation should include details on the project's purpose, scope, and technologies used\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eSDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eSmoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity testing checks if the major functionalities are working fine\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eRegression testing is a type of testing that ensures that changes made to the software do not affect the existing functionalities\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eBug life cycle includes stages like New, Assigned, Open, Fixed, Verified, and Closed\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eReal-time scenarios can include testing a banking application, e-commerce website, or a social media platform\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAgile is a methodology that emphasizes collaboration, flexibility, and customer satisfaction\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[],"createdOn":""},{"question":"If not then which technology can we use instead of this?","containsHtml":false,"questionUrl":"if-not-then-which-technology-can-we-use-instead-of-this-ceXxSNev","answer":"\u003cp\u003eIt depends on the specific requirements and constraints of the project.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eConsider the project's goals and objectives\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eEvaluate the available technologies and their capabilities\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAssess the project's budget and timeline\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eConsult with stakeholders and experts in the field\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples: React vs Angular, MySQL vs MongoDB, Java vs Python\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[],"createdOn":""},{"question":"Programs of method overloading and overriding , programs of for loop while loop and when we use them And so on","containsHtml":false,"questionUrl":"programs-of-method-overloading-and-overriding-programs-of-for-loop-while-loop-and-when-we-use-them-and-so-on-6WS53Gea","answer":"\u003cp\u003eMethod overloading and overriding are used in object-oriented programming to create multiple methods with the same name but different parameters or implementations. For and while loops are used for iteration in programming.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eMethod overloading involves creating multiple methods in the same class with the same name but different parameters. Example: void print(int num) and void print(String str)\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eMethod overriding involves creating a method in a subclass that has the same name, return type, and parameters as a method in the superclass. Example: superclass method void display() overridden in subclass with void display()\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eFor loop is used when the number of iterations is known, while loop is used when the number of iterations is unknown or condition-based.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eFor example, for(int i=0; i\u003c5; i++) { System.out.println(i); } is a for loop that prints numbers from 0 to 4.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWhile loop example: int i=0; while(i\u003c5) { System.out.println(i); i++; } prints numbers from 0 to 4 using a while loop.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[],"createdOn":""},{"question":"Which technology are you using, is this latest?","containsHtml":false,"questionUrl":"which-technology-are-you-using-is-this-latest-ceXv0N81","answer":"\u003cp\u003eWe are using a variety of technologies, including some of the latest ones.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eWe are using React for our front-end development.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWe are also using Node.js for our back-end development.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWe are using Docker for containerization.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWe are using Kubernetes for orchestration.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWe are using AWS for cloud hosting.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eWe are constantly evaluating new technologies to see if they can improve our development process.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[],"createdOn":""},{"question":"What is encapsulation","containsHtml":false,"questionUrl":"what-is-encapsulation-dh2cqZPF","answer":"\u003cp\u003eEncapsulation is the process of hiding implementation details and exposing only necessary information.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eEncapsulation is a fundamental concept in object-oriented programming.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt helps in achieving data abstraction and information hiding.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt allows for better control over the data and prevents unauthorized access.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: A class in Java can have private variables and public methods to access them.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: A capsule is a good analogy for encapsulation as it hides the medicine inside and only exposes the necessary information on the label.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":2,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"2828","urlName":"encapsulation","name":"Encapsulation"}],"createdOn":""},{"question":"Troubleshooting of Network","containsHtml":false,"questionUrl":"troubleshooting-of-network-tISnqPIv","answer":"\u003cp\u003eTroubleshooting network involves identifying and resolving issues related to network connectivity and performance.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eStart by identifying the symptoms of the problem\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eCheck network cables and connections\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eVerify network settings and configurations\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eUse network diagnostic tools to identify and isolate the problem\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eResolve the issue by applying appropriate fixes\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTest the network to ensure the problem is resolved\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[{"id":"210","urlName":"networking","name":"Networking"}],"createdOn":""},{"question":"What is the difference between string buffer and string builder?","containsHtml":false,"questionUrl":"what-is-the-difference-between-string-buffer-and-string-builder-GnQBwOp4","answer":"\u003cp\u003eString buffer is synchronized and thread-safe, while string builder is not synchronized and faster.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eString buffer is synchronized, making it thread-safe for use in multi-threaded environments.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eString builder is not synchronized, providing better performance in single-threaded applications.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eString builder is faster than string buffer due to lack of synchronization overhead.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: StringBuffer sb = new StringBuffer(); StringBuilder sb = new StringBuilder();\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"322","urlName":"java","name":"Java"},{"id":"350","urlName":"data-structures","name":"Data Structures"}],"createdOn":"8 months ago"},{"question":"What are the different types of exception in java?","containsHtml":false,"questionUrl":"what-are-the-different-types-of-exception-in-java-GnQGqNrs","answer":"\u003cp\u003eThere are two types of exceptions in Java: checked exceptions and unchecked exceptions.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eChecked exceptions are checked at compile time and must be handled using try-catch or throws keyword.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eUnchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples of checked exceptions include IOException, SQLException, and ClassNotFoundException.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples of unchecked exceptions include NullPointerException, ArrayIndexOutOfBoundsException, and ArithmeticException.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"322","urlName":"java","name":"Java"}],"createdOn":"8 months ago"},{"question":"Difference between Java and c++","containsHtml":false,"questionUrl":"difference-between-java-and-c-plus-plus-dh2hkYR3","answer":"\u003cp\u003eJava is a high-level programming language, while C++ is a general-purpose programming language.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eJava is platform-independent, while C++ is platform-dependent.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava uses automatic memory management (garbage collection), while C++ requires manual memory management.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava has a simpler syntax and is easier to learn, while C++ has a more complex syntax.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava is mainly used for developing web and enterprise applications, while C++ is commonly used for system-level programming and game development.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":2,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"322","urlName":"java","name":"Java"},{"id":"2152","urlName":"c-plus-plus","name":"C++"}],"createdOn":""},{"question":"What is polymorphysm","containsHtml":false,"questionUrl":"what-is-polymorphysm-dh2eIZv9","answer":"\u003cp\u003ePolymorphism is the ability of an object to take on many forms. It allows objects of different classes to be treated as the same type.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003ePolymorphism is a fundamental concept in object-oriented programming.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt allows a single interface to be used for different types of objects.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePolymorphism is achieved through method overriding and method overloading.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: A shape class with different subclasses like circle, square, and triangle.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAll these subclasses can be treated as shapes and have their own implementation of the area method.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":2,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[],"createdOn":""},{"question":"what is advantages and disadvantges manual testing","containsHtml":false,"questionUrl":"what-is-advantages-and-disadvantges-manual-testing-0g9mYVyY","answer":"\u003cp\u003eManual testing allows for human intuition and creativity but can be time-consuming and prone to human error.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eAdvantages of manual testing include human intuition and creativity in identifying issues, flexibility to adapt test cases on the fly, and cost-effectiveness for small projects.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDisadvantages of manual testing include time-consuming nature, potential for human error, difficulty in reproducing test cases, and lack of scalability for large projects.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: Manual testing is beneficial for exploratory testing where testers can uncover unexpected issues that automated tests may miss.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: However, manual testing may not be suitable for regression testing where repetitive tests need to be executed efficiently.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"536","urlName":"software-testing","name":"Software Testing"},{"id":"542","urlName":"manual-testing","name":"Manual Testing"}],"createdOn":""},{"question":"What are the 4 principles of oops?","containsHtml":false,"questionUrl":"what-are-the-4-principles-of-oops-GnQ8UOJA","answer":"\u003cp\u003eThe 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eInheritance allows a class to inherit properties and behavior from another class.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eEncapsulation restricts access to certain components within a class, protecting the data.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAbstraction hides complex implementation details and only shows the necessary features.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePolymorphism allows objects to be treated as instances of their parent class.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[],"createdOn":"8 months ago"},{"question":"Tuple in python","containsHtml":false,"questionUrl":"tuple-in-python-dh2meXTr","answer":"\u003cp\u003eA tuple is an immutable sequence of elements in Python.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eTuples are defined using parentheses ()\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTuples can contain elements of different data types\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eElements in a tuple can be accessed using indexing\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTuples are immutable, meaning their elements cannot be modified once created\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":3,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"534","urlName":"python","name":"Python"},{"id":"350","urlName":"data-structures","name":"Data Structures"}],"createdOn":""},{"question":"what is mannual software","containsHtml":false,"questionUrl":"what-is-mannual-software-0g9k6VTe","answer":"\u003cp\u003eManual software testing is the process of manually testing software for defects without the use of automation tools.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eManual testing involves testers executing test cases by hand to identify bugs and issues.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt is time-consuming and requires human intervention for each test step.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eManual testing is often used for exploratory testing, usability testing, and ad-hoc testing.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples of manual testing include regression testing, smoke testing, and user acceptance testing.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[],"createdOn":""},{"question":"What are different tests","containsHtml":false,"questionUrl":"what-are-different-tests-NFea43Wy","answer":"\u003cp\u003eDifferent tests in software testing include unit testing, integration testing, system testing, and acceptance testing.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eUnit testing focuses on testing individual components or modules of the software.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIntegration testing checks if different modules work together correctly.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eSystem testing validates the entire system against the requirements.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAcceptance testing ensures that the software meets the user's expectations.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eOther types of tests include regression testing, performance testing, and security testing.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"536","urlName":"software-testing","name":"Software Testing"}],"createdOn":"3 months ago"},{"question":"Why strings are immutable?","containsHtml":false,"questionUrl":"why-strings-are-immutable-GnQDONLy","answer":"\u003cp\u003eStrings are immutable in order to ensure data integrity and security.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eImmutable strings prevent accidental data modification, ensuring data integrity.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eImmutable strings enhance security by preventing unauthorized access or tampering.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eImmutable strings allow for more efficient memory management and optimization.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[],"createdOn":"8 months ago"},{"question":"What is the uses of this project","containsHtml":false,"questionUrl":"what-is-the-uses-of-this-project-SeodWSR4","answer":"\u003cp\u003eThis project is used for managing and tracking software development tasks and projects.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eHelps in organizing tasks and deadlines\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eAllows team collaboration and communication\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTracks progress and milestones\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eGenerates reports for project analysis\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"1 week ago"},{"question":"Difference between JDK jvm and jre","containsHtml":false,"questionUrl":"difference-between-jdk-jvm-and-jre-GnQLkMtg","answer":"\u003cp\u003eJDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eJDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJDK is used for developing Java applications, while JRE is used for running Java applications.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: JDK includes javac compiler, while JRE only includes java command for running applications.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"322","urlName":"java","name":"Java"},{"id":"354","urlName":"software-development","name":"Software Development"}],"createdOn":"8 months ago"},{"question":"Difference between mysql and nosql and sql","containsHtml":false,"questionUrl":"difference-between-mysql-and-nosql-and-sql-Seob4TvA","answer":"\u003cp\u003eMySQL is a relational database management system, NoSQL is a non-relational database management system, and SQL is a query language used to interact with databases.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eMySQL is a traditional relational database that uses structured query language (SQL) for querying and managing data.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eNoSQL databases are non-relational and can handle unstructured data. They are more flexible and scalable than MySQL.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eSQL is a language used to communicate with databases, including MySQL and NoSQL databases.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples: MySQL, MongoDB (NoSQL), SQL queries\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"1 week ago"},{"question":"Difference between sanity, smoke and regression testing","containsHtml":false,"questionUrl":"difference-between-sanity-smoke-and-regression-testing-QKCcsQ7S","answer":"\u003cp\u003eSanity testing is a quick test to check if the software is stable, smoke testing is a subset of sanity testing focusing on critical functionalities, and regression testing is retesting after code changes.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eSanity testing is a narrow and deep testing to ensure that the most critical functionalities work correctly after changes.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eSmoke testing is a broad and shallow testing to ensure that the basic functionalities work before further testing.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eRegression testing is retesting the software after changes to ensure that the existing functionalities are not affected.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: Sanity testing would focus on critical features like login functionality, smoke testing would check if the software launches without errors, and regression testing would retest all functionalities after a code change.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Manual Tester","jobProfileUrl":"manual-tester","topics":[{"id":"548","urlName":"smoke-testing","name":"Smoke Testing"},{"id":"550","urlName":"regression-testing","name":"Regression Testing"},{"id":"536","urlName":"software-testing","name":"Software Testing"}],"createdOn":"1 month ago"},{"question":"what is software","containsHtml":false,"questionUrl":"what-is-software-0g9p0UUS","answer":"\u003cp\u003eSoftware is a set of instructions that tell a computer how to perform specific tasks or functions.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eSoftware is a collection of programs, data, and instructions that enable a computer to perform tasks.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt can be categorized into system software (e.g. operating systems) and application software (e.g. word processors).\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples of software include Microsoft Windows, Adobe Photoshop, and Google Chrome.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[],"createdOn":""},{"question":"Give examples on test cases","containsHtml":false,"questionUrl":"give-examples-on-test-cases-NFecW32s","answer":"\u003cp\u003eTest cases are scenarios designed to validate the functionality of a software application.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eTesting login functionality with valid credentials\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTesting login functionality with invalid credentials\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTesting password reset functionality\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eTesting search functionality with different input values\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[{"id":"536","urlName":"software-testing","name":"Software Testing"}],"createdOn":"3 months ago"},{"question":"Explain linear search algorithm.","containsHtml":false,"questionUrl":"explain-linear-search-algorithm-GnQIIMNm","answer":"\u003cp\u003eLinear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eIterate through each element in the list\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eCompare the current element with the target value\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eReturn the index if a match is found, otherwise return -1\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"3422","urlName":"algorithms","name":"Algorithms"}],"createdOn":"8 months ago"},{"question":"Operator overloading in Java?","containsHtml":false,"questionUrl":"operator-overloading-in-java-8gdlxTSa","answer":"\u003cp\u003eOperator overloading allows operators to be redefined for user-defined types in Java.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eOperator overloading is not supported in Java as it can lead to ambiguity and confusion.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava does not allow custom operators to be defined or existing operators to be overloaded.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eInstead of operator overloading, Java provides method overloading where methods with the same name but different parameters can be defined.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"322","urlName":"java","name":"Java"}],"createdOn":""},{"question":"Different types of https methods in api testing","containsHtml":false,"questionUrl":"different-types-of-https-methods-in-api-testing-QKCeKQdM","answer":"\u003cp\u003eDifferent types of https methods in api testing include GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eGET - Used to retrieve data from the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePOST - Used to submit data to the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePUT - Used to update existing data on the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDELETE - Used to delete data on the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePATCH - Used to partially update data on the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eOPTIONS - Used to check what HTTP methods are supported by the server\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eHEAD - Used to retrieve headers from the server without the body content\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Manual Tester","jobProfileUrl":"manual-tester","topics":[{"id":"536","urlName":"software-testing","name":"Software Testing"},{"id":"6142","urlName":"api-testing","name":"API Testing"}],"createdOn":"1 month ago"},{"question":"why you use microservices","containsHtml":false,"questionUrl":"why-you-use-microservices-SeoiQRTs","answer":"\u003cp\u003eMicroservices offer scalability, flexibility, and easier maintenance in software development.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eScalability: Microservices allow for individual components to be scaled independently, leading to better resource utilization.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eFlexibility: Each microservice can be developed, deployed, and updated independently, allowing for faster innovation and adaptation to changing requirements.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eEasier maintenance: With smaller, more focused services, it is easier to identify and fix issues, as well as add new features without affecting the entire system.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: Netflix uses microservices to handle different functionalities like user authentication, recommendation engine, and video streaming, allowing them to scale and update each component as needed.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"1 week ago"},{"question":"Define java and it's features","containsHtml":false,"questionUrl":"define-java-and-its-features-8gdnPTxU","answer":"\u003cp\u003eJava is a high-level, object-oriented programming language known for its platform independence and robust features.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eJava is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt is object-oriented, allowing for modular and reusable code\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava is known for its robust standard library, which includes tools for networking, I/O, and more\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eIt supports multithreading, allowing for concurrent execution of code\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eJava is statically typed, providing type safety at compile time\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer","jobProfileUrl":"software-developer","topics":[{"id":"322","urlName":"java","name":"Java"}],"createdOn":""},{"question":"Object Oriented Programming Concepts - with example - difference","containsHtml":false,"questionUrl":"object-oriented-programming-concepts-with-example-difference-JKg91qYe","answer":"\u003cp\u003eObject Oriented Programming Concepts involve encapsulation, inheritance, and polymorphism.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eEncapsulation: Bundling data and methods that operate on the data into a single unit (class). Example: class Car with properties like make, model, and methods like start(), stop().\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eInheritance: Allows a class to inherit properties and methods from another class. Example: class SUV extends Car, inheriting properties and methods from the Car class.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePolymorphism: Ability of objects to take on multiple forms. Example: a method like drive() can behave differently for different types of vehicles like Car, SUV, Truck.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Junior Developer","jobProfileUrl":"junior-developer","topics":[],"createdOn":"6 months ago"},{"question":"JavaScript difference between \u0026amp;\u0026amp; and \u0026amp;\u0026amp;\u0026amp;","containsHtml":false,"questionUrl":"javascript-difference-between-and-and-and-and-and-and-IJF1fOGE","answer":"\u003cp\u003e\u0026\u0026 is a logical AND operator in JavaScript, while \u0026\u0026\u0026 is not a valid operator.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003e\u0026\u0026 is used to combine two logical expressions and returns true only if both expressions are true\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026\u0026\u0026 is not a valid operator in JavaScript and will result in a syntax error\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Engineer Trainee","jobProfileUrl":"software-engineer-trainee","topics":[{"id":"1224","urlName":"javascript","name":"JavaScript"}],"createdOn":"6 months ago"},{"question":"Write 10 html tag","containsHtml":false,"questionUrl":"write-10-html-tag-SeogySxy","answer":"\u003cp\u003eList of 10 HTML tags commonly used in web development\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003e\u0026lt;html\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;head\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;title\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;body\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;div\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;p\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;a\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;img\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;ul\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003e\u0026lt;li\u0026gt;\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"1 week ago"},{"question":"explain Defect life cycle","containsHtml":false,"questionUrl":"explain-defect-life-cycle-QKBZQRbY","answer":"\u003cp\u003eDefect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in a software application.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eDefect identification: Defects are identified by testers during testing.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDefect reporting: Testers report defects in a defect tracking tool.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDefect fixing: Developers fix the reported defects.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDefect retesting: Testers retest the fixed defects to ensure they are resolved.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDefect closing: Once the defects are verified as fixed, they are closed.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Manual Tester","jobProfileUrl":"manual-tester","topics":[],"createdOn":"1 month ago"},{"question":"what is java ,oops concept","containsHtml":false,"questionUrl":"what-is-java-oops-concept-O54piSX2","answer":"\u003cp\u003eJava is a programming language that supports object-oriented programming (OOP) concepts.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eJava is a high-level programming language known for its platform independence.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eOOP concepts in Java include classes, objects, inheritance, polymorphism, and encapsulation.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eClasses are blueprints for objects, which are instances of classes.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eInheritance allows a class to inherit properties and behaviors from another class.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ePolymorphism allows objects to be treated as instances of their parent class.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eEncapsulation hides the internal state of an object and only exposes necessary methods to interact with it.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Testing Trainer","jobProfileUrl":"software-testing-trainer","topics":[{"id":"322","urlName":"java","name":"Java"}],"createdOn":"3 months ago"},{"question":"Los process of loans","containsHtml":false,"questionUrl":"los-process-of-loans-QKBXyR6e","answer":"\u003cp\u003eThe process of loans involves application, approval, disbursement, and repayment.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eApplication: Borrower submits loan application with required documents.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eApproval: Lender reviews application, checks creditworthiness, and decides whether to approve or deny.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eDisbursement: If approved, funds are disbursed to borrower.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eRepayment: Borrower makes scheduled payments to repay the loan amount.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExamples: Personal loans, home loans, car loans.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Manual Tester","jobProfileUrl":"manual-tester","topics":[],"createdOn":"1 month ago"},{"question":"SDLC life cycle with example","containsHtml":false,"questionUrl":"sdlc-life-cycle-with-example-O54ucRZq","answer":"\u003cp\u003eSDLC stands for Software Development Life Cycle, a process used to design, develop, and test software.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eSDLC involves phases like planning, analysis, design, implementation, testing, and maintenance.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: In the planning phase, project requirements are gathered and feasibility is assessed.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eExample: In the testing phase, software is tested for bugs and errors.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eEach phase has specific deliverables and goals to be achieved before moving to the next phase.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Testing Trainer","jobProfileUrl":"software-testing-trainer","topics":[{"id":"354","urlName":"software-development","name":"Software Development"},{"id":"5694","urlName":"sdlc","name":"SDLC"}],"createdOn":"3 months ago"},{"question":"Commands of linux","containsHtml":false,"questionUrl":"commands-of-linux-J8Yh9Z9W","answer":"\u003cp\u003eLinux commands are used to interact with the operating system and perform various tasks.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003els - list directory contents\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ecd - change directory\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003epwd - print working directory\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003emkdir - make a new directory\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003erm - remove files or directories\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003ecp - copy files or directories\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003emv - move files or directories\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003egrep - search for patterns in files\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003echmod - change file permissions\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003esudo - execute a command as the superuser\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Production Support Associate","jobProfileUrl":"production-support-associate","topics":[{"id":"222","urlName":"operating-systems","name":"Operating Systems"},{"id":"2222","urlName":"linux","name":"Linux"}],"createdOn":"6 months ago"},{"question":"c++ java difference","containsHtml":false,"questionUrl":"c-plus-plus-java-difference-O54rAS3w","answer":"\u003cp\u003eC++ and Java are both popular programming languages, but they have key differences in syntax, memory management, and platform compatibility.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eC++ is a statically typed language, while Java is a dynamically typed language.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eC++ allows for manual memory management with pointers, while Java has automatic garbage collection.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eC++ is platform-dependent, while Java is platform-independent due to its bytecode compilation.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eC++ supports multiple inheritance, while Java only supports single inheritance.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eC++ uses header files for declarations, while Java uses packages and import statements.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Testing Trainer","jobProfileUrl":"software-testing-trainer","topics":[{"id":"322","urlName":"java","name":"Java"},{"id":"2152","urlName":"c-plus-plus","name":"C++"}],"createdOn":"3 months ago"}],"meta":{"count":36,"currentPage":1,"totalPages":1,"countReadable":"30+"}},"companyAwardsData":[],"companyHeaderData":{"companyName":"Apmosys Technologies","reviewsCount":205,"isClosed":0,"isEngagedEmployer":true,"isAssociationEnabled":false,"followersCount":379,"hasOfficeLocations":true,"highQualityLogo":"https://static.ambitionbox.com/assets/v2/images/rs:fit:200:200:false:false/bG9jYWw6Ly8vbG9nb3Mvb3JpZ2luYWxzL2FwbW9zeXMtdGVjaG5vbG9naWVzLmpwZw.webp","companyLogo":"apmosys-technologies","infoTags":[{"name":"HQ - Mumbai, Maharashtra, India","urlName":"mumbai","type":"headquarters"},{"id":155,"name":"IT Services \u0026 Consulting","urlName":"it-services-and-consulting","tags":[]},{"name":"51-200 Employees (India)","urlName":"51-200","type":"indianEmployeeCount"},{"companyId":319043,"name":"Logistics","urlName":"logistics"}],"parentCompanyDetails":null,"photosCount":0,"urlName":"apmosys-technologies","rating":3.49,"bannerColor":"#4C3435","relationsCount":0,"companyId":319043,"isPremium":false,"industriesUrl":"logistics,it-services-and-consulting","info":[{"type":"TotalEmployees","label":"201-500","url":"201-500"},{"type":"TotalEmployeesIndia","label":"51-200","url":"51-200"}],"industryNaukriIds":[109],"coverPhoto":{"type":null,"url":null,"fileName":null,"title":null,"description":null,"additionalData":null,"pagePublishedForJS":false}},"companyStatsData":[{"name":"About","title":"Apmosys Technologies Overview","path":"/overview/apmosys-technologies-overview","screen":"CompanyOverview","isClickable":false,"childOptions":[{"name":"Company Overview","title":"Apmosys Technologies Overview","path":"/overview/apmosys-technologies-overview","screen":"CompanyOverview","iconName":"overview","isVisible":true},{"name":"Associated Companies","title":"Apmosys Technologies Associated Companies","path":"/overview/apmosys-technologies-overview/organisation","screen":"CompanyAssociations","iconName":"hierarchy","isVisible":0},{"name":"Company Locations","title":"Apmosys Technologies Offices","screen":"CompanyLocations","path":"/overview/apmosys-technologies-overview/locations","iconName":"location","isVisible":true}],"iconName":"about","noFilters":true},{"name":"Reviews","title":"Apmosys Technologies Reviews","path":"/reviews/apmosys-technologies-reviews","screen":"CompanyReviews","count":205},{"name":"Salaries","title":"Apmosys Technologies Salaries","path":"/salaries/apmosys-technologies-salaries","screen":"CompanySalaries","count":2072},{"name":"Interviews","title":"Apmosys Technologies Interview Questions","path":"/interviews/apmosys-technologies-interview-questions","screen":"CompanyInterviews","count":47},{"name":"Jobs","title":"Apmosys Technologies Jobs","path":"/jobs/apmosys-technologies-jobs","screen":"CompanyJobs","count":3},{"name":"Benefits","title":"Apmosys Technologies Benefits","path":"/benefits/apmosys-technologies-benefits","childPath":"/benefits/apmosys-technologies/","screen":"CompanyBenefits","count":14},{"name":"Photos","title":"Apmosys Technologies Photos","path":"/photos/apmosys-technologies-photos","screen":"CompanyPhotos","noFilters":true,"count":0},{"name":"Posts","title":"Apmosys Technologies Discussions","path":"/discussions/apmosys-technologies-discussions","screen":"CompanyPosts","count":0}],"interviewInsightsData":{"Meta":{"InterviewCount":28,"Interval":"last 1 year"},"Duration":[{"Label":"Less than 2 weeks","Value":79},{"Label":"2-4 weeks","Value":17},{"Label":"More than 8 weeks","Value":4}],"Difficulty":[{"Label":"Easy","Value":13},{"Label":"Moderate","Value":74},{"Label":"Hard","Value":13}],"InterviewExperience":4},"similarCompaniesData":{"title":"Top Interview Questions from Similar Companies","designation":null,"data":[{"companyId":235,"shortName":"NTPC","rating":4.21,"logo":"ntpc","urlName":"ntpc","questionsCount":220},{"companyId":200931,"shortName":"Lenskart","rating":3.21,"logo":"lenskart-200931","urlName":"lenskart","questionsCount":161},{"companyId":650,"shortName":"Xoriant","rating":4.08,"logo":"xoriant","urlName":"xoriant","questionsCount":150},{"companyId":375638,"shortName":"iEnergizer","rating":4.7,"logo":"ienergizer","urlName":"ienergizer","questionsCount":143},{"companyId":29,"shortName":"Snapdeal","rating":3.89,"logo":"snapdeal-29","urlName":"snapdeal","questionsCount":135},{"companyId":300141,"shortName":"Societe Generale Global Solution Centre","rating":3.86,"logo":"societe-generale-global-solution-centre","urlName":"societe-generale","questionsCount":128}]},"breadCrumbsData":[{"title":"Home","url":""},{"title":"Interviews","url":"/interviews"},{"title":"Apmosys Technologies Interview Questions And Answers","url":"/interviews/apmosys-technologies-interview-questions"},{"title":"Top Apmosys Technologies Interview Questions And Answers","url":"/interviews/apmosys-technologies-interview-questions/top-questions"}],"topHRQuestionsData":[{"question":"Tell me about yourself","containsHtml":false,"questionUrl":"tell-me-about-yourself-dh1ZPatL","answer":null,"answersCount":1,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[],"createdOn":""},{"question":"Tell me if you have any past experience","containsHtml":false,"questionUrl":"tell-me-if-you-have-any-past-experience-nJZCMhf3","answer":null,"answersCount":0,"jobProfile":"Software Engineer","jobProfileUrl":"software-engineer","topics":[],"createdOn":""},{"question":"What were your role in previous company?","containsHtml":false,"questionUrl":"what-were-your-role-in-previous-company-cJrWvDSp","answer":null,"answersCount":0,"jobProfile":"Software Tester","jobProfileUrl":"software-tester","topics":[],"createdOn":""},{"question":"Did u Resign by ur own or The comapny Resign you ??","containsHtml":false,"questionUrl":"did-u-resign-by-ur-own-or-the-comapny-resign-you-OKwKMnvC","answer":"\u003cp\u003eI resigned from my previous position voluntarily.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eI resigned from my previous job on my own accord.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eI made the decision to leave the company.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eI chose to resign from my previous role.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eI voluntarily left my previous position.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"2 months ago"},{"question":"Why you want to join us instead of other good companies.","containsHtml":false,"questionUrl":"why-you-want-to-join-us-instead-of-other-good-companies-OKw86pMg","answer":"\u003cp\u003eI am drawn to your company's innovative projects and collaborative work culture.\u003c/p\u003e\u003cp\u003e\u003c/p\u003e\u003cul\u003e\u003cli\u003e\u003cp\u003eI am impressed by the cutting-edge technologies your company is using.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eI value the emphasis your company places on teamwork and professional development.\u003c/p\u003e\u003c/li\u003e\u003cli\u003e\u003cp\u003eI believe my skills and passion align well with the opportunities at your company.\u003c/p\u003e\u003c/li\u003e\u003c/ul\u003e","answersCount":1,"jobProfile":"Software Developer Trainee","jobProfileUrl":"software-developer-trainee","topics":[],"createdOn":"2 months ago"}],"isSsrMobile":false,"footerData":{"totalReviews":7211328,"totalInterviews":540250,"totalSalaries":41901835,"totalCompanies":1080725,"companiesWithInterviews":102445,"companiesWithReviews":676308,"companiesWithSalaries":854712,"totalEmployers":20645},"popularDesignations":[{"count":9,"id":"139","urlName":"software-tester","name":"Software Tester"},{"count":8,"id":"4","urlName":"software-developer","name":"Software Developer"}],"jsonld":{"@context":"https://schema.org/","@type":"Organization","aggregateRating":{"@type":"AggregateRating","itemReviewed":"Apmosys Technologies","ratingValue":"3.5","ratingCount":205}}},"__N_SSP":true},"page":"/topInterviewQuestions/[companyUrl]/[[...params]]","query":{"campaign":"topQuestionWidget","companyUrl":"apmosys-technologies"},"buildId":"i449KS1YJYFgNHDp2etXJ","assetPrefix":"https://static.ambitionbox.com","isFallback":false,"dynamicIds":[83842,28854,27388,1311],"gssp":true,"scriptLoader":[]}</script></body></html>