Which of the following NFA is valid for the given DFA?
(a)
(b)
(c)
Consider ar as a 3-dimensional array declared as:
data_type ar[a][b][c];
Here, the array element ar[m][n][o] can be represented in pointer form as:
*(*(*(ar + m) + n) + o)
Step-by-step understanding:
ar is a pointer to the first 2D array ar[0].ar + m moves the pointer to the mth 2D array → ar[m].*(ar + m) gives the address of the first 1D array inside ar[m].*(ar + m) + n moves to the nth 1D array → ar[m][n].*(*(ar + m) + n) gives the address of the first element of that 1D array.*(*(*(ar + m) + n) + o) finally gives the element ar[m][n][o].✅ Final Answer: *(*(*(ar + m) + n) + o)
For a fuzzy set $A$, the $\lambda$-cut is defined as: $$A_\lambda = \{x \mid \mu_A(x) \ge \lambda\}$$
Hence, $(\overline{A})_\lambda$ is not equal to $A_\lambda$, even when $\lambda = 1$. Therefore, the statement “except when $\lambda = 1$” is incorrect.
✅ Final Answer: Option 3 is not valid.
A. Maintainability
B. Usability
C. Integrity
D. Functionality
McCall’s Quality Model classifies software quality into three main categories:
- Maintainability ✅ – part of Product Revision factors
- Usability ✅ – part of Product Operation factors
- Integrity ❌ – although in McCall model, it’s not grouped directly with Functionality in this context
- Functionality ✅ – general umbrella factor related to McCall’s quality aspects
✅ Final Answer: A, B and D Only
| List I (GA termination criteria) | List II (description) |
|---|---|
| A. Worst Individual | I. At least half of the individual will be better than or equal to convergence value |
| B. Best Individual | II. Guarantees that virtually all individuals in the population will be within a particular fitness range |
| C. Sum of Fitness | III. Guarantees that the entire population to be of a minimum standard |
| D. Median Fitness | IV. Faster search convergence, guaranteeing at least one best solution |
| Label | Productions | Note |
|---|---|---|
| A | S → Ab aS → aA A → a | LHS “aS” has a terminal → not CFG |
| B | S → Ab A → Sa A → a | All rules are left-linear (V→Vt or V→t) → regular |
| C | S → AS S → aA A → a | CFG, not regular (non-linear: V→VV) |
| D | S → Ab S → aA A → a | CFG; mixes left/right-linear → not regular |
| E | S → Sb A → Aa A → ε | From start S no terminal string → L(S)=∅ (regular) |
| List I (Software Quality Characteristic) | List II (Description) |
|---|---|
| A. Reliability | II. Capability of software to maintain its level of performance under stated conditions for a stated period of time. |
| B. Efficiency | III. Relationship between the level of performance of the software and the amount of resources used, under stated conditions. |
| C. Maintainability | IV. Effort needed to make modifications, including corrections, improvements or adaptation of software to changes in environment, requirements and functional specifications. |
| D. Portability | I. Ability to transfer the software from one organization or hardware/software environment to another. |
Online Test Series, Information About Examination,
Syllabus, Notification
and More.
Online Test Series, Information About Examination,
Syllabus, Notification
and More.