Efficient study tools from our company
Our C9050-041 learning guide is very efficient tool in the world. As is known to us, in our modern world, everyone is looking for to do things faster, better, smarter, so it is no wonder that productivity hacks are incredibly popular. So we must be aware of the importance of the study tool. In order to promote the learning efficiency of our customers, our C9050-041 training materials were designed by a lot of experts from our company. Our study materials will be very useful for all people to improve their learning efficiency. If you do all things with efficient, you will have a promotion easily. If you want to spend less time on preparing for your C9050-041 exam, if you want to pass your exam and get the certification in a short time, our study materials will be your best choice to help you achieve your dream.
The advantages of the online version
In order to meet the different need from our customers, the experts and professors from our company designed three different versions of our C9050-041 exam questions for our customers to choose, including the PDF version, the online version and the software version. Now I want to introduce the online version of our C9050-041 learning guide to you. The most advantage of the online version is that this version can support all electronica equipment. If you choose the online version of our study materials, you can use our products by your any electronica equipment. We believe it will be very convenient for you. In addition, the online version of our C9050-041 training materials can work in an offline state. If you buy our products, you have the chance to use our study materials for preparing your exam when you are in an offline state. We believe that you will like the online version of our C9050-041 exam questions.
There are more and more same products in the market of study materials. We know that it will be very difficult for you to choose the suitable C9050-041 learning guide. If you buy the wrong study materials, it will pay to its adverse impacts on you. It will be more difficult for you to pass the exam. So if you want to pass your exam and get the certification in a short time, choosing the suitable C9050-041 exam questions are very important for you. You must pay more attention to the study materials. In order to provide all customers with the suitable study materials, a lot of experts from our company designed the C9050-041 training materials. We can promise that if you buy our products, it will be very easy for you to pass your exam and get the certification.
Trial version provision
In order to let you have a deep understanding of our C9050-041 learning guide, our company designed the trial version for our customers. We will provide you with the trial version of our study materials before you buy our products. If you want to know our C9050-041 training materials, you can download the trial version from the web page of our company. If you use the trial version of our study materials, you will find that our products are very useful for you to pass your exam and get the certification. If you buy our C9050-041 exam questions, we can promise that you will enjoy a discount.
IBM Programming with IBM Enterprise PL/I Sample Questions:
1. CORRECT TEXT
What is the most appropriate wa y to assign a value to variable A?
DCLA BIN FIXED(15);
A) A = '17;
B) A = 17;
C) A ='1729'X;
D) A = 17.29;
2. CORRECT TEXT
What statement must be used to move data from SYSIN in STREAM oriented mode?
A) READ
B) GET
C) FETCH
D) LOCATE
3. CORRECT TEXT
Which is the most appropriate code to turn all of the bits in A ON?
DCL A BIT(8);
A) A = 255;
B) A = 11111111B;
C) A = '11111111'B;
D) A = -1;
4. CORRECT TEXT
The following code calls an external function procedure. Which program matches the entry declaration?
DCL F FLOAT;
DCLX CHAR(1);
DCL FUN ENTRY (FIXED BIN (15), FLOAT) RETURNS (CHAR(1));
X=FUN(1, F);
A) FUN: PROCEDURE (K, F) RETURNS (CHAR(1));
DCL K FIXED BIN (31);
DCL F FLOAT;
END;
B) FUN: PROCEDURE (K, F) RETURNS (CHAR(1));
DCL K FIXED BIN (15);
DCL F FLOAT;
END;
C) FUN: PROCEDURE (K, F) RETURNS (FIXED BIN (15));
DCL K FIXED BIN (15);
DCL F FLOAT;
END;
D) FUN: PROCEDURE (K, F) RETURNS (CHAR(1));
DCL K FIXED DEC (15);
DCL F FLOAT;
END;
5. CORRECT TEXT
A programmer has been asked to write a program that tests a variable, X, and writes out A, B, C or D if X is 0, 1, 2 or 3 respectively and writes out E when X has none of those values. Which of the following programs represents the best practice using IF or SELECT statements?
A) SUB4: PROC( X);
DCLX FIXED UNSIGNED;
SELECT(X);
WHEN ( 0 )
PUT SKIP LIST ( 'A');
WHEN (1)
PUT SKIP LIST ( 'B');
WHEN ( 2)
PUT SKIP LIST ( 'C');
WHEN (3)
PUT SKIP LIST ( 'D');
OTHERWISE
PUT SKIP LIST ( 'E');
END;
END;
B) SUB1:PROC(X);
DCL X FIXED UNSIGNED;
IF X = 0 THEN
PUT SKIP LIST ('A');
ELSE
IF X = 1 THEN
PUT SKIP LIST ('B');
ELSE
IF X = 2 THEN
PUT SKIP LIST ('C');
ELSE
IF X = 3 THEN
PUT SKIP LIST ( 'D');
ELSE
PUT SKIP LIST ( 'E');
END;
C) SUB2: PROC (X);
DCL X FIXED UNSIGNED;
IF X < 2 THEN
IF X = 0 THEN
PUT SKIP LIST ('A');
ELSE
PUT SKIP LIST ('B');
ELSE
IF X = 2 THEN
PUT SKIP LIST ('C');
ELSE
IF X = 3 THEN
PUT SKIP LIST ( 'D');
ELSE
PUT SKIP LIST ( 'E');
END;
END;
D) SUB3: PROC( X);
DCL X FIXED UNSIGNED;
SELECT;
WHEN (X = 0)
PUT SKIP LIST ( 'A');
WHEN(X = 1)
PUT SKIP LIST ( 'B');
WHEN( X = 2)
PUT SKIP LIST ( 'C');
WHEN( X = 3)
PUT SKIP LIST ( 'D');
OTHERWISE
PUT SKIP LIST ( 'E');
END;
END;
Solutions:
| Question # 1 Answer: B | Question # 2 Answer: B | Question # 3 Answer: C | Question # 4 Answer: B | Question # 5 Answer: A |




