No products in the cart.

Ask questions which are clear, concise and easy to understand.

Ask Question
  • 0 answers
  • 1 answers

Abhayraj Singh 6 years, 10 months ago

Random access memory
  • 1 answers

Abhayraj Singh 6 years, 10 months ago

Read only memory
  • 0 answers
  • 1 answers

Pramod Kumar 6 years, 11 months ago

Just join
  • 0 answers
  • 0 answers
  • 3 answers

Vineit Kumar Gupta 6 years, 11 months ago

They are not but you should try them they very much interesting and if you know how to use them properly you can easily create a great graphic intensive program . <GRAPHICHS.H > breaks the monotonous vibes which are produced by black and white colours .

Shivang Gupta 6 years, 11 months ago

Okk thanks

J Ranjan Parida 6 years, 11 months ago

No it's not under cs syllabus
  • 1 answers

Vineit Kumar Gupta 6 years, 11 months ago

(X-(((Y+Z)/U)*V)) answer :- vuzy+/*x-
  • 0 answers
  • 0 answers
  • 0 answers
  • 2 answers

Nimisha Jain 6 years, 11 months ago

Function name having several definition that are differentiable by the number or types of their arguments is known as overloading of function

Nimisha Jain 6 years, 11 months ago

Function several definition That are differentiable by the number or types of their arguments is known as overloading of function
  • 1 answers

Vineit Kumar Gupta 6 years, 11 months ago

#include<iostream.h> #include<conio.h> #define n 10 int queue[n]; int front=-1,rear=-1; void insertq() {if(rear==n-1) {cout<<"\n Queue is full";} else{if(rear==-1)front=rear=0; else rear++;cout<<"\n Enter the elements to be inserted in the queue: "; cin>>queue[rear];}} void delq() {if(front==-1){cout<<"\n Queue is empty";} else{cout<<"\n The element to be removed from queue: "<<queue[front]; if(front==rear) front=rear=-1; else front++;}} void print() {if(front==-1) {cout<<"\n Queue is empty";} else{cout<<"\n Queue elements: "; cout<<"\n Front"; for(int i=front;i<=rear;i++){cout<<"\t"<<queue[i];}cout<<"\t"<<rear;}} void main() {int ch;char c; do{cout<<"\n 1.Insert"<<endl; cout<<"\n 2.Delete"<<endl; cout<<"\n 3.Print"<<endl; cout<<"\n Enter your choice: "<<endl; cin>>ch; switch(ch) {case 1:insertq();break; case 2:delq();break; case 3:print();break; default:cout<<"\n Invalid choice";} cout<<"\n Do you wish to goto menu again(y/n) "; cin>>c; }while(c=='y'); getch(); }
  • 1 answers

Sia ? 3 years, 6 months ago

Software is a collection of instructions and data that tell a computer how to work. This is in contrast to physical hardware, from which the system is built and actually performs the work.

  • 1 answers

Varun Banda 6 years, 11 months ago

C++ allows specification of more than one function of the same name in the same scope. These are called overloaded functions and are described in detail in Overloading. Overloaded functions enable programmers to supply different semantics for a function, depending on the types and number of arguments.

myCBSEguide App

myCBSEguide

Trusted by 1 Crore+ Students

Test Generator

Test Generator

Create papers online. It's FREE.

CUET Mock Tests

CUET Mock Tests

75,000+ questions to practice only on myCBSEguide app

Download myCBSEguide App