It totally depends on yourself. Java and C have different scope and use cases in the industry.
Java is Object-oriented programming language, which follows a bottom-up approach. Whereas C is a procedural programming language and follows a top-down approach.
C is used to - Design system software, evaluate mathematical equation, embedded system, develop application software, graphical application, etc.
Java...
User Profile
Collapse
Profile Sidebar
Collapse
dukool sharma
Last Activity: Apr 22 '19, 10:15 AM
Joined: Dec 7 '18
Location:
-
SQL limitations
Why do we use SQL limitations? Which constraints can we use while making a database in SQL? -
How can I create an empty NumPy array in Python.
Can you explain me different ways to create an empty NumPy array in Python. -
We have so far seen them used together. But they have subtle differences:
SciPy encompasses most new features
NumPy does hold some linear algebra functions
SciPy holds more fully-featured versions of the linear algebra modules and other numerical algorithms
NumPy has compatibility as one of its essential goals; it attempts to retain all features supported by any of its predecessors
NumPy holds the array...Leave a comment:
-
The answer here is no. The modules with circular references to other objects, or to objects referenced from global namespaces, aren’t always freed on exiting Python.
Plus, it is impossible to de-allocate portions of memory reserved by the C library.Leave a comment:
-
-
Not a tuple. This gives us a plain integer.
>>> type(b)
<class ‘int’>
To let it be a tuple, we can declare so explicitly with a comma after 1:
>>> b=(1,)
>>> type(b)
<class ‘tuple’>Leave a comment:
-
How can I implement a thread-safe JSP page?
In what ways I can implement a thread-safe JSP page? -
Can you create A button object as Button bt = "abc" ;? If yes, how?
When you’ll create A String Object As String Str = “abc”; Why can’t A Button Object be Created As Button Bt = “abc”;? Justify.
No activity results to display
Show More
Leave a comment: