Hi
I have a homework that I can not understand this part of that would you please help me ? thanks
List the average balance of customers by city and short zip code(5 digits of zip code)
ive created a single user dungeon which i would like to create into a multi user dungoen so at least two plays can play how would i do that what code do i need to add can anyone help?
i would show coding but if i do then everyone would see it and all my work will be copied as i know other students do use this site to so plz understand my situation…
Yes this is a homework/lab assignment.
I am interesting in coming up with/finding an algorithm (I can comprehend :P) for using "backtracking" to solve the subset sum problem.
Anyone have some helpful resources? I've spent the last hour or so Googling with not much like finding something I think I could actually use. xD
Thanks SO!
I'm implementing an FTP-like protocol in Linux kernel 2.4 (homework), and I was under the impression that if a file is open for writing any subsequent attempt to open it by another thread should fail, until I actually tried it and discovered it goes through.
How do I prevent this from happening?
PS: I'm using open() to open the file.
I have a homework assignment with a number of questions. One is asking why the strcpy() function doesn't need the call by reference operator for CStrings. I've looked through the book numerous times and I can't, for the life of me, find the answer. Can anyone help explain this to me?
It is an array of sorts so I would think you would need the…
I have a client server situation in which I receive data using
read(socket, char_buf, BUF_SIZE)
and then try to write it into a log file using
write(filefd, char_buf, strlen(char_buf))
Strangely enough this fails (write returns -1), and yet the errno is set to 0, and I can print the message, AND the log file descriptor works (I write to…
What is the maximum rated bandwidth for ZigBee?
I can't seem to find this information anywhere, not even on the ZigBee Alliance website at http://www.zigbee.org/ I did find some information elsewhere, but it dated back to 2004, so I'm guessing it's different now that it was 5 years ago. Thanks!
Yes, this is a school question, and yes I already know the correct possible answers (supposedly), so I'm not going to bother posting them. Instead, I just want to understand the meaning of this question. I know what class B addresses are, and what valid class B subnet addresses are. I guess one way to define my question is to ask why the…
Hi all :
I am preparing for a Linux terminal assessment now, I tried to Google and found most resources are referring to the basic "grep" rather than the more powerful "egrep" -- well, that is at least what the professor said in lecture.
I am always working with small samples so performance tuning is a thing too far away.
So basically…
Hello everyone,
I'm in the process of making a script to automate DFS creation and replication for an exam I have next week.
So, assuming I have a namespace:
dfsutil root adddom \\Foo\bar 'My namespace'
And I have a link:
dfsutil link add \\Foo\Bar\CoolStuff \\Server2\CoolStuff 'Neat stuff'
How can I use the command line to…
What will happen in the following scenario (assume the connection is already established):
(stack A) send 10 byte data
(stack B) send ACK for 10 byte data
(stack B) send 200 byte data
(stack B) send 100 byte data
(stack B) send 50 byte data
(stack A) send ACK for 350 byte data and also send 70 bytes data
This segment gets lost…
Hi all,
Can anyone explain or give me some example for the reason why we start subneting using the largest subnets first? What are consequences of opposite approach?
I try to open a word document in my web application. It opens fine on localhost, but now I am publishing my web application on a server.
Users that access the published web application (like http://10.0.23.57/StandardOperatingProcedure/Default.aspx) can not open the word document on their system.
winword.exe opens on the…
Hello all I'm new at the site, and I have a question. I got this question at a test and really like to know the correct approach to solving this problem?
Here is the question.
In an indexed filesystem the first indexblock (inode) has 12 direct pointers and
1 pointer to an indirect indexblock. The filesystem is…
In one rotation, how many sectors are passed over and how many tracks are passed over?
If you know the average value of sectors per track for a hard drive, how do you use this to estimate the number of cylinders?
Do all modern hard drives have 63 sectors per track? Are there any hard drives that have more than…
Hi all:
This is uni homework so sorry about :my password protected url
Please enter usersame as "uts" and password as "10479475", without the wrapper quotes.
It it almost completed, please follow simple steps to see where my problem dwells:
step1: click on any continent highlighted on world map;
step2:…
Hi All,
I got this homework. And have solved it in following way. I need your comments whether it is a good approach or I need to use any other data sturcture to solve it in better way.
public string ReturnCommon(string firstString, string scndString)
{
StringBuilder newStb = new…
Hi guys - i was hopefully after some tips opposed to solutions as this is homework and i want to solve it myself
I am firstly very new to C. In fact i have never done any before, though i have previous java experience from modules at university.
I am trying to write a programme that converts a…
This is not a homework.
I saw this article praising Linq library and how great it is for doing combinatorics stuff, and I thought to myself: Python can do it in a more readable fashion.
After half hour of dabbing with Python I failed. Please finish where I left off. Also, do it in the most…
This is not a homework.
I saw this article praising Linq library and how great it is for doing combinatorics stuff, and I thought to myself: Python can do it in a more readable fashion.
After half hour of dabbing with Python I failed. Please finish where I left off. Also, do it in the most…
Hey, I have almost no experience with Xilinx. I have a group project for a Digital Logic course that is due soon, where my partner, who was supposed to take care of the Xilinx simulations decided to bail on me. So here I am trying to figure it out last minute.
I have designed a synchronous…
Note:
Following is my homework/assignment, feel free not to answer if you will.
I want to delete/remove an element from an String array(Set) basic, I'm not allowed to use Collections..etc.
Now I have this:
void remove(String newValue) {
for ( int i = 0; i <…
I'm working on a homework assignment (a project), for which one criterion is that I must make use of polymorphism in a way which noticeably improves the overall quality or functionality of my code.
I made a Hash Table which looks like this:
public class HashTable<E extends…