what is the difference b/w coldfusion MX 6 and Coldfusion
MX 7?
Answer / praveen
Windows authentication introduced
thorough "cfntauthenticate" tag
cfcompile utility introduced which used for Sourceless
deployment
Administrator API: Change ColdFusion settings
programmatically, without logging into the CF Administrator.
Gateways: SMS, IM (based on Extensible Messaging and
Presence Protocol) gateways introduced
| Is This Answer Correct ? | 0 Yes | 1 No |
What does the command "use strict" do and why should you use it?
What interface used in PERL to connect to database? How do you connect to database in Perl?
Explain arrays in perl.
How many data types are there in perl?
There is no strict data types in perl unlike in other high level languages like Java so wouldn't that be a problem if a code in perl is to be a written by a big team of 20+ members ?"
while(my($key, $value) = each(%hash) ) { print "$key => $value\n"; } my($key, $value); while(($key, $value) = each(%hash) ) { print "$key => $value\n"; } What is the different between these two code in case of "my" usage ?
How to deleting an existing file in perl programming?
How do you find the length of an array?
Which operator in perl is used for the concatenation of two strings?
What are scalars in perl?
how to connect cisco switch uisng perl script
We all know private variables exist in perl. But do private METHODS exist in perl ? Eg ?