Answer and Explanation:
Using javascript:
function dayof_theweek(){
var TodayDate = window. prompt("enter today's date in the format 'year, month, day' ");
var Datenow=new date(TodayDate);
var Dayofweek=Datenow.getday();
var Days=["monday","Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"];
if(Dayofweek==indexOf(Days[Dayofweek]))
{
document.createTextnode(Days[Dayofweek]);
}
}
The program above uses a date object which uses the method getday to get the day of the week(get day returns an integer from 0 to 6).we then use a comparison operator == to test the condition that returned value Dayoftheweek is same with the index of the array Days and then print to a html document. The program may need improvements such as the fact that errors may arise when proper input isn't given, and therefore must be handled.
 
        
             
        
        
        
A technician's first step with an A/C system is to perform visual inspection
        
             
        
        
        
<span>A profile is made the first occasion when that a client sign on
to a Windows XP, Windows 2000, or Windows NT® Workstation–based PC. A client
profile is a gathering of settings and documents that characterizes the
condition that the framework loads when a client sign on. It incorporates all
the client arrangement settings, for example, program things, screen hues,
organize associations, printer associations, mouse settings, and window size
and position. Profiles are not client arrangements and the client has a profile
regardless of the possibility that you don't utilize Group Policy.</span>
        
             
        
        
        
Answer:
The program is as follows:
word = input("Enter a word: ")
if word:
    if len(word) <= 4:
        word = word[::-1]
    else:
        word = word[0]+word[1]+word[-2]+word[-1]
    print(word)
else:
    print('empty!')
Explanation:
This gets input for word from the user
word = input("Enter a word: ")
If input is not empty
if word:
This checks if the length is less than or equal to 4 characters
    if len(word) <= 4:
If yes, this reverses the word
        word = word[::-1]
If otherwise,
    else:
This gets the first, second, second to last two characters
        word = word[0]+word[1]+word[-2]+word[-1]
Print the new string
    print(word)
Print empty, if input is empty
<em>else:
</em>
<em>    print('empty!')</em>
 
        
             
        
        
        
No I have not had that do that to me before It has always loaded my ads and sent me right back to the answer