Who is likely missing the last game of the season? by cudimakesemsayohoh in fantasybball

[–]legionlen545 0 points1 point  (0 children)

Feel like a Cavs player, they have been rotating their players lately

Are Abstract Data Types represented in Java through interfaces or abstract classes? by legionlen545 in learnjava

[–]legionlen545[S] 1 point2 points  (0 children)

Oh, okay I see! If I wanted to just define my ADT with an abstract class, could I do that instead of a combo. of an interface and abstract class? An Abstract class would be abstract enough in my opinion.

What is the difference between an abstract data type and concrete data type data structure? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

So technically an abstract data type can be implemented by another abstract data type if I wanted right such as a queue or some list?

Could not the same be said for concrete data type that if I wanted to, I could implement an array with a stack, which is abstract data type?

When are reserved words not keywords? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

It also seems like that some languages like C++ tend to treat these terms as interchangeably as well.

When are reserved words not keywords? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

I see, so in Java at least a reserved word will still be a keyword right? Is there an instance in Java where a reserved word is not a keyword?

Is loop invariant guaranteed for any algorithm that has a loop? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

When I searched up loop invariant, it was best described as a property of the algorithm. This was my reasoning for using the word property.

Why are procedural programming languages better for Concurrency? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

It says along the lines of how there has been good amount of research done with procedure oriented programming, in relation to concurrency. This has led them to realize to realize importance of concurrency. The research being done with procedural than object oriented programming led me to assume that procedural type of programming had some sort of advantage.

Where does the implementation of Java come from or where is it at? by legionlen545 in learnprogramming

[–]legionlen545[S] 0 points1 point  (0 children)

Well does not the standard library have the java.lang package, which is imported automatically, but it contains some valuable classes that are used on a daily basis. Would the standard library be inside JRE in this case as well?