IT Questions and Answers :)

Thursday, March 22, 2018

Which of the following does ROBOCOPY stand for?

Which of the following does ROBOCOPY stand for?

  • Recursive File Copy
  • Robust File Copy
  • Read Only Block Option Copy
  • Robot Copy 
Which of the following does ROBOCOPY stand for?

EXPLANATION

ROBOCOPY, or "Robust File Copy", is a command-line directory and/or file replication command

SOURCE

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

Tuesday, March 20, 2018

Which of these is NOT a PHP class?

Which of these is NOT a PHP class?

  • PDO
  • XMLReader
  • ErrorLog
  • DateTime 

 
Which of these is NOT a PHP class?

EXPLANATION

"ErrorLog" is the correct answer.  PHP has a function called "error_log", but it returns true/false and there is no object-oriented version like there is with some of the other classes.
PDO is a PHP extension for working with databases. XMLReader and DateTime are also classes, though they both have procedural versions too.

Share:

Which of these is NOT a utility that lets you create a bootable live USB drive for Linux?

Which of these is NOT a utility that lets you create a bootable live USB drive for Linux?

  • LiveUSB Install
  • UNetbootin
  • GotLive
  • LiLi 
Which of these is NOT a utility that lets you create a bootable live USB drive for Linux?

EXPLANATION

LinuxLive USB Creator (also known as Lili) is a free and open-source software for Windows that can be used to install various Linux compilations, versions and distributions to a USB Flash Drive. The end result is a Bootable Live USB (in some cases with Persistence as well). UNetbootin allows you to create bootable Live USB drives for Ubuntu and other Linux distributions without burning a CD.

Share:

Cloud solutions that can tolerate failures yet still provide service are referred to as what?

Cloud solutions that can tolerate failures yet still provide service are referred to as what?

  • Highly available
  • Highly portable
  • PaaS
  • IaaS 
Cloud solutions that can tolerate failures yet still provide service are referred to as what?

EXPLANATION

High availability ensures that cloud solutions are always accessible. This means eliminating single points of failure, such as storing data on a single hard disk or single network connections.

Share:

What MySQL feature allows for queries to be run periodically in the background, independent of a front-end program?

What MySQL feature allows for queries to be run periodically in the background, independent of a front-end program?

  • MySQL Automatic Events
  • MySQL Task Manager
  • MySQL Event Scheduler
  • MySQL Scheduled Tasks 

 
What MySQL feature allows for queries to be run periodically in the background, independent of a front-end program?

EXPLANATION

The MySQL Event Scheduler allows for queries to be run in the background at scheduled times, either as a one-off or recurring event.

SOURCE

https://dev.mysql.com/doc/refman/5.7/en/events-overview.html
Share:

Popular Posts