Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What does a cics translator do?

0 Answers  


How To Retrive The VSAM Datasets in CICS application programs?

1 Answers   Accenture, IBM,


How to test CICS, MainFrame applications

12 Answers   Covansys,


What is an AICA abend?

3 Answers   IBM, Xansa,


For protecting a transaction using the transaction security function, the two things that must be done are?

0 Answers  


What is the EIB parameter and the CICS command used to implement Pseudo-Conversational technique using single PCT ? Single PPT entry?

1 Answers   IBM,


How many maps are create in a single mapset?

5 Answers  


Which is the command that is used to dump the main storage areas related to a task?

1 Answers   IBM,


What is the command that is used to delay the processing of a task for a specified time interval

1 Answers  


Can a program change protected field ?

2 Answers   IBM,


Can you define mapset?

0 Answers  


Can you access ESDS files from CICS ?

2 Answers   IBM,


Categories