Action Script | Flash | Flex | ColdFusion Answers

Questions: 296

Answers by our Experts: 143

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

A retail company must file a monthly sales tax report listing the total sales for the month, and the amount of state and county sales tax collected. The state sales tax rate is 4 percent and the county sales tax rate is 2 percent. Design a modular program that asks the user to enter the total sales for the month. From this figure, the application should calculate and display the following:
The amount of county sales tax
The amount of state sales tax
The total sales tax (county plus state)
In the pseudocode, represent the county tax rate (0.02) and the state tax rate (0.04) as named constants.
Write a program in java to calculate a result of student by the univercity for five subject coundition is
if marks is >=75 first division,
if 65 to74 then second division,
if 55 to 64 then third division,
if 45 to 54 then fail.some other condition is if student fail in one subject then reapear,
2 fail then fail.
I want project ideas in computer science.. I am a final year B.E. student.
What is dangling pointer?please explain with a suitable example!
I need to do a excel peoject for my intern position. I have datas and everything, How can I get help from you?? Please help! I need to get this done by shortly...
I have flex 3 application with loaded swf file. How can I simalate mouse click on my loaded swf on x y coordinates ?? On this x y point my loaded swf has a button. I need sumalate to click this button without real mouse click.
My code :<mx:SWFLoader id="content" ..../>
var newEv:MouseEvent = new MouseEvent(MouseEvent.CLICK, true, false, x0 , y0) ;
content.addEventListener(MouseEvent.CLICK, onMouseClick);
content.dispatchEvent(newEv);

function onMouseClick executed but my button on swf is not clicked !!!!

Thank you very much for any help.
A three-stage space-division switch with N=120 is used in a switched network. There are 12 crossbars at the first and third stages and 4 crossbars at the middle stage.

i) Draw the configuration diagram.


ii) Calculate the total number of crosspoints.


iii) Find the possible number of simultaneous connections.
(1 marks)

iv) Find the possible number of simultaneous connections if we use one single crossbar (120x120).

v) Find the blocking factor in iii) .


c) Redesign the configuration in Q1b) using the Clos criteria. Find n, k, the total number of crosspoints, and draw the configuration diagram.
Write overloaded prototypes of volumes(), a function that returns volumes of different structures.
Write three versions:
one for cube's volume that takes one float side of the cube,
one for cylinder's volume takes float radius and float height of the cylinder,
and one rectangular box's volume that takes float length ,float breadth and float height of the box.
the requirement:
The number of input integers (marks) should be at least 12 (meaning
counted 3 semester advanced standing from somewhere else) and at
most 30 including the failed mark and repeated mark of the same unit
(meaning you are automatically disqualified if you failed more than 6 units
during the course).

i have code following and i would like to know where to add arrays in this code?
import java.text.DecimalFormat;
import javax.swing.JOptionPane;
/**
*
* @author Acer
*/
public class Average2 {
public static void main( String args[] ) {
int gradeCounter, // number of grades entered
gradeValue, // grade value
total; // sum of grades
double average; // average of all grades
String input; // grade typed by user
// Initialization phase
total = 0; // clear total
gradeCounter = 0; // prepare to loop
// Processing phase
// prompt for input and read grade from user


input = JOptionPane.showInputDialog(
"Enter Integer Grade, -1 to Quit:" );
// convert grade from a String to an integer
gradeValue = Integer.parseInt( input );
while ( gradeValue != -1 ) {
// add gradeValue to total
total += gradeValue;
// add 1 to gradeCounter
gradeCounter += 1;

// prompt for input and read grade from user
input = JOptionPane.showInputDialog(
"Enter Integer Grade, -1 to Quit:" );
// convert grade from a String to an integer
gradeValue = Integer.parseInt( input );
}
// Termination phase
DecimalFormat twoDigits = new DecimalFormat( "0.00" );
if ( gradeCounter != 0) {
average = (double) total / gradeCounter;
// display average of exam grades
JOptionPane.showMessageDialog( null,
"Class average is " + twoDigits.format( average ),
"Class Average", JOptionPane.INFORMATION_MESSAGE );
}
else {
JOptionPane.showMessageDialog( null,
"No grades were entered", "Class Average",
JOptionPane.INFORMATION_MESSAGE );
}
}

} // end method main
// end class Average2
What is external documentation? What are the different forms it can take?
LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS