why c++ is a highlevel language

Answer Posted / siva

C++ programs are compiled by using compiler
Compiler converts high lever programs into low level.
There are two parts in compiler
High level -> assembly
Assembly -> machine level

Is This Answer Correct ?    4 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2170


What are the 4 pillars of oop?

674


Why it is called runtime polymorphism?

577


What is abstraction in oops?

589


What is oops in programming?

569






What is the importance of oop?

613


Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4244


Can we create object of abstract class?

577


What makes a language oop?

598


What is overriding in oop?

550


What is pointer in oop?

539


What is abstract class in oops?

600


What is ambiguity in inheritance?

625


What is the fundamental idea of oop?

638


What is abstraction in oop?

637