Use your right clicker and it should pop up as delete slide
Can you give me the link to an article about this so i may help?
<u>Answer:</u>
- <em>software engineer
</em>
- <em>hardware engineer
</em>
- <em>systems analyst
</em>
- <em>database administrator
</em>
- <em>computer support specialist</em>
<u>Explanation:</u>
- <em>Software engineer:</em> This deals with the application development where engineers develop application related to system software and application software which is used for commercial purposes.
- <em>Hardware engineer:</em> Deals with problem in the hardware viz keyboard, mouse, mother board and other internal parts and also with network.
- <em>Systems analyst: </em>This is once again a profession which deals with the internal problems of the system and also to install softwares and troubleshoot if issues arise.
- <em>Database administrator: </em>Maintains the database, fix errors, monitor data, etc
- <em>Computer support specialist:</em> The responsibility depends on the company and it will be similar to a clerical role.
Lawyer This option is irrelevant
Answer:
See the explanation section
Explanation:
import java.util.*;
//The above statement is to import the Scanner and ArrayList class
public class StringSlicer {
public static void main(String args[]) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter your string: ");
String inputString = scan.nextLine();
ArrayList<Character> stringList = new ArrayList<Character>();
for(int i = 0; i < inputString.length(); i++){
stringList.add(inputString.charAt(i));
}
for(Character letter: stringList){
System.out.println(letter);
}
}
}