what is difference between IF-ELSE-ENDIF and IIF.
Answers were Sorted based on User's Feedback
Answer / guest
The iif is shortcut of if endif.
and the if else endif is use in the more type condition or
two options. so iif is shortly to use without if else endif.
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / srivasanth
simple if means the condition is true then print the
statements
if-else means the condition is not satisfied ,then print
the statement is while satisfied
endif means close the condition path
| Is This Answer Correct ? | 2 Yes | 3 No |
what is the difference between "types" and "data" in abap.
how to work search engine? plz detail answer me.
I'm trying to solve this. But I'm not figuring the right solution. Can some one help what the answer is for the question below? You can use as many variables as you need, there are no negative numbers, all numbers are integers. You do not know the size of the integers, they could be infinitely large, so you can't count on truncating at any point. There are NO comparisons allowed, no if statements or anything like that. There are only four operations you can do on a variable. 1) You can set a variable to 0. 2) You can set a variable = another variable. 3) You can increment a variable (only by 1), and it's a post increment. 4) You can loop. So, if you were to say loop(v1) and v1 = 10, your loop would execute 10 times, but the value in v1 wouldn't change so the first line in the loop can change value of v1 without changing the number of times you loop. You need to do 3 things. 1) Write a function that decrements by 1. 2) Write a function that subtracts one variable from another. 3) Write a function that divides one variable by another. 4) See if you can implement all 3 using at most 4 variables. Meaning, you're not making function calls now, you're making macros. And at most you can have 4 variables. The restriction really only applies to divide, the other 2 are easy to do with 4 vars or less. Division on the other hand is dependent on the other 2 functions, so, if subtract requires 3 variables, then divide only has 1 variable left unchanged after a call to subtract. Basically, just make your function calls to decrement and subtract so you pass your vars in by reference, and you can't declare any new variables in a function, what you pass in is all it gets.
Define Form modules, Class modules and Standard modules
what is the filters in biztakk server? where it can use?
how we can call xml file in java file using Android platform?
Iam using Microsoft Visual Studio to create a system for mobile store I want to know how to calculate mobile price that the customer buy and how to reduce quantity from the data base that we have for mobile .And also how to calculate revnue for each mobile and revnue for the total mobile
Why data bus is bidirectional and address bus is unidirectional?
Can any one give an example (Source Code) on virtual function implemetation in Java?
Suppose server object is not loaded into the memory, and the client request for it , what will happen?
To sorting array of 10 elements which sorting is best a)selection b)bubble c)tree sort
how many languages .net is supporting now?