Computer Science, asked by naveensandhu913, 4 months ago

Cancel button on formula bar) can be used to undo a cell entry after it has been completed
(h) False
If you enter 127A in a cell it will be treated as a number because it starts with a digit
(b) False
A cell entry can be edited either in the cell or in the formula bar.
(0) True
(b) False
When you clear only the contents of a cell, all the formats and contents are deleted, ,
() True
(b) False
8. When a cell containing a formula is moved, the cells referring the moved cell, show an error value
(a) True
(b) False
9. Once you copy data on to the clipboard, it can be copied to multiple ranges even after pressing
Enter key
(a) True
(b) False
D. What is the shortcut key to find or search for something in a Calc document?
(1) Ctrlts
(6) Ctrl+L
(c) Ctrl+
(d) Ctrl+D
1. The regular expression to search for a line ending with the word 'last' will be
(a) last
(h) Slast
(c) last
(d) lasts
2. The regular expression to search for a line beginning with the word 'lasť will be
(a) last
(b) Slast
(c) last
(d) lasts​

Answers

Answered by Anonymous
3

Answer:

You are attempting questio

What would be the output generated by the following code?

import java.util.concurrent.+;

public class Main {

public static void main(String[] args)

{

ConcurrentHashMap chm = new ConcurrentHashMap();

chm.put(1, "Welcome");

chm.put (2, "to");

chm.put(3, "Java");

chm.put(4, "World");

chm.putIfAbsent (3, "World");

System.out.println("Elements: " + chm);

chm.remove (2, "Welcome");

System.out.println("Elements after key 2 is removed: "+chm);

chm. putIfAbsent (3, "Java's");

System.out.println("Add new: "+chm);

chm.replace(3, "Java", "Java New");

System.out.println("After Replacing: "+ chm);

}

Similar questions