Core Java - Interview Questions and Answers for 'Code segment' - 3 question(s) found - Order By Newest Q1. Which are the different segments of memory ? Core Java
Ans. 1. Stack Segment - Contains primitives, Class / Interface names and references.
2. Heap Segment - Contains all created objects in runtime, objects only plus their object attributes (instance variables), Static variables are also stored in heap.
3. Code Segment - The segment where the actual compiled Java bytecodes resides when loaded Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  java   memory   memory management   stack memory   heap memory   code segment memory   advanced Asked in 9 Companies expert   frequent Try 6 Question(s) TestRelated Questions What are different ways to create String Object? Explain. Does garbage collection guarantee that a program will not run out of memory? Describe, in general, how java's garbage collector works ? Describe what happens when an object is created in Java ? What are various types of Class loaders used by JVM ? Why two types of memory - stack and heap are required by Java ? Should we override finalize method ? What are strong, soft, weak and phantom references in Java ? Which memory areas does instance and static variables use ? Can we call the garbage collector explicitly ? Q2. Which memory segment loads the java code ? Core Java
Ans. Code segment. Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  memory   java   memory management   code segment  code segment memory expert   rare Related Questions What are different ways to create String Object? Explain. Does garbage collection guarantee that a program will not run out of memory? Describe, in general, how java's garbage collector works ? Describe what happens when an object is created in Java ? What are various types of Class loaders used by JVM ? Why two types of memory - stack and heap are required by Java ? Should we override finalize method ? What are strong, soft, weak and phantom references in Java ? Which memory areas does instance and static variables use ? Can we call the garbage collector explicitly ? Q3. Which memory segment holds the byte code ? Core Java
Ans. Code Segment Help us improve. Please let us know the company, where you were asked this question : Like Discuss Correct / Improve  Memory Management  Code Memory Segment  Code Segment Memory  Code SegmentRelated Questions How can we make sure that a code segment gets executed even in case of uncatched exceptions ? What is the difference between following code segments
1.
try {
for(int i=0;i<100;i++){
calculate(i);
}
} catch (Exception ex) {
System.out.println("Error while processing")
}
and
2.
for(int i=0;i<100;i++){
try {
calculate(i);
} catch (Exception ex) {
System.out.println("Error while processing")
}
}