AJAX | JavaScript | HTML | PHP Answers

Questions: 323

Answers by our Experts: 213

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Determine the unit tangent at the point where t=2 on the curve
x=t2+1
x=t2+1
,
y=4t−3
y=4t−3
and
z=2t2−6t
z=2t2−6t

.If
A=5t2+tj−t3k
A=5t2+tj−t3k
and
B=sinti−costj
B=sin⁡ti−cos⁡tj

. evaluate
ddt(A⋅B)

If
A=5t2+tj−t3k
A=5t2+tj−t3k
and
B=sinti−costj
B=sin⁡ti−cos⁡tj

. evaluate
ddt(A×B)

If
A=5t2+tj−t3k
A=5t2+tj−t3k
and
B=sinti−costj
B=sin⁡ti−cos⁡tj
. evaluate
ddt(A⋅A)

If
A=sinui+cosuj+uk
A=sin⁡ui+cos⁡uj+uk
,
B=cosui−sinuj−3k
B=cosui−sinuj−3k
and
C=2i+3j−k
C=2i+3j−k

, evaluate
ddu(A×(B×C))
ddu(A×(B×C))
at u=0
Write a program that asks a user to enters pairs of numbers until they enter "quit". As each pair of numbers is entered and validated, add the numbers using a function. The function will have two parameters for the pair of numbers and will return the sum. After the user enters "quit", output all the pairs of numbers and their sums.
SQL SELECT DISTINCT Syntax
SELECT DISTINCT column_name(s) FROM table_name
SELECT DISTINCT table_name(s) FROM column_name
SELECT column_name(s) FROM table_name DISTINCT
SELECT DISTINCT column_name(s) FROM table_address
2 For numeric values, the correct statement is
SELECT * FROM Persons WHERE Year='1965”
SELECT * FROM Persons WHERE Year=”1965”
SELECT * FROM Persons WHERE Year='1965'
SELECT * FROM Persons WHERE Year=1965
Write an “active password checker” in PHP. The purpose of an active password checker is to prevent the user from selecting a password or password phrase that is easily guessed. This may be done by comparing potential passwords with a dictionary, examining the mix of characters selected, checking user information, and so on.
JS: /*Dynamically add two buttons on page load and these buttons should call getImage1Data and getImage2Data in the JS file. Please don't use any libraries.*/
6) Write Sample code for dynamically creating image tag for first image to the div.
7) Add background to right div with src from 2nd request to cover parent background.

JavaScript File :

function getImage1Data(){
var image1Src;
var xhttp = new XMLHttpRequest();
xhttp.open("Get", 'some Url', false);
xhttp.send(null);
image1Src = xmlhttp.responseText; //Assume src = 'myFirstImg.png', 200x200 px
}


function getImage2Data(){

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
getSrc(xmlhttp.responseText);
}
xhttp.open("Get", 'some Url', true);
xhttp.send(null);
}

function getSrc(text){
image2Src = text; //Assume src = 'myLastImg.png', 10x10 px
}
Write a simple web-based meal ordering system for a restaurant. The system should comprise of a HTML form with 10 selectable item, a PHP script for handling the form data and a MySQL database that stores the order when the customer submit the form back to the system. (Written Test Question)
Write a Servlet application that prompts the user for the midterm and final
grades and for output displays its Fall, Spring or Summer grades(Numerical and
letter) depending on the button pressed. Have a link to redo the problem.
Use he following formulas to compute the numerical grade:
if Fall: grade=(2*midterm + final)/3
if Spring: grade=(midterm + 2* final)/3
If Summer: grade=(midterm + final)/2
Write a program called dayofmonth.js that displays how many days are in the month for a given month and year. Use 2 (February) for the month and 2000 for the year.

See Sample Execution Below:

This program will determine the number of days in a given month.

Month (1-12) : 2

Year: 2000

There are 29 days in the month
hi,
I have project and I face difficulty to Prepare it ! I want your Help

Q:use all HTML tags (Basic HTML Tags, Images .Links,Lists,table Multtimedia,Frames,css) The Title Of project "Triathlon".
How to load script file in jQuery ?
I need to load the script only when button is clicked .
<script type="text/javascript" src="<%=request.getContextPath()%>/resources/jquery/jquery-1.9.1.js"></script>
<script type="text/javascript" src="${pageContext.servletContext.contextPath}/resources/js/jquery.slimscroll.min.js"></script>

I am unable to load the script file wen the button is clicked on actual page
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS