Questions tagged [high-level]
57 questions
2
votes
3 answers
Low level capabilities of high level languages
I would like to know some low-level capabilities of high-level languages.
Off the top of my head I could point out:
-bitwise operations
-bit fields
-pointer arithmetic
-inline assembly
-interrupt functions
I would apreciate if you pointed out some,…

Vidi
- 183
- 1
- 1
- 9
2
votes
3 answers
Does a high-level language support all of the assembly languages related to all hardware?
I know machine language and assembly are specific to the hardware and different hardware involves different machine and assembly code, so Higher-level languages were invented to solve of these problems.
It might be very basic but i want to know,…

samira riazati
- 515
- 7
- 21
2
votes
1 answer
What do low level logic gates, multiplexers, and decoders correlate to in high level languages?
What are the purposes of/when are logic gates, multiplexers, and decoders used at the machine level?
For example, I would guess that logic gates are probably used at the machine level when a programmer uses an if statement in a high level…

CptSupermrkt
- 6,844
- 12
- 56
- 87
1
vote
2 answers
High level language to prototype your program?
What is a good high level language to prototype your program in for later optimization in c ( structurally similar in terms of function calls and stuff)?
Thanks.

WWen
- 23
- 2
1
vote
0 answers
How to add a metric summary to a canned tensorflow Estimator?
I want to run one of the TensorFlow metrics on my labels and Estimator predictions as a summary to display in Tensorboard. Is there an easy way to do this, or does it require defining a Custom Estimator and model_fn?

matwilso
- 2,924
- 3
- 17
- 24
1
vote
3 answers
I have a confusion when differentiating between Source code, Object code, Assembly code, and Machine code
I read every where that we write source code (High level language), the compilers converts it into a machine code (Low level language). Then i read that there is an assembler, which converts assembly code into a machine code. Then When…
user7631311
1
vote
0 answers
React Best Practices for Multiple Widget Application
I am looking to build an web application utilizing React/Redux to have multiple widgets (unknown number) displayed on the screen. Widgets may share data with each other, but in most cases the data per widget will be unique.
I was considering…

Aerole
- 105
- 2
- 10
1
vote
1 answer
Difference between "high-level" class diagram and "normal" diagram
I am a student and we have a Object-Oriented Project that we have to do to pass Object-Oriented course. My problem is to design the project. Teacher wants two different class diagram.Teacher said "One is high level, other one is normal class…

user119949
- 101
- 1
- 9
1
vote
2 answers
Apache Pig - Illustrate command error
]$ cat webccess.txt
mark,yahoo.com,6
sam,google.com,7
john,yahoo.com,3
patrick,cnn.com,8
mary,facebook.com,1
mark,yahoo.com,4
john,bbc.com,10
andrew,twitter.com,3
patrick,twitter.com,9
I am running below task in Cloudera Quick Vm Hue-Pig…

Green
- 577
- 3
- 10
- 28
1
vote
3 answers
Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library?
The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.

Soup
- 11
- 1
1
vote
4 answers
Any high-level, hardware-accelerated 3D engine?
I am programming in Flash for a long-time. It is interesting that most of the things, including open source libraries, are very high-level in the Flash world. It is great because we can build things up quickly. But Flash is too slow (I want to do CV…

Andy Li
- 5,894
- 6
- 37
- 47
1
vote
1 answer
How to "multithread" single table items that require long time to calculate, in PyQt?
I'm a real beginner in multithreading. This question is about high-level multithreading in PyQt.
Suppose that a table widget requires much time to be populated because of some single items, making the window unresponsive meanwhile.
So I imagine…

iacopo
- 663
- 1
- 7
- 22
1
vote
2 answers
Why isn't this true/false implication function working in SML?
val implies =
fn x y = case x of false andalso case y of false => true
| fn x y = case x of false andalso case y of true => true
| fn x y = case x of true andalso case y of false => false
| fn x y = case x of true andalso case y…

Chucky
- 1,701
- 7
- 28
- 62
0
votes
0 answers
High level pseudo-code to Low level pseudo-code
So if I was doing this pseudo-code high level it would be:
for i from 0 to n-1:
y[i] := x[i] * x[i]
What would it be in low level pseudo-code?
I've written the high level pseudo-code but I know you can't use 'for' loops in low level pseudo-code, so…

tylerjoseph21
- 1
- 1
0
votes
0 answers
Display URL as an image in Javascript
Basically I have a field called "Google Street View" which contains the URL of an image.
I would like to display that URL as an image, but I have 2 issues:
I can't modify the code of the site itself (i.e. adding img tags to the field), I can only…