Other Programming & Computer Science Answers

Questions: 1 727

Answers by our Experts: 1 357

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

The Dash Cell Phone Company charges customers a basic rate of $5 per month to
send text messages. Additional rates are as follows:
l The first 60 messages per month, regardless of message length, are included in
the basic bill.
l An additional five cents is charged for each text message after the 60th
message, up to 180 messages.
l An additional 10 cents is charged for each text message after the 180th message.
l Federal, state, and local taxes add a total of 12 percent to each bill.

Design a flowchart or pseudocode for the following:

e. A program that prompts the user for a three-digit area code from which to
select bills. Then the program continuously accepts text message data until a
sentinel value is entered, and displays data only for messages sent from the
specified area code.
Data Format:

The data for this c program should be read from stdin (using scanf). The data "file" will include two types of commands, namely enqueue and dequeue. Each data record (think line of input if you like) will be either an enqueue or a dequeue command. In addition to the "command" each data record will include a time. Enqueue commands will also include a name. Below, I've included both an enqueue and dequeue command as they might appear in the data.

example of input:

09:14 enqueue Sweany

09:17 enqueue Mikler

09:19 dequeue



The program will maintain the queue and print a mesage (to standard output) for each command seen. One last specification on the data is that the times will be listed in ascending order in the data file/stream. Below is a copy of a data file followed by the associated output that your program should generate for that file.

example of output:

Sweany entered the Queue at 09:14

Mikler entered the Queue at 09:17

Sweany, who entered the Queue at 9:14, dequeued, receiving service at 09
Write a TCP client and server program in which the client send a structure which contains three fields command, roll number and name. If the command is ADD then the details roll number and name will be added to a file. After adding the current request the file is sent back to the client. Write a only the client program
HI, I am a student in college and I am taking a Computer Organization and Machine Language and we are using Assembly Language For x86 Processors. I need to do a lab assigned met , but I am stuck on it, I don't know how to start. can you help me?
The lab says,
" Create an array of characters
initialized that array to 'aaabcccbdddd'
Find out the first apperance of letter 'b' and display its location
In this case, the first apperance would be at number 4."
how do I code this? I am using Microsoft Visual Studio C++.
Write C and MIPS assembly programs to compute the product of two signed 32-bit integers.
Have your program accept two 32-bit integers from the user in hexadecimal format and dis-
play 64-bit result in hexadecimal format. No multiplication operations are allowed. Please provide also flow chart
I would like to know the different and / or similar security issue/s that are present in PHP, JSP and ASP.Net. I have canvased some answers already like JSP and ASP.Net "are as secure as you can program it to be." But I would prefer a bit more detailed answers. Thank you in advance! :)
How can i limit any user that connects to my home (3g) wifi network from downloading data? so that they are allowed to browse but not download? im not sure if i am on the wright place, but dont know any more where to look, please help.
function log()

{

if(document.getElementById('uid').value.length=="admin" && document.getElementById('pwd').value.length=="Admin"){

alert("Successfully logged in ");enter code here
window.open("customer.html");
}
else if(document.getElementById('uid').value.length=="manager" && document.getElementById('pwd').value.length=="manager"){

alert("Successfully logged in ");
window.open("customer.html");
}
else if(document.getElementById('uid').value.length=="driver" && document.getElementById('pwd').value.length=="driver"){

alert("Successfully logged in");
window.open("customer.html");
}
else (document.getElementById('uid').value.length=="customer" && document.getElementById('pwd').value.length=="customer"){
}

{
alert("successfully logged in");
window.open("customer.html");
}

}
User ID :
Password:
We can sort a given set of n numbers by first building a binary search tree containing these numbers (using TREE-INSERT repeatedly to insert the numbers one by one) and then printing the numbers by an inorder tree walk.
a. Write a pseudocode for this algorithm.
b. What are the worst-case and best-case running times for this sorting algorithm?
hi


in excell 2010


I want column A decomposition into prime number and then write result in column B


for example

A........................... B



12..........................2^2×3

13 .........................13

10..........................2×5

8...........................2^3

23 .........................23

30.........................2×3×5

............................. ......



please give me a vba code
LATEST TUTORIALS
APPROVED BY CLIENTS