WHAT IS LOW LEVEL LANGUAGE?
Answers were Sorted based on User's Feedback
Answer / avinash
LOW LEVEL LANGUAGE IS THE LANGUAGE OR INTRUCTION FOLLOWED
BY THE MACHINE.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / priyanka pal
it is also known as machine language. it is the language
only understand by the computer. computer understand the
machine language i.e, in the form of 0's and 1's also called
the binary form.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between ‘g’ and “g” in C?
hOW Can I add character in to pointer array of characters char *a="indian"; ie I want to add google after indian in the char *a
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
what is op? for(c=0;c=1000;c++) printf("%c",c);
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
Write a program to print numbers from 1 to 100 without using loop in c?
What are preprocessor directives?
What is c mainly used for?
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
What is logical error?
What does void main () mean?