433 Solved Topics
Remove Filter ![]() | |
Hi im doing bachelor degree of science IT. Now im in da final year n searching for a topic for my Final year project.I interested to develope a system using PHP but i still did not come out wif any idea, the previous idea that i give to my supervisor … Computer Science | |
Can anyone help us in our thesis? Our topic is about encryption, but we are still thinking what encryption application we would be working.Can someone give us any idea? Thanks. Computer Science encryption | |
Given the degree of the polynomial and a vector with the polynomial's coefficients is there a more efficient way to recursively calculate the polynomial result for a given x? This is what i have tried, and it works, but I am asking if there is a more efficient way to … Computer Science mathematics | |
hieeeeee.... i m a TYBSc computer science student... N i want 2 make LIVE project for my last year xams... n i m still confused wat 2 do n hw 2 do????? i have 2 do d things using JAVA or .NET lang. as my project lang. plzzzzzzzzz HELP:'(:-/ Computer Science | |
I'm trying create a system flowchart which shows ms access as the database. I'm going to create a patient database and a invenroty database and a few others. I believea system flowchart does not show individual programs but rather the computer devices that make up the system and the basic … Computer Science | |
I'm studying for an exam and need to see if my answers for the following question is correct. Give the bigO estimate for each code fragment in terms on n. method L has method signature void L(int n) & has execution time complexity of O(n). method C has method signature … Computer Science | |
Hi. I am programmer who works with c# and c++. These languages are really powerful but when it comes to controlling memory I can never do what I want to do. I want to know if there's a lower level languge (or a way to do this with c# or … Computer Science | |
Hi guys, I'm doing a dissertation on the skills necessary to do a CS degree, within which I'm going to design a website that assesses prospective CS students and their ability to cope with the harder more technical and analytical skills. I'm basically just looking for some experienced perspectives, brainstorming … Computer Science client-server database-design | |
Guys help me 3 of my thesis proposals were rejected and i can't think of a better one now Here are my topics: 1. Multiple CP brand PC Suite 2. Music Composer 3. Facial Recognition Our professors want us to focus on networking, online systems, or database. Please help me. … Computer Science | |
EDIT: This was moved from the Java discussion forum. It seems more appropriate to post it here. This is not exactly a homework assignment. I'm just doing it for fun ^^ Hey guys. I am currently just a 11th grade student but since I'm done the whole curriculum for my … | |
Hello All, I came across a question wherein I need to find an element in the array.However, it's given that the array has been rotated many number of times and initially the array elements were sorted in an increasing order.I just wanted to know what is meant by rotating an … Computer Science | |
hello, I have developed a file compression tool using zlib compression library. As the zlib use the deflate and inflate process, does the size of the file effect compression ratio? If it has effect, what is the reason? Thank you. Computer Science | |
Hello, Everyone. I want to get opinion in developing software project. I will be studying Oracle and will need to do a project using Oracle. Can anyone give any idea on what project I can do. It doesn't matter what language to be used as long as it used Oracle. … Computer Science oracle | |
I can write the recursion version correctly need help with writing a do loop in DrScheme. After the do loop the variable x is sent to car L intially and then is updated to first element of everything but first element in list. [CODE] (define (sumiteration L) (do ((x (car … Computer Science | |
I was going to post this in the linux/unix board, but there is no 'start new thread' button. Why is that? Anyway, I'm going through a ton of steps to apply a patch file. Everything in the patch file seems to apply seamlessly, with one exception. My patch file is … Computer Science unix | |
The obvious way to compile a while-loop is with a conditional branch at the start and an unconditional branch at the end to loop back. Suppose the condition is A>B, then a conditional branch at the end testing A<=B will fall through when the loop is done, instead of jumping … Computer Science | |
Hi All, I was wondering if you could advise me on what books/resources to use to learn some aspects of computing that really interest me. I would like to get more information on creating an IDE. Obviously at this point, I am not talking Netbeans or the like, but an … Computer Science engineering ide | |
Guys i am looking forward to do a project for my final year and i have chosen SUPPLY CHAIN SYSTEM as detailed below i am now looking forward for ideas and suggestions. here is what i am thinking to do. i what to have a web based inventory system that … Computer Science | |
I need help in determining,using Big-O notation, the upper-bound for these two algorithms i wrote. They both do the same thing but are coded differently. They both look for all the prime numbers up to some limit, N. This first algorithm: [CODE] public static void algo1(){ primes = new int[n]; … Computer Science programming-construct | |
[CODE]function projection($x1, $x2, $x3){ //$x1 = first year //$x2 = second year //$x3 = last year if (($x1 != "") ||($x1 != 0) && ($x2 != "") ||($x2 != 0) && ($x3 != "") ||($x3 != 0)){ //MODIFIED EXPONENTIAL $b = ($x3-$x2)/($x2 - $x1); $a = ($x3 - $x2) / … Computer Science | |
Please help me! What is the time complexity of modified exponential projection? The equation is: population = C + AB^time this is used to project the population for the next years Thank you! Computer Science | |
what is the time complexity of a decision tree algorithm? using if then else statement thank u! Computer Science algorithm | |
[CODE]$k2 = $subject_k2/40; $j2 = $subject_k2%40; if($j2 >= 15){ $k2 = $k2 + 1; }[/CODE] what is the time complexity of the above code? thank u! Computer Science | |
So here is the algorithm I am trying to design...i'm not sure it will make any sense. I have a sequence of n numbers(in ascending order). I have an another number 'x'. If i have 2 chances to compare x with a number greater than it but unlimited chances to … Computer Science web-design | |
for a program that tries to dtermine how many votes are in each congressional district. the program reads records that each contain a name., a Social Security number(nine digits, no non-numeric characters), and a district number from 1 to 7.the records should be read until the end of the file. … Computer Science | |
Hello, I am having problems with some text string errors in my code. Any help would be appreciated. Here is a snippet of my code. [CODE]clear all value = input(['Please enter a positive real numerical ' ... 'measurement of volume:']); initial = input(['Please select a starting measurement unit' ... 'from … Computer Science | |
Greetings, So, I've studied sockets, and studied TCP, and enjoy a beginner-intermediate understanding of each. However I desperately need clarification regard some fundamental concepts. Any help would be greatly appreciated: 1) Do sockets implement TCP? When I uses a socket to send data to another computer, are the computers using … Computer Science user-interface | |
![]() | What I need to do is grab information in an "internet-station-control" program (NetTime) I have on my pc (The server) that tells me whether or not the user has used up their minutes on the internet-station connected to my pc (The server) that I'm running the program from, then run … Computer Science ![]() |
Hello! I am need help with this code I am creating. The object is to read from a file with variables horizontal (horizontal axis data) and vertical (vertical axis data). I can't seem to figure out how to indicate the minimum point with a red open circle and the max … Computer Science | |
write a pseudocode to read a sequence of numbers terminated by 777. the pseudocode should count and print the number of negative values and zero values. the algorithm should also print the product of the positive number. Computer Science algorithm | |
I recently unrolled an insertion sort and on 60 items it was twice as slow as the looped version. I'm guessing that's because it was too big for the instruction cache, being 1032 KB. First, does that seem a likely explanation? If so, to avoid that problem, do I just … Computer Science | |
What I've learned so far: An OS may trigger a software interrupt by executing a system call. According to what I read online, this is implemented via special instructions such as INT that the CPU can execute. I also understand how interrupts get handled by the interrupt service routine. My … Computer Science os-x | |
My book says that interrupt chaining is a "compromise between the overhead of a huge interrupt table and the inefficiency of dispatching to a single interrupt handler." I understand how the interrupt vector table works & why dispatching to a single interrupt handler is worse than choosing from an array. … Computer Science | |
send me the algorithm used in artificial passenger device? algorithm used in brain fingerprinting? its urgent plz send me at the earliest. Computer Science algorithm | |
Hi: Among the following technologies what you consider is the best tool for a developer to achieve more and best payed works? php - css - wordpress - .NET - ActionScript - ajax - android - asterisk - C# - c++ - css - Delphi - drupal - flash - … Computer Science actionscript android delphi flash oracle postgresql ruby visual-basic wordpress xml | |
SO it says given the follwing relations father (X,Y) says that X is the father of Y mother (X,Y) says that X is the mother of Y female(X) says that X is female male(X) says that X is male Define a sister relation so that sister(X,Y) says that X is … Computer Science | |
In my Operating System lectures, we were taught various scheduling algorithms like FCFS, Shortest Job first, etc. In Shortest Job First, the scheduler is supposed to execute the processes with the least amount of burst time first. My question is: How does the scheduler calculate/estimate the burst time/execution time of … Computer Science operating-system | |
hi friends i have a project about e-tranction interface in which it will maintain many bank's details and each user may add many bank details and they can make online money transfer . if any one knows any details... please reply me... Computer Science user-interface | |
I am implementing BFS, A*.... I got confused by all the terms used in the books. Like, what would be th difference between a search node and a state node, or a search tree and a search graph? I have two files as input, a nodes file (coordinate with id … Computer Science | |
what happens if a context switch happens while the cpu is executing instruction X will instruction x be restarted? Computer Science | |
Hi Everyone, I am currently doing T.Y.Bsc (Computer Science). I have to do 2 live projects. One in software development and other of website creation. Can you help me get the project? OR are there any web services where I can get the project online?:?: Computer Science | |
One aspect of computers that I just don't find clear learning material on is networking. There seems to be loads of information on 'how to' but I still don't understand the underlying basics. What is meant by a Port? Why are ports numbered so strange (as in, not 1,2,3). I … Computer Science ubuntu | |
Would it be of interest to learn C or C++ if one already know python? I'm a linux and programming enthusiast (i.e hobbyist ;-) ) and C is pretty common on linux and many other applications. But is it worthwhile learning C if I already know python? What are the … Computer Science python | |
If I was using @$ as my flag pattern (to signal the end of the data) what would I do if @$ was seen in the data? I would just stuff another @$ right after it in the sender and in the receiver, if I saw two consecutive @$ I … Computer Science | |
"To verify that discrete sinusoidal and complex exponential signals have distinct frequency only in an interval of length 2π. Furthermore you have to verify that the frequency of discrete sinusoidal signal increases as we move from 0 to π and decreases when we move from π to 2π. You have … Computer Science | |
[B][COLOR="Red"]a multilevel index using a B-tree is to be made for a file with 600,000 records. A block contains 1500 bytes, a key is 10 bytes, a pointer is 5 bytes and a data record is 100 bytes. [/COLOR][/B] [B]a)What is the order of the tree?(assume tree node=a disk block)[/B] … Computer Science | |
I was wondering if any one had any suggestions for areas to research which tie with Artificial Intelligence. My interest is AI but since I haven't taken a class in AI. I can't do a project in that. Computer Science | |
How do kernels work on different systems when hardware can be so different? For example, how would the kernel work when the graphics card of a PC is changed? Computer Science | |
Hey, I'm new to the site and also newbie in time complexity subject. I've read plenty of theoretical approaches and also some examples but I'm still having quite some troubles with determining time complexity of some of my algorhytms, especially recursion. It is quite a delicate thing so I would … Computer Science |
The End.