ASP (565)
CGI Perl (498)
JavaScript (1409)
VB Script (599)
JSP (733)
Shell Script (465)
Tcl (27)
Awk (108)
AJAX (338)
Ruby on Rails (259)
AngularJS (2297)
jQuery (647)
JSON (175)
Node.js (721)
React.js (389)
Scripts AllOther (50) Write code for the following in ASP a)Display attributes of a file b) File copy c) get disk capacity.
2018while (my ($key, $value) = each(%ENV)) {
print "$key - $value\n";
}
What does the above sample code produce?
What function do you use for reading a list of files within
a directory?
my %hash = (
'hi' => {'hello' => 'all'},
'bye' => {'later' => 'gone'}
);
print $hash{'hi'};
What is printed when the above code is executed?
sub new {
my $pkg = shift;
my $test = {'name' => shift;};
????
return $test;
}
Which one of the following replaces "????" in the above
code in order to cause the function new to return an object
of type "Test"?
while (
1.Write a script, which converts a number from binary to hexadecimal format or vice versa.
ADP,
1 56911.I want to establish connection with excel and also want to fetch the data using SQL queries. 2.the code should be written in such a way that in future if I want to migrate from excel to MS excess database , then there should be minimal changes.
2004Is it possible to build a 50% bespoke e-commerce platform hence having the ability to customize everything down the line? For example would it make sense to start coding an application on the Ruby on Rails framework but where the most complex/time consuming code pieces (e.g. shopping cart, etc) can be initially bolted on (hence diminishing development time and cost) having the ability to change them completely further down the line?
1 3606
Is JavaScript a true OOP language?
Event bubbling and Event Capturing in JavScript?
What is this? Var myarray = [[[]]];
What is the purpose of jsp?
What is the difference between $(window).load and $(document).ready?
What do you mean by script?
What will happen with click of browser "back" button among asynchronous requests?
What is auto-flush attribute?
Consider the following code: 1 2 3 4 5 (function() { var a = b = 5; })(); console.log(b); what will be printed on the console?
How will you find the 99th line of a file using only tail and head command?
How to create custom pipes in angular 2?
What is node red used for?
What are decorators?
Is javascript case sensitive language?
What is a scriptlet in jsp and what is its syntax?