Connect with us

C Language

Programming

Which language is called as the second generation language ?

Correct Answer is: Assembly language

Explanation: Second generation languages (2GL) are also known as assembler languages or 2G languages. They are a type of low-level programming language that is designed to be readable by humans. Assembly languages are intended to communicate directly with a computer’s hardware

Recently updated  

on

Q.#include
void main(void){
int shifty;
shifty=0570;
shifty=shifty>>4;
shifty=shifty<<6;
printf(“The value of shifty is %o \n”,shifty);
}

Q.In the context of while loop and Do while loop in C / C++, which of the following is not true

Q._____ in C language is also known as record.

Q.The statement i++; is equivalent to:

Q.What is output of given c program:
main(){
int i = 8;
while(i=8){
printf(“Welcome on Govtexamresults”);
i++;
}
}

Q.Which statement is correct for get and put functions in c

Advertisement
Advertisement