What is normalisation?
Answers were Sorted based on User's Feedback
Answer / papari
normalisation means to remove data redundancy from a table.
| Is This Answer Correct ? | 8 Yes | 0 No |
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
In COBOL CALL-CALLING,if a program A is calling 3 sub- programs, dynamically, then it is said sub-programs will always will always in Initial Mode. My question is : Do we need to code CANCEL or (IS INITIAL) for dynamically called sub-programs or it is the property of Dynamically called pgms so every time sub-pgms are called they will be in initial mode. ***This question is only Dynamic call****, Please reply. Thank you in advance.
For rewrite, why is it mandatory that file needs to be opened?
what is qualification on occurs clause?
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
A cobol program to read a file , match it with other if. If match occurs then write it to an output file. If no match then no need to write it.Error log created by program to track any error.
How we copy a program from production region to development region.What is the process & syntax ?
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
What will happen if we try to create GDG (+2) generaton instead of (+1) generation?
I've one string with spaces ( I N D I A ). My question is I want remove the spaces & combine in to single string without space (INDIA).How we can write the cobol program & wich options we need to use. Please let me know.
can we use variable picture clause as xx.99 in cobol.
Should I use STOP RUN in the sub program??why?