Mini Project Java Hands-On Solution | TCS Fresco Play
Disclaimer: The primary purpose of providing this solution is to assist and support anyone who are unable to complete these courses due to a technical issue or a lack of expertise. This website's information or data are solely for the purpose of knowledge and education.
Make an effort to understand these solutions and apply them to your Hands-On difficulties. (It is not advisable that copy and paste these solutions)
The Course Id: - 63716
1. Strings in Java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Solution{
public static int charSearch(String str,char ch){
//complete the code
char[] array = str.toCharArray();
int count = 0;
for(int i=0;i<str.length();i++){
if(array[i] == ch){
count++;
}
}
return count;
}
public static void main(String[] args) throws IOException {
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
String str = reader.readLine();
char ch = (char)reader.read();
System.out.println(charSearch(str,ch));
}
}
2. Arrays in Java
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String args[] ) throws Exception {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
Scanner scanner = new Scanner(System.in);
char[] ch = {'0','1','2','3','4','5','6','7','8','9'};
int a = scanner.nextInt();
String str = Integer.toString(a);
int count = 0;
for(int i=0;i<ch.length;i++){
for(int j=0;j<str.length();j++){
if(str.charAt(j) == ch[i])
count++;
}
if(count>0){
System.out.println(ch[i]+": "+count);
count = 0;
}
}
}
}
3. Collections in Java:-
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;
public class Solution {
public static void main(String args[] ) throws Exception {
/* Enter your code here. Read input from STDIN. Print output to STDOUT */
Scanner scanner = new Scanner(System.in);
HashMap<Integer,String> hash = new HashMap<>();
int n = scanner.nextInt();
scanner.nextLine();
while(n>0){
String str =scanner.nextLine();
String s[] = str.split(" ");
hash.put(Integer.parseInt(s[0]), s[1]);
n--;
}
int k = scanner.nextInt();
if(hash.containsKey(k)){
System.out.println(hash.get(k));
}
else{
System.out.println("-1");
}
}
}
5 comments
import java.io.IOException;
import java.io.InputStreamReader;
public class Solution{
public static int charSearch(String str,char ch){
//complete the code
char[] array = str.toCharArray();
int count = 0;
for(int i=0;i<str.length();i++){
if(array[i] == ch){
count++;
}