I was asked in HSBC interview following questions:

1. A string was given " techincal seminar on cobol language"
Interviewer asked me to calculate the number of vowels in
this string.

Answers were Sorted based on User's Feedback



I was asked in HSBC interview following questions: 1. A string was given " techincal semina..

Answer / sakthi

INSPECT strng-1 TALLYING strng-2 FOR ALL 'A','E','I','O','U'.

Is This Answer Correct ?    40 Yes 3 No

I was asked in HSBC interview following questions: 1. A string was given " techincal semina..

Answer / srini

INSPECT strng-1 TALLYING count strng-2 FOR ALL 'A','E','I','O','U'.

Is This Answer Correct ?    10 Yes 4 No

I was asked in HSBC interview following questions: 1. A string was given " techincal semina..

Answer / ameen

here is an example for counting vowles in apple word..
apply the same code for your required string....
01 str pic a(5) value 'apple'.
77 cnt pic 9(1) value 0.
01 i pic 9(1) value 1.
procedure division.
perform varying i from 1 by 1 until i>5.
if str(i:1)="A" or "a".......write all vowels.
add+1 to cnt.
display cnt.

Is This Answer Correct ?    3 Yes 2 No

I was asked in HSBC interview following questions: 1. A string was given " techincal semina..

Answer / sridevi mj

We can use the built in function: % SCAN .
We compare the text given with the vowel set.
Get the poitions and then get to know how manvy vowels are
there.

Is This Answer Correct ?    0 Yes 0 No

I was asked in HSBC interview following questions: 1. A string was given " techincal semina..

Answer / ecknisha

Please help yourself to find the answer

Is This Answer Correct ?    3 Yes 13 No

Post New Answer

More CICS Interview Questions

How do u know if a start command intiated a transaction or a terminal intiated a transaction

2 Answers   ProKarma,


when will be use the tdq and tsq??

2 Answers   Keane India Ltd,


What is the name of the facility provided by CICS to free the application program form the problems caused

1 Answers  


What is the primary function of the Sign-on Table?

1 Answers  


What is the use of tdq and tsq?

0 Answers  






What is interval control and what are some of the CICS commands associated with it?

2 Answers   IBM,


Explain the primary function of the processing program table (ppt)?

0 Answers  


Explain the difference between exec cics handle condtion and an exec cics ignore command?

0 Answers  


What is meant by a ‘Transid’ ?

0 Answers  


What is Communication Area?

1 Answers   IBM,


How to make protected field in BMS invisible through application program?

1 Answers   HP,


Explain what is a cursor in cics sql processing?

0 Answers  


Categories