ABAP Programming Fundamentals
Test your knowledge of ABAP programming concepts including events, system variables, and control statements.
Questions
import java.lang.*; class A { public static void main(String[] args) { String s1=new String("TCS"); String s2="TCS"; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
- Compile time error
- false true
- true false
- true true
import java.lang.*; class A { public static void main(String[] args) { String s1=new String("TCS"); String s2=s1; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
- true true
- true false
- false true
- Exception
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1="TCS"; String s2=new String("TCS"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
- true false
- false true
- Compile Error
- false false
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1=new StringBuilder("TCS"); StringBuilder s2=new StringBuilder("TCS"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
- false true
- false false
- true false
- true true
import java.lang.*; class A { public static void main(String[] args) { StringBuilder s1=new StringBuilder("TCS"); StringBuilder s2=s1; System.out.println(s1==s2); System.out.println(s1.equals(s2)); } } What is the Result?
- false true
- false false
- true true
- true false
What is default event in ABAP program events?
- Initialization
- Start of Selection.
- At Selection-screen output
- At Selection-screen.
Which event will trigger if program finds STOP statement
- Start-of- selection
- top-of -page
- End-of- Selection.
- End- of- page
What is system variable to handle the function codes?
- SY-INDEX
- SY-UCOMM
- SY-FDPOS
- SY-STEPL
Which is control break statement?
- AT LAST
- AT TOP
- AT NEW OF
- AT END
What is output of the this code? REPORT ZTEST. field-symbols: type c. = '10'. write:/ .
- 10
- Syntax error
- Short dump
- No Value