IT Questions and Answers :)

Friday, December 22, 2017

In which of the following scenarios would you use a WORM backup tape?

In which of the following scenarios would you use a WORM backup tape?

  • When the tape data is overwritten at random.
  • When the tape data is written only once.
  • When the tape data is overwritten monthly.
  • When the tape or tapes are stored somewhere moist or dirty. 
In which of the following scenarios would you use a WORM backup tape?

EXPLANATION

WORM is an acronym for Write Once Read Many. WORM devices are physically designed to only ever be written to once but can be read from many times.

SOURCE

https://en.wikipedia.org/wiki/Linear_Tape-Open#WORM
Share:

Which of the following wildcard characters can be used in the Windows command line as a substitute for a single character in a file or directory name?

Which of the following wildcard characters can be used in the Windows command line as a substitute for a single character in a file or directory name?

  • *
  • ?
  • @

EXPLANATION

The question mark (?) character can be used as a substitute for a single character in a file or directory name. The asterisk (*) character can be used as a wildcard character to replace zero or more characters.
Share:

Thursday, December 21, 2017

In Windows, If you close a tab in Firefox/Chrome/IE, what key command will re-open it for you?

In Windows, If you close a tab in Firefox/Chrome/IE, what key command will re-open it for you?


  • Ctrl-Shift-T
  • Ctrl-T-O
  • Ctrl-Alt-T
  • Ctrl-Alt-O-T      
In Windows, If you close a tab in Firefox/Chrome/IE, what key command will re-open it for you?

EXPLANATION

When you realize you just closed that browser tab that you have kept open for the last 4 days... just in case. You can easily now just  type "Ctl - Shift - T" to get it back.

SOURCE

http://www.slate.com/blogs/future_tense/2013/08/22/keyboard_shortcut_helps_recover_lost_browser_tabs.html


       
Share:

drw-r-x-wx 2 terry staff 4096 Mar 10 14:29 Secret <== Based on permissions assigned to user (terry), group (staff), and other, which non-root users have permission to remove files in directory "Secret?"

drw-r-x-wx 2 terry staff 4096 Mar 10 14:29 Secret <== Based on permissions assigned to user (terry), group (staff), and other, which non-root users have permission to remove files in directory "Secret?"

  • Both owner "terry" and group "staff" members
  • Any user in "other"
  • The owner, user "terry"
  • Any member of group "staff" 
drw-r-x-wx 2 terry staff 4096 Mar 10 14:29 Secret <== Based on permissions assigned to user (terry), group (staff), and other, which non-root users have permission to remove files in directory "Secret?"

EXPLANATION

To remove a file, a user needs write and access (execute) permission on the directory. That is, -wx at minimum.
The user does not need read permission on the directory to remove a file if the name is known, but read permission on the directory would be required to discover the filename, for example, with "ls".
User "terry", the owner, does not have access to the directory (x is absent for user).

SOURCE

https://www.hackinglinuxexposed.com/articles/20030424.html
Share:

Wednesday, December 20, 2017

Which WMI class can you use to determine a system's last bootup time?

Which WMI class can you use to determine a system's last bootup time?


  • Win32_OperatingSystem
  • Win32_BootEvent
  • Win32_ComputerSystem
  • Win32_BIOS             
Which WMI class can you use to determine a system's last bootup time?

EXPLANATION

Win32_OperatingSystem includes a property called LastBootUpTime, which is the time when the system last booted up.
Win32_ComputerSystem and Win32_BIOS do not have any properties that can be used for this.
Win32_BootEvent does not exist.

Share:

Popular Posts