Questions
How do you visualize the content of file "not_empty"?
- type not_empty
- cat not_empty
- more not_empty
- next not_empty
Count the files you own in all your directories
- ls -lR | grep myusername | wc -l
- ls -a | cnt *
- ls -n ~myusername
- ls -lrt
Change the current directory to /usr/local/bin
- mv /usr/local/bin
- cd /usr/local/bin
- move /usr/local/bin
- setdir /usr/local/bin
onPrint Object handler can be used to generate code for objects which are directly opened, via URL.
- True
- False
Buckets are lost after a TimeOut, or when the server is rebooted
- True
- Partially true, ( only when server is rebooted )
- False
- Concept of Buckets don't exist.
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.
- Initial Value, New 1, Initial Value
- Initial Value, New 1, New 1
- Initial Value, New 1, Line 7 will result in a Runtime error
- Compilation Error due to Line 7 ( Duplicate Loading )
var test = 'Hello World' what will test.slice(3,-1) result in.
- Compilation Error, Postive value expected.
- Runtime Error, Postive value expected
- lo world
- lo worl
var test = "Hello World" what will test.substr(3,7) result in
- lo w
- lo worl
- lo wo
- index out of range error during compilation
var test = "Hello world" what will test.substring(3,7) result in
- index out of range error during compilation
- lo w
- llo w
- lo wo
How many encoding rounds are currently supported by Cipher class.
- 4, 8, 12, 16
- 2, 8, 16
- 8, 12, 16
- 8, 16
For which algorithm's encoding rounds are must.
- RC5
- RC4
- Both I & II
- None of the above
What does mput <local file-name(s)> do?
- Copies the file to local machine
- Expand wild cards in the list mentioned in <local file-names> and do a put for each file in the resultant list
- Copies only one file to remote machine
- None of the above
What is the command get "|more" used for?
- To get the file from remote location
- To get the files mentioned in <file-name> from remote location
- To view the file instead of downloading from remote location
- To view the file in the local machine
What is use of lcd command?
- To change working directory to directory in local-machine
- To change working directory to directory in remote machine
- To change working directory to directory in local-machine and lock
- To change working directory on remote machine to remote-directory
Pick the odd one out.
- rename
- erase
- open
- delete
What is the command to get help information for a command (eg. dir)?
- man dir
- help dir
- dir ?
- Both 2 and 3
Data Type defines the format of a class member in CustomProperties. The number of data types any class member supports is:
- 11
- 10
- 9
- 3
Can a custom GUI form be presented to user, to fill customproperties data.
- True
- False
In CUSTOMPROPERTIES.scope.instance.attribute[.attribute[..]] Which all values can be assigned to scope.
- current, global, user, group, page
- current, user, subtype, text
- text, template, group, user
- page
By how many ways, Livelink WCM offers accessing of Custom Properties within a codeblock
- 3
- 1
- 2
- 4