Functions Flashcards

1
Q

EVernote

A

https://www.evernote.com/Home.action?login=true#n=009d75c5-a2e4-4d7e-9c65-802f54bf7f68&s=s432&ses=4&sh=2&sds=5&

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Java replace

A

Replace –
Object ob;
ob = new(“Java lang string”, #03522);
#03522=ob.replaceALL(“E”,”Z”);

o/p = This replaces the string E with Z in all the output field elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Java upper/lower

A

toLowercase/toUppercase–
object ob;
ob = new(“java.lang.String”,#03227);

if #03227!= “” then
#03227= ob.toUpperCase();

o/p = This changes the string to uppercase in all the output field elements

How well did you know this?
1
Not at all
2
3
4
5
Perfectly