technology Online Quiz - 1812

technology Online Quiz - 1812

20 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

How do you visualize the content of file "not_empty"?

  1. type not_empty
  2. cat not_empty
  3. more not_empty
  4. next not_empty
Question 2 Multiple Choice (Single Answer)

Count the files you own in all your directories

  1. ls -lR | grep myusername | wc -l
  2. ls -a | cnt *
  3. ls -n ~myusername
  4. ls -lrt
Question 3 Multiple Choice (Single Answer)

Change the current directory to /usr/local/bin

  1. mv /usr/local/bin
  2. cd /usr/local/bin
  3. move /usr/local/bin
  4. setdir /usr/local/bin
Question 4 True/False

onPrint Object handler can be used to generate code for objects which are directly opened, via URL.

  1. True
  2. False
Question 5 Multiple Choice (Single Answer)

Buckets are lost after a TimeOut, or when the server is rebooted

  1. True
  2. Partially true, ( only when server is rebooted )
  3. False
  4. Concept of Buckets don't exist.
Question 6 Multiple Choice (Single Answer)

A TextObject having ID=100, has initial value of "Intial Value" The following code operation is performed on it. var test=new WebObject()// Line 1 var test1=new WebObject()// Line 2 test.loadById(100)// Line 3 write(test.text) // Line 4 test.text = "New 1" // Line 5 write(test.text)// Line 6 test1.loadById(100)// Line 7 write(test1.text)// Line 8 What values will the write statements on Line 4, Line 6 and Line 8 result.

  1. Initial Value, New 1, Initial Value
  2. Initial Value, New 1, New 1
  3. Initial Value, New 1, Line 7 will result in a Runtime error
  4. Compilation Error due to Line 7 ( Duplicate Loading )
Question 7 Multiple Choice (Single Answer)

var test = 'Hello World' what will test.slice(3,-1) result in.

  1. Compilation Error, Postive value expected.
  2. Runtime Error, Postive value expected
  3. lo world
  4. lo worl
Question 8 Multiple Choice (Single Answer)

var test = "Hello World" what will test.substr(3,7) result in

  1. lo w
  2. lo worl
  3. lo wo
  4. index out of range error during compilation
Question 9 Multiple Choice (Single Answer)

var test = "Hello world" what will test.substring(3,7) result in

  1. index out of range error during compilation
  2. lo w
  3. llo w
  4. lo wo
Question 10 Multiple Choice (Single Answer)

How many encoding rounds are currently supported by Cipher class.

  1. 4, 8, 12, 16
  2. 2, 8, 16
  3. 8, 12, 16
  4. 8, 16
Question 11 Multiple Choice (Single Answer)

For which algorithm's encoding rounds are must.

  1. RC5
  2. RC4
  3. Both I & II
  4. None of the above
Question 12 Multiple Choice (Single Answer)

What does mput <local file-name(s)> do?

  1. Copies the file to local machine
  2. Expand wild cards in the list mentioned in <local file-names> and do a put for each file in the resultant list
  3. Copies only one file to remote machine
  4. None of the above
Question 13 Multiple Choice (Single Answer)

What is the command get "|more" used for?

  1. To get the file from remote location
  2. To get the files mentioned in <file-name> from remote location
  3. To view the file instead of downloading from remote location
  4. To view the file in the local machine
Question 14 Multiple Choice (Single Answer)

What is use of lcd command?

  1. To change working directory to directory in local-machine
  2. To change working directory to directory in remote machine
  3. To change working directory to directory in local-machine and lock
  4. To change working directory on remote machine to remote-directory
Question 15 Multiple Choice (Single Answer)

Pick the odd one out.

  1. rename
  2. erase
  3. open
  4. delete
Question 16 Multiple Choice (Single Answer)

What is the command to get help information for a command (eg. dir)?

  1. man dir
  2. help dir
  3. dir ?
  4. Both 2 and 3
Question 17 Multiple Choice (Single Answer)

Data Type defines the format of a class member in CustomProperties. The number of data types any class member supports is:

  1. 11
  2. 10
  3. 9
  4. 3
Question 18 True/False

Can a custom GUI form be presented to user, to fill customproperties data.

  1. True
  2. False
Question 19 Multiple Choice (Single Answer)

In CUSTOMPROPERTIES.scope.instance.attribute[.attribute[..]] Which all values can be assigned to scope.

  1. current, global, user, group, page
  2. current, user, subtype, text
  3. text, template, group, user
  4. page
Question 20 Multiple Choice (Single Answer)

By how many ways, Livelink WCM offers accessing of Custom Properties within a codeblock

  1. 3
  2. 1
  3. 2
  4. 4