Skip to main content

Assignment-1

Assignment-1

1. What is the use of Six Sigma certificate?

Ans:-  A Six Sigma certificate is useful for learning how to improve quality and reduce mistakes in any process—whether in software, manufacturing, business, or services.

In simple words, Six Sigma teaches you how to do work in a better, faster, and error-free way.

  • Main Uses of a Six Sigma Certificate
  1. Helps in Better Career Opportunities
  2. Improves Problem-Solving Skills
  3. Reduces Errors and Waste
  4. Useful in Many Fields
  • Six Sigma Example: A company uses Six Sigma to reduce defects and improve efficiency in its operations.
2. What is the use of ISO certificate?

Ans:- An ISO certificate shows that a company or organization follows international standards for quality, safety, and efficiency in its work.

In simple words, it tells customers, This company works in a proper, safe, and trusted way.

  • Main Uses of an ISO Certificate
  1. Improves Quality of Products & Services
  2. Builds Customer Trust
  3. Helps in Getting More Business
  4. Reduces Errors and Costs
  • ISO Example: A company follows ISO 9001 standards to maintain quality in software development.
3. What is CMM level 5?

Ans:- CMM Level 5 is the highest level in the Capability Maturity Model (CMM).

It means a software company is fully mature and continuously improving its work processes.

In simple words, The company not only follows good processes but also keeps improving them using data and innovation.

  • CMM has 5 levels
  1. Level 1 – Initial: Work is unplanned and chaotic
  2. Level 2 – Repeatable: Past success can be repeated

  3. Level 3 – Defined: Standard processes are followed

  4. Level 4 – Managed: Processes are measured and controlled

  5. Level 5 – Optimizing 

  • Example: CMM Level 5 is the Optimizing level where organizations continuously improve their software processes using feedback, data analysis, and innovation.

4. What is the use of software testing?

Ans:- The use of software testing is to check whether a software application works correctly before users use it.

In simple words, Software testing helps find mistakes and fix them early so the software runs smoothly and safely.

  • Uses of Software Testing
  1. Finds Errors and Bugs
  2. Ensures Correct Functioning
  3. Reduces Future Cost
  4.  fixing them after release.
  • Example: Software testing is used to identify defects, ensure correct functioning, improve quality, and deliver reliable software to users.
5. How many types of software applications are there?

Ans:- 
  • Types of Software Applications:
  1. System-Based Applications:- Operating System (Windows, Linux, macOS)
  2. Mobile-Based Applications:-WhatsApp, Instagram, Google Pay, Zomato
  3. Programming-Based Applications:- vs-code, turbo C++, Django etc.
6. Names of any five Browsers other than chrome?

Ans:- Mozilla Firefox, Microsoft Edge, Safari, Brave, Opera.

7. Names of any ten search engine?

Ans:- Yandex-Russia, Baidu-China, Duckduckgo-US, Google, Microsoft-Bing, Yelp, ask.com, Brave, etc. 

8.  Why you need browser if you have search engine ?

Ans:- A browser is an application that lets you access and view websites.
A search engine is a website that helps you find information on the internet.
You cannot open a search engine without a browser.

Comments

Popular posts from this blog

Software Testing Module 1

 Software Testing is a process in which identifying  Completeness, Correctness, Security & Quality of software product takes place. A software Tester must require a very different mindset from a developer. Software Testing means that checking software or a application to make sure that it work properly before people start using it. It helps in application to make it Reliable, Secure with user expectations for Business alignment. The developer only builds the product as per the user needs but the tester need to check or test it from user or customer point of view whether it meets needs of user or not. Software Testing is not just about finding Bugs, its about building trust, delivering excellence, values & a relation, reliable to user experience. What is Software Application? Software Application is a set of programs designed to perform a specific task for a specific user. For example web browsers, MS office, Gmail, Makemytrip and so on the list is never ended. Advantag...

Software Testing Module 3

V Model 1. Verification (Static Testing) (Left arm of V model) Definition: Verification is the process of checking whether the software is being developed correctly according to the requirements without executing the code. Like: "Are we doing the job right"? What Verification Checks Requirements are clear and complete Design matches requirements Code follows design standards Documents are correct and consistent How Verification is Done Requirement reviews Design reviews Code reviews Walkthroughs & inspections Key Characteristics Static process (no code execution) Done early in SDLC Prevents defects rather than finding them later Saves time and cost Example:   If the SRS says “Password must be at least 8 characters,” verification checks whether this rule is correctly written and included in the design and code documents. Diagram: SRS (Requirements)         ↓      Design         ↓       Code    ...