amol londhe


{ City } pune
< Country > india
* Profession * s/w developer-mainframe
User No # 35131
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 11
Users Marked my Answers as Wrong # 18
Questions / { amol londhe }
Questions Answers Category Views Company eMail




Answers / { amol londhe }

Question { 6803 }

What is the process of converting the CICS commands into
the equivalent host language statements called?


Answer

I will add more as Translator is used for coverting cics
command language into understanding COBOL language. After
that You can compile the COBOL Program by using IGYCRCTL
Utility.

Is This Answer Correct ?    1 Yes 0 No

Question { 21940 }

Write a query to find second highest salary of an employee.


Answer

Use the below Query:

Select Max(salary) from Emp
Where Max(salary) < (Select Max(salary) from emp
where emp-no=101);

Is This Answer Correct ?    10 Yes 18 No