Tagged Questions

-1
votes
3answers
90 views

How to do a tree structure in C

I'm a very beginner in C. However, I need a program that solves a problem for me. How can I do the following? I need a tree structure. This is not traditional tree as every leaf can have various many …
1
vote
17answers
660 views

How to print 1 to 100 without any looping using C#

I am trying to print numbers from 1 to 100 without using loops, using C#. Any clues?
2
votes
5answers
118 views

SQL Query problem

Consider two table.Employee and Project.Employee table has fields like eid,ename.Project table has fields like pid,pname.Now,since an employee can work on many projects and a project can be done by …
0
votes
2answers
19 views

SQL Plus - Alias type question.

I need to find the book code and book title for each book whose price is greater than the book price for every book that has the type 'HOR'. My table looks like this CREATE TABLE BOOK ( BOOK_CODE …
0
votes
5answers
99 views

why it returns null password???

In my Generator class ,I make a new password and also I have a SystemManagements class which imports Generator class (it is in the other package) and I have some information like name and family of …
-1
votes
7answers
192 views

please explain this line of code

please explain whats happening in this line of code . specialy what is args[0].tocharArray char[] password = args[0].toCharArray();
1
vote
1answer
71 views

Overflow bit 32Bit ALU VHDL

Hi folks, I'm currently writing a 32Bit ALU (Add/Sub) in VHDL. I've got a problem with the overflow bit. I can't see when to set the overflow depending on the operation (addition, subtraction) and …
0
votes
4answers
138 views

C# validation of input

I am creating a short c# console program that will ask 10 addition questions using random numbers from 0-10. Then it tells the user how many correct or incorrect. I am trying to find a way to …
2
votes
7answers
180 views

C#: How to generate an instance of an unknown type at runtime?

i've got the following in C#: string typename = "System.Int32"; string value = "4"; theses two strings should be taken to generate an object of the specified type with the specified value... …
2
votes
5answers
280 views

Does TDD really stop gold plating?

Questions that I want answers for... 1) Propose one or more mechanism, which could be used to extend TDD to estimate the level of gold plating that exists in an arbitrary Java program. 2) What …
0
votes
5answers
82 views

finding cycle of 3 nodes ( or triangles) in a graph

hi all, i am working with complex networks. I want to find group of nodes which forms cycle of 3 nodes ( or triangles) in a given graph. As my graph contains about million edges, so the use simple …
0
votes
5answers
162 views

java int comparation

How does Java know/evaluate the comparison of two int values; for example: int a=5; int b=10; How does it evaluates whether a > b or a == b or a < b Please give an elaborate explanation.
-4
votes
2answers
121 views

How would I implement a team payroll with built-in salary cap [closed]

For each player imported from a file, before the player is added to the team's roster, their salaryCapFigure will be added to that team's Payroll. If the Payroll is greater than the salary cap, the …
0
votes
1answer
88 views

Proving f (f bool) = bool

How can I in coq, prove that a function f that accepts a bool true|false and returns a bool true|false (shown below), when applied twice to a single bool true|false would always return that same value …
0
votes
1answer
61 views

Tree like data structure

Hi i am working on a problem and could do with some help, i am working in C#. What i'm trying to do is create a data structure as follows: I need to layout out item with x and y co-ordinates on a …