The power of science of course
Answer:
print("first is "+str(first)+" second = "+str(second))
Explanation:
The above written print statement is in python language.If first and second are strings then we need not to use str then we only have to write variable name.This statement prints the given in one line according to the question and it goes to new line after printing.
Answer:
Microsoft Poweroint
Explanation:
this software helps people to present their projects.
Answer:
See explaination
Explanation:
public class PalindromeChange {
public static void main(String[] args) {
System.out.println("mom to non palindrom word is: "+changTONonPalindrom("mom"));
System.out.println("mom to non palindrom word is: "+changTONonPalindrom("aaabbaaa"));
}
private static String changTONonPalindrom(String str)
{
int mid=str.length()/2;
boolean found=false;
char character=' ';
int i;
for(i=mid-1;i>=0;i--)
{
character = str.charAt(i);
if(character!='a')
{
found=true;
break;
}
}
if(!found)
{
for(i=mid+1;i<str.length();i++)
{
character = str.charAt(i);
if(character!='a')
{
found=true;
break;
}
}
}
// This gives the character 'a'
int ascii = (int) character;
ascii-=1;
str = str.substring(0, i) + (char)ascii+ str.substring(i + 1);
return str;
}
}
Apply encryption to VM files the following steps should be taken to secure the VMs so no user can copy or delete another user's VM files
f. Apply encryption to VM files.
b. secure the VM files with permissions
<u>Explanation:</u>
Installing anti-malware is a must on each VM OS OR Host OS to protect both servers and hosted workstations.
Scheduling update OS patches and anti-malware and scanning server or host operation are also must.
Securing VM files as best practices better to encrypt and decrypt is the best method or best practices.
Even protected VM files sometimes can be hacked and damaged the VM files.
VM is a virtual machine technology is used in windows 10. Before login decrypts the VM and connects to virtual machines. On disconnected encrypted is safer.