pankaj bisane


{ City } pune
< Country > india
* Profession * software engineer
User No # 17546
Total Questions Posted # 1
Total Answers Posted # 31

Total Answers Posted for My Questions # 3
Total Views for My Questions # 9824

Users Marked my Answers as Correct # 234
Users Marked my Answers as Wrong # 50
Questions / { pankaj bisane }
Questions Answers Category Views Company eMail

How many requests will be send to server and response coming from server when you open a web page (e.g. xyz.php) which has an image tag?

Persistent,

3 PHP 9824




Answers / { pankaj bisane }

Question { Persistent, 5845 }

What do you meant by Runtime Polymorphism?


Answer

Runtime polymorphisms means the code is called at run time
according to need or given conditions.

suppose there r two methods namely Add() one in super class
and other is in sub class.both have the same name and same
parameters.

so we have to choose that which method from them should
called at run time i.e. of super class or of sub class.

It can be achieved through the use of virtual functions.

Is This Answer Correct ?    1 Yes 0 No

Question { Honeywell, 8825 }

What is the requirement in MIMD ?


Answer

In computing, MIMD (Multiple Instruction stream, Multiple
Data stream) is a technique employed to achieve parallelism.
Machines using MIMD have a number of processors that
function asynchronously and independently. At any time,
different processors may be executing different instructions
on different pieces of data. MIMD architectures may be used
in a number of application areas such as computer-aided
design/computer-aided manufacturing, simulation, modeling,
and as communication switches. MIMD machines can be of
either shared memory or distributed memory categories. These
classifications are based on how MIMD processors access
memory. Shared memory machines may be of the bus-based,
extended, or hierarchical type. Distributed memory machines
may have hypercube or mesh interconnection schemes.

Is This Answer Correct ?    9 Yes 0 No


Question { 4178 }

Wats the name of the first os


Answer

Atlas I Supervisor

Is This Answer Correct ?    4 Yes 1 No

Question { Oracle, 11838 }

What is the difference between in-proc and out-of-proc?


Answer

An in-proc is one which runs in the same process area as
that of the client giving the advantage of speed but the
disadvantage of stability because if it crashes it takes the
client application also with it.Out-of-proc server is one
which works outside the clients memory thus giving stability
to the client, but we have to compromise a bit on speed.

DLL's are In-proc and EXE's are Out-of-Proc servers.

Is This Answer Correct ?    12 Yes 0 No

Question { 4196 }

what is the Need of zorder method?


Answer

Three graphical layers are associated with forms and
containers. The back layer is the drawing space where the
results of the graphics methods are displayed. Next is the
middle layer where graphical objects and Label controls are
displayed. The front layer is where all nongraphical
controls like Command Button, CheckBox, or ListBox are
displayed. Anything contained in a layer closer to the front
covers anything contained in the layer(s) behind it. ZOrder
arranges objects only within the layer where the object is
displayed.

Is This Answer Correct ?    0 Yes 1 No

Question { 9385 }

What is the difference between Msgbox Statement and MsgboxQ
function?


Answer

MsgBox is a built in VB function which displays a Message
Box and MsgBoxQ is a function defined by the user.

Is This Answer Correct ?    9 Yes 1 No

Question { 2974 }

Which property of menu cannot be set at run time?


Answer

Name Property

Is This Answer Correct ?    2 Yes 0 No

Question { 2871 }

What is wrong with the following code:
<%afname="header.asp"%>"?>


Answer

Will not work because ASP executes the #include directive
before it assigns a value to the variable.

Is This Answer Correct ?    0 Yes 0 No

Question { Persistent, 8005 }

How can I find out how much memory is available?


Answer

[root@server ~]# free
[root@server ~]# free -m

Is This Answer Correct ?    8 Yes 6 No

Question { 3820 }

Explain transaction atomicity?


Answer

Atomicity (database systems) is a property of database
transactions which are guaranteed to either completely
occur, or have no effects.

Is This Answer Correct ?    0 Yes 0 No

Question { TCS, 5252 }

What are the different compatibility types when we create a
COM component?


Answer

As follows:

No Compatibility
Project Compatibility
Binary Compatibility

Is This Answer Correct ?    4 Yes 1 No

Question { 3791 }

What are the Merits and De-Merits of CURL library ?


Answer

PHP supports libcurl, a library that allows you to connect
and communicate to many different types of servers with many
different types of protocols.
libcurl currently supports the http, https, ftp, gopher,
telnet, dict, file, and ldap protocols.
libcurl also supports HTTPS certificates, HTTP POST, HTTP
PUT, FTP uploading (this can also be done with PHP's ftp
extension), HTTP form based upload, proxies, cookies, and
user+password authentication.

Is This Answer Correct ?    4 Yes 1 No

Question { Wipro, 5456 }

Create a PHP web script with the following attributes: on
start, three HTML form elements are shown: an string input
field, a checkbox field, a dropdown/pull down list with 5
elements and a submit button. On submission, the form
should be redisplayed (while remaining all options/inputs
as the user has selected/entered them). Additionally, the
selections/inputs of the user should be displayed in text.
Please solve this without the use of any external
libraries.


Answer

This is the Script:

if (isset($_POST["submit"]))
{
$textBox = $_POST["textBox"];
$dropdown = $_POST["dropdown"];
$check = $_POST["check"];
echo "Form submitted.";
}
else
{
echo "Please submit form";
}
?>


" >


($check == "1") echo "checked" ?> />







Is This Answer Correct ?    17 Yes 1 No

Question { HCL, 6352 }

How to use the COM components in PHP?


Answer


Use Following Code :


$objCom = new COM(“AddNumber.math”);
$result = $objCom ->AddTwoNum(2,2);
echo $result;

?>

Is This Answer Correct ?    6 Yes 4 No

Question { Sify, 6905 }

How can I embed a java programme in PHP file and what
changes have to be done in PHP.ini file?


Answer

There are two possible ways to bridge PHP and Java: you can
either integrate PHP into a Java Servlet environment, which
is the more stable and efficient solution, or integrate Java
support into PHP. The former is provided by a SAPI module
that interfaces with the Servlet server, the latter by this
Java extension.
The Java extension provides a simple and effective means for
creating and invoking methods on Java objects from PHP. The
JVM is created using JNI, and everything runs in-process.

Example Code:

getProperty('java.version') . ''; echo 'Java vendor=' .
$system->getProperty('java.vendor') . ''; echo 'OS=' .
$system->getProperty('os.name') . ' ' .
$system->getProperty('os.version') . ' on ' .
$system->getProperty('os.arch') . ' '; // java.util.Date
example $formatter = new Java('java.text.SimpleDateFormat',
"EEEE, MMMM dd, yyyy 'at' h:mm:ss a zzzz"); echo
$formatter->format(new Java('java.util.Date')); ?>

The behaviour of these functions is affected by settings in
php.ini.
Table 1. Java configuration options
Name
Default
Changeable
java.class.path
NULL
PHP_INI_ALL
Name Default Changeable
java.home
NULL
PHP_INI_ALL
java.library.path
NULL
PHP_INI_ALL
java.library
JAVALIB
PHP_INI_ALL

Is This Answer Correct ?    4 Yes 1 No

 [1]   2   3    Next