Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
65% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
4
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
3 Commented Posts
0 Endorsements
~5K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for Harshali_1

Followings are caused by Recursion in Python: * It can lead to consuming more time for calling a Function. * Needs more function calls. * Each function call stores a state variable to the program stack- consumes memory, can cause memory overflow.

Member Avatar for sritaa
0
512
Member Avatar for dukoolsharma

It is because behind each swing part there are several Java objects and resources. This takes time to make them in memory. JDK 1.3 from Sun has some enhancements which can result in quicker execution of Swing applications.

Member Avatar for HimaniBansal
-1
316
Member Avatar for HimaniBansal
Member Avatar for Sheetal_1

A deep copy copies an object into another. This means that if you make a change to a copy of an object, it won’t affect the original object. In Python, we use the function deepcopy() for this, and we import the module copy. 1. >>> import copy 2. >>> b=copy.deepcopy(a) …

Member Avatar for sritaa
0
353
Member Avatar for Sheetal_1

"Following are the file-processing modes that will help you- * read-only – ‘r’ * write-only – ‘w’ * read-write – ‘rw’ * append – ‘a’ You can open a text file with the option ‘t’. So to open a text file to read it, you can use the mode ‘rt’. …

Member Avatar for HimaniBansal
0
508
Member Avatar for HimaniBansal
Member Avatar for JamesCherrill
0
421
Member Avatar for HimaniBansal
Member Avatar for woooee
0
478

The End.