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:

Which encoding would allow you to transmit binary data over an ASCII-only communications channel?

Which encoding would allow you to transmit binary data over an ASCII-only communications channel?

  • Unicode
  • bytecode
  • Base64
  • ISO-8851-1 

 
Which encoding would allow you to transmit binary data over an ASCII-only communications channel?

EXPLANATION

Base64 is a format that encodes arbitrary binary data into ASCII characters (letters, digits and limited punctuation).  These characters then can be decoded back into binary at the other end.
  This allows transmitting binary data over channels that normally only allow ASCII (such as email or display terminals).  Base64 takes up 1/3 more space than the equivalent binary format.

SOURCE

https://en.wikipedia.org/wiki/Base64
Share:

Friday, December 15, 2017

In SCCM, which of the following can build and capture and subsequently deploy an OS image from a set of operating system installation files, install additional applications during the build-phase and capture and restore user state information?

In SCCM, which of the following can build and capture and subsequently deploy an OS image from a set of operating system installation files, install additional applications during the build-phase and capture and restore user state information?

  • Task Sequence
  • Task Scheduler
  • Task Manager
  • Tasklist 

 
In SCCM, which of the following can build and capture and subsequently deploy an OS image from a set of operating system installation files, install additional applications during the build-phase and capture and restore user state information?

EXPLANATION

System Center Configuration Manager uses task sequences to automatically install an operating system image on a destination computer. You create a task sequence that references a boot image used to start the destination computer, the operating system image that you want to install on the destination computer, and any other additional content, such as other applications or software updates, that

SOURCE

https://technet.microsoft.com/en-us/library/bb693631.aspx
Share:

Popular Posts