Questions tagged [high-level]

57 questions
0
votes
0 answers

How to stop multiple threads (Tasks) from an external REST API call?

So what I am dealing with here is a pretty complex server application that performs quite a long, complex and lengthy operation involving a number of threads and a number of tasks (yes, some are created as Tasks and some are "manually" created…
MichaelEr
  • 75
  • 2
  • 8
0
votes
1 answer

How do high level languages [eg: c#, javascript, python....] create arrays

In low level languages you have to give the length of the array upon creation but in high level languages you don't, so how does it work? How does the computer create the array in a manner to prevent memory collisions and what happens if it collides…
bosdos12
  • 11
  • 1
  • 6
0
votes
2 answers

Translate "let static 2 = argument 1" to VM code

Translate "let static 2 = argument 1" to VM code. VM code (the answer): push argument 1 pop static 2 My question Aren't we forgetting let. Shouldn't we push another argument 1 to the stack, and then pop it to local 2 too? In order to preserve the…
xing Zì
  • 391
  • 4
  • 16
0
votes
2 answers

Software/Application High Level Design

What are the standards or recommendations for developing a high-level design of an existing software/application? Are there any reference guidelines that one can follow to build a high-level design? So that all the stakeholders understand the design…
0
votes
3 answers

UML High Level Class Diagram

can somebody please explains what is a high level class diagram. As far as I know class diagram shows the association between the classes but what about high level class diagram??
Noor
  • 19,638
  • 38
  • 136
  • 254
0
votes
3 answers

Using the random() in LiveCode

I have an issue with using the random defined function in livecode. Here is a code snippet: // 97 -> 122 = lower case... put random(97,122) into randASCII The program is to create an order number, the order number consists of the first character…
0
votes
1 answer

High-level server library for sharing data over network

I'd like to implement something similar to Etherpad - an online collaboration program. Do you know of a library for the server that takes care of incoming connections, manages a user list and distributes structured data between them? DRb is near to…
blinry
  • 4,746
  • 4
  • 26
  • 31
0
votes
5 answers

High-level level language for image processing

My final year project group is planning to build a real time application with neural network support and need to handle image processing efficiently, Any language suggestions would be very much helpful. Thanks.
0
votes
0 answers

Programming with HLA

I have been wanting to program with Assembly for a while now, and have finally found myself a good way to start getting involved with it. I read a little bit on the "High Language Assembly" standard library, however, I have no idea how to start…
Keto Z
  • 49
  • 1
  • 7
0
votes
2 answers

Understanding low-level abstraction

I have started programming in Java this year. I understand the high level concepts and feel comfortable programming. However I seem to keep asking me how does all of this work internally? I understand that Java is a high-level language especially…
0
votes
2 answers

What application virtual machines are written in high level languages?

What application virtual machines are out there that are written in higher level languages? C/C++ looks like the languages of choice (for obvious reasons). What I have found on google is at least two written in Java (both meta-circular) : JikesRVM…
user95947
0
votes
1 answer

Harvard Architecture maps to HLL

This is a question I have been searching for a while but I have not got a proper answer yet :( How does the Harvard Architecture map to C/C++ languages (High Level Languages)? How are they related or how does the architecture help HLLs?
0
votes
1 answer

The right diagram/chart for high level design showing high level flows

I was given the task of producing high-level design documents, describing flows of a new development project. The project's specifications contains a few flow-charts of the project's use cases. These tend to be packed with data, including branches…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
0
votes
5 answers

Difference between setting variables through methods and setting actual variable

I'm not experienced in programming, but I was wondering what the difference was between setting a variable through a method. Ex: void setShowFPS(boolean b){ this.showFps = b; } vs. just calling the variable showFps = false;
waco001
  • 61
  • 1
  • 2
  • 10
0
votes
1 answer

Solicitation for suggestions on writing a purely hobbyist rendering engine

I've created something of a simplistic renderer on my own using OpenGL ES 2.0. Essentially, it's just a class for rendering quads according to a given sprite texture. To elaborate, it's really just a single object that accepts objects that…
Joey Carson
  • 2,973
  • 7
  • 36
  • 60