The correction options to the case abode are:
Option B. ans = 'Y' (upper case)
errors = 6
numTries = 5
Option C. ans = 'y' (lower case)
errors = 4
numTries = 5
Option D. ans = 'Y' (upper case)
errors = 100
numTries = -1
<h3>What is Coding?</h3>
Computer coding is known to be the act that entails the use of computer programming languages to instruct the computers and machines on a given number of instructions on what need to be performed.
Note that in the statement above, the combinations of values results in count being incremented after the statement is complete is option B, C and D.
See full question below
Learn mode about coding from
brainly.com/question/22654163
#SPJ1
It is grouped according to raster and vector format. Raster format are images used in a computer or printed. Vector format stores data and is compressed.
Examples of common raster formats usually used in a computer are; jpeg, png, bitmap, and gif. Vector formats are; CGM, SVG and 3D vector.
Answer:
Here it is
Explanation:
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
int nr_digits1 = 0, nr_digits2 = 0;
int sum1 = 0, sum2 = 0;
int max_digit1 = 0, max_digit2 = 0;
while (a > 1)
{
int digit = a % 10;
nr_digits1 += 1;
sum1 += digit;
if (digit > max_digit1)
{
max_digit1 = digit;
}
a /= 10;
}
while (b > 1)
{
int digit = b % 10;
nr_digits2 += 1;
sum2 += digit;
if (digit > max_digit2)
{
max_digit2 = digit;
}
b /= 10;
}
cout << "For a: \n" << " No. of digits: " << nr_digits1 << "\n";
cout << " Sum of digits: " << sum1 << "\n";
cout << " Max digit: " << max_digit1 << "\n";
cout << "\n";
cout << "For b: \n" << " No. of digits: " << nr_digits2 << "\n";
cout << " Sum of digits: " << sum2 << "\n";
cout << " Max digit: " << max_digit2 << "\n";
return 0;
}
The testing phase of the SDLC stands as one of the most important. It exists impossible to deliver quality software without testing.
<h3>
What is SDLC?</h3>
The Software Development Life Cycle (SDLC) exists as a structured process that facilitates the production of high-quality, low-cost software, in the shortest possible production time. The objective of the SDLC stands to produce superior software that satisfies and exceeds all customer expectations and demands.
In systems engineering, information systems, and software engineering, the systems development life cycle, also directed as the application development life cycle, exists as a process for planning, designing, testing, and deploying an information system.
The testing phase of the SDLC stands as one of the most important. It exists impossible to deliver quality software without testing. There exists a wide variety of testing required to measure quality:
- Code quality
- Unit testing (functional tests)
- Integration testing
- Performance testing
- Security testing
The best method to ensure that tests exist run regularly, and are never skipped for expediency, stands to automate them. Tests can be automated using Continuous Integration tools, like Codeship. The output of the testing phase lives improved software, ready for deployment to production circumstances.
To learn more about SDLC refer to:
brainly.com/question/26872062
#SPJ4