1
vote
3answers
58 views
nested looping in python
in a string suppose 12345 , i want to take nested loops , so that i would be able to iterate through the string in this following way :-
1, 2, 3, 4, 5 would be taken as integers
12, 3, 4,5 as …
0
votes
0answers
56 views
c++ m bits permutations of a number
Hi,
I am searching for a function that get as an input a number x (assuming 15), number of bits d (4) and number of permutations m (2). The output of the function will be all the numbers that are m …
0
votes
4answers
73 views
Implementation of file “save” like Notepad
Hi Experts,
I want to create a text editor (using java/swing) like notepad. For this I need the implementation of saving file. mean if the user clicks on "save" first time then the dialog should …
0
votes
1answer
31 views
Random Characters in pseudocode
My assignment is to create in pseudocode a module that accepts a 200 element array of alpha characters. How do I write the code to choose the 200 characters at random and put them in an array?
My …
-4
votes
0answers
40 views
4 QUESTIONS ON CORBA. [closed]
The CORBA specification mandates certain requirements for CORBA-compliant ORBs. Which of the
following is one of these requirements?
a. Supports IIOP
b. Supports DCE
c. Supports HTTP
d. Provide an …
0
votes
7answers
62 views
How do I use an IF statement with a condition from variableOne through VariableTwo?
I'm having some trouble finding unique entries in a record set. This is what I have so far.
function project5Part1() {
// Variable Declarations
var zipCode;
var outputDiv;
var records;
var i;
var …
0
votes
3answers
132 views
How do I implement pushdown automaton in C#?
I want to code this for PDA. How would I do that in C#?
a^nbc^n (n>=0)
0
votes
7answers
327 views
try and catch statements in java?
how can i rewrite the following method using try and catch statements instead of the throws clause in the method header:
public String getInput(String filename) throws Exception
{
BufferedReader …
-2
votes
4answers
154 views
the speaker interface [closed]
i have a class Student that implements speaker interface in java
public interface Speaker {
public void speak();
public void announce (String str);
}
how can i use these two abstract methods …
-14
votes
0answers
130 views
floating double [closed]
how can i create an array of random double floating point numbers.how can i also calculate and print the sum of all numbers of the array.how can truncate all of the numbers of the array the 7 decimal …
1
vote
4answers
99 views
concurrency in threads and synchronization
Transaction processor is a part of switch which is used for banking job.(shown in picture below)
![alt text][1]
which aspects of this part should be considered in designing?
I mean concurrency …
0
votes
1answer
36 views
A little help with basic sprite stuff
Hi, I'm a design student and I'm at the end of my Web design I course. I'm working on my final site, but I'm having trouble with sprites (something we went over in one class, which I followed, but now …
3
votes
4answers
178 views
How to make the bytes of the block be initialized so that they contain all 0s
I am writing the calloc function in a memory management assignment (I am using C). I have one question, I wrote the malloc function and thinking about using it for calloc as it says calloc will take …
-1
votes
5answers
92 views
a query controlled loop in java
how can i write a query controlled loop that will continue to input int values from the user,adding each to the value sum,and then ask if the user has another value to input,until the user says that …
-7
votes
5answers
210 views
try and catch in for statements
how can i rewrite the following code using try and catch statements,catching any exceptions that might be thrown
for (j=0; j<limit; j++)
{
x=Integer.parseInt(keyboard.readLine());
y[j]=1/x;
…
