The answer is A. True
Because soft skills are:
1) Good communication skills
2) Team work
3) Positive attitude
4) Self confidence
5) Ability to learn from criticism
6) problem solving skills
7) patience
8) leadership quality
I hope the answer is clear
Sorry don't understand spanish,I am sure you can get it wrong,for crying out loud you people get checks for coming to United States
The answer is B to the question
Answer:
The Java code is given below
Explanation:
import java.util.*;
public class CensoredWords {
public static void main(String args[]) {
Scanner scnr=new Scanner(System.in);
String userInput;
System.out.println("Enter String: ");
userInput=scnr.nextLine();
int res=userInput.indexOf("darn");
if(res == - 1) {
System.out.println(userInput);
} else {
System.out.println("Censored");
}
}
}