An EXE file is an executable that may have an MSI file as one its help; An executable or EXE file can "wrap" an MSI file, which is used by the Windows Installer to guide the building process of an application.
MSI files are utilized by the Windows Installer to control how your application is installed.
<h3>What is the difference between an EXE file and MSI file?</h3>
The main difference between the two attachments is their purpose. EXE is used mainly to indicate that the file is an executable one.
In comparison, MSI indicates that the file is a Windows installer. While an MSI is operated only with installers, this is not the case with EXE.
To learn more about EXE file, refer
brainly.com/question/28146265
#SPJ4
Answer:
yes there is opportunity in every thing such as do i buy this car what am i going to miss out on if i buy this what does this offer
Explanation:
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");
}
}
}