WHAT IS LOW LEVEL LANGUAGE?

Answers were Sorted based on User's Feedback



WHAT IS LOW LEVEL LANGUAGE?..

Answer / avinash

LOW LEVEL LANGUAGE IS THE LANGUAGE OR INTRUCTION FOLLOWED
BY THE MACHINE.

Is This Answer Correct ?    3 Yes 0 No

WHAT IS LOW LEVEL LANGUAGE?..

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

Post New Answer

More C Interview Questions

write a C code To reverse a linked list

2 Answers   Motorola, Wipro,


1,4,8,13,21,30,36,45,54,63,73,?,?.

10 Answers   AMB, Franklin Templeton,


what is the diff between the printf and sprintf functions?? and what is the syntax for this two functions ??

5 Answers  


list the no of files created when c source file is compiled

9 Answers   TCS,


What is a string?

0 Answers  






10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


WHOT IS CHAR?

4 Answers   TCS,


What is function prototype in c language?

0 Answers  


main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above

6 Answers  


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


Why do we use pointer to pointer in c?

0 Answers  


for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable

2 Answers  


Categories