Answer: Mail Merge
Explanation:
The feature of Microsoft Word that allows an individual to efficiently create documents that have the same general
content but may have different recipients or purpose is referred to as the Mail Merge
It should be noted that other options such as Send Merge, Print Merge and View Merge is wrong. Therefore, the correct option is A
Answer:
Threads will terminate
Explanation:
Each process are assigned there own memory and resources, Process is also called Application such as Chrome, Word etc. Process can have one or many threads. each thread shares the memory and resources of its process.
Once the process terminates and its free its memory and resources, Which means all of its threads automatically terminated as they share the memory and resources of process.
Thread can only resides within process resources.
Answer:
Following is the code in Java Language :
DecimalFormat form1= new DecimalFormat ("0.####"); // create an instance of . //DecimalFormat
System.out.println (form1.format(res)); // display the value in proper format
Explanation:
Following are the description of the program
- Firstly we create the instance of DecimalFormat i.e "form1" that will round a formatted value to four decimal places. To create an instance or object of the class we can use a new keyword.
- Finally, we print the format by using the format method.In the format method, we pass the variable "res".The System.out.println() is used to display the value of the format.
Answer: False
Explanation:
Web designers are not using programming languages to write websites.
Answer:
- Code is in JAVA language. As there is no user input the logic is straightforward.
- Below is the code along with a detailed explanation of the logic.
- The class name is Print main save as file as the main class.
Explanation:
Program:-
public class Main{
public static void main(String args[]){
/* There are two for loops...
* First for loop runs from i=1 to i=9
* Second for loop runs from j=1 to j=i.
*
*/
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){ // j loop runs from j=1 to j=i
/*Prints I and j next to each other*/
System.out.println(i+""+j);
}//for loop of j ends here
}// for loop of I ends here
}
}