An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Answer / Mahesh Kumar Kureel
```cn- Analyze the code structure and functions.n- Compile and run the program with various test cases.n- Debug and fix any errors that occur.n- Create a report detailing the findings and any issues encountered.```
| Is This Answer Correct ? | 0 Yes | 0 No |
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
How do you list a file’s date and time?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
diff between exptected result and requirement?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
If input is 123 then how to print 100 and 20 and 3 seperately?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?