Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 4

Cold Fusion –

What is ur qualification?

Where do you rate yourself in..

ColdFusion Interview Questions

Home Interview Questions Programming ColdFusion

ColdFusion Interview Questions


ColdFusion Interview Questions
Questions: 21
Comments: 26
Showing Questions 1-10 of 21 Questions
[1] 2 3 Next >>
Sponsored Links

ColdFusion Interview Questions


Date Added

Sorting Options :

CF Database Query
What is Query of Query Concept?
Latest Answer: Creating a Database Query/Queries that uses the existing query's
output without accessing the database tablesfor example:db query reference :
#existing query name.ID or name ... #use or ...
Read Answers (1) | Asked by : kunchaparthi
Answer Question Subscribe

What can be used to create connections between your ColdFusion Web sites and databases?

Latest Answer: A DSN is used. These are set up in CF administrator and used in
query code to connect to a database. ...
Read Answers (1) | Asked by : SachinDeo
Answer Question Subscribe

Where can one view the value of the Proxy Port in Coldfusion Administrator?

Latest Answer: The Proxy Port, which is not the "Remote Port" mentioned in the
ColdFusion Administrator, can only be viewed in the Jrun Administrator, which
should running on your "master" Jrun4 server on port 8000. (ie
http://my.master.node:8000) ...
Read Answers (1) | Asked by : SriramKrishna
Answer Question Subscribe

What is used to mount the web root locally to the Coldfusion instance?

Latest Answer: ColdFusion must have the webroot mounted locally if it is running
on a separate machine from the web server(s). We have always used NFS to
mount the web root locally to the ColdFusion instance. There have also been
some mention of mirroring the web root ...
Read Answers (1) | Asked by : GregMark
Answer Question Subscribe

What is used to replicate sessions between instances in Coldfusion clusters?

View Question | Asked by : RajivPrasad


Answer Question Subscribe

What can be used to facilitate transfer of data to the coldfusion server?

Latest Answer: cfqueries can be used ...


Read Answers (1) | Asked by : Bessie
Answer Question Subscribe

Does Coldfusion application support both client and session variables. If not provide the reason
for
Does Coldfusion application support both client and session variables. If not
provide the reason for the same?
Read Answers (1) | Asked by : Remasri
Answer Question Subscribe

What are the databases that are supported by ColdFusion applications?

Latest Answer: All relational and non relational databse like


Oracle,MSAccess,mysql ...
Read Answers (1) | Asked by : StephenRaj
Answer Question Subscribe

What option is used to ftp files to or from the ColdFusion server?

Latest Answer: If you already have an FTP account with a remote host, you can
use the CFFTP tag to transfer files between your computer and your host right
in your ColdFusion application.D: ...
Read Answers (4) | Asked by : Robert
Answer Question Subscribe

What happens when the read attribute rights of the ColdFusion server to a file is revoked?

View Question | Asked by : christia


Answer Question Subscribe

Flex-

Is it possible to make httpService Requests synchronous?

What is the difference between httpService and Data Service?

How do you generate random numbers within a given limit with actionscript?

Java-
What is the
difference between
an Interface and an
Abstract class?
A: An abstract class can have instance methods that implement a
default behavior. An Interface can only declare constants and
instance methods, but cannot implement default behavior and all
methods are implicitly abstract. An interface has all public members
and no implementation. An abstract class is a class which may have
the usual flavors of class members (private, protected, etc.), but has
some abstract methods.
.

TOP

Q: What is the purpose of garbage collection in Java, and when is it used?

A: The purpose of garbage collection is to identify and discard objects that are no longer
needed by a program so that their resources can be reclaimed and reused. A Java object
is subject to garbage collection when it becomes unreachable to the program in which it
is used.
Explain different way of using thread?
A: The thread
could be
implemented
by using
runnable
interface or by
inheriting from
the Thread
class. The
former is more
advantageous,
'cause when
you are going
for multiple
inheritance..the
only interface
can help.

You might also like