Ask a Question | Answer a Question! |
![](/img/l.gif)
Submitting your question...
ResFinder - Thousands of Practice Papers
Arrange the below operators in descending order [2]
/,=,++,!=
Is it ++, /, !=, = ?? |
![](//pl.respaper.com/64/hermione02.jpg) |
asked by Shreya Bhagat (hermione02) 6 years ago |
1 |
guys in ECO everything is going to come from scope na?? |
![](//pl.respaper.com/64/aryan9917.jpg) |
asked by Aryan Kapoor (aryan9917) 6 years ago |
1 |
Any paper pattern or predictions for eco? |
![](//pl.respaper.com/64/zenab13.jpg) |
asked by Momo (zenab13) 6 years ago |
1 |
Are the questions from inside the scope or even from outside in EVS board paper? |
![](//pl.respaper.com/64/onkarborade.jpg) |
asked by Onkar Borade (onkarborade) 6 years ago |
2 |
anyone here went for young talent search in computer programming |
![](//pl.respaper.com/64/jatintara.jpg) |
asked by Hatake Kakashi (jatintara) 6 years ago |
1 |
Why do majority of people wear the watch on the left hand while a few on the right hand? (genetics question) |
![](//pl.respaper.com/64/rick1234.jpg) |
asked by Rick Biswas (rick1234) 6 years ago |
5 |
Guys i use 2 Sannn.. object technique for string programes the functions i us r little different but they are not out of syllubus but a new approach for programming this type of code drastically reduces time but i fear whether it will be accepted or not . i dont want to loss marks over examer.. not understanding my code , though op is authentic
a program to remove vowels
Scanner in = new Scanner(System.in);
System.out.println("enter the string");
String len = in.nextLine();
Scanner inn = new Scanner(len).useDelimiter("[aeiou]+");
while(inn.hasNext())
{
System.out.print(inn.next());
}
=======================
a program to remove only Consonant
Scanner in = new Scanner(System.in);
System.out.println("enter the string");
String len = in.nextLine();
Scanner inn = new Scanner(len).useDelimiter("[^aeiou]+");
while(inn.hasNext())
{
System.out.print(inn.next());
} |
![](//pl.respaper.com/64/mdarfath.jpg) |
asked by Rtstud (mdarfath) 6 years ago |
2 |