When is it permissible to accept a free copy of a computer game or program from a friend?

1 Answer

Answer :

What is the answer ?

Related questions

Description : When is it permissible to accept a free copy of a program?

Last Answer : well i did this before so it fine if its free or you friend made it

Description : banglalink has told me , if you do Dukle in " myBanglalink" app every day, you will get 25 MB every day , so I accept Dukke MB in that app! Is it permissible for me ? Banglalink has told me that if you ... day , you will get 25 MB every day , so I accept MB in that app! Is it permissible for me ?

Last Answer : : Yes , of course it is permissible. Because they are giving by themselves and we know it is permissible to take gifts.

Description : Which of the following is not the basic function of the computer: a) Accept Input b) Process Data c) Copy Text d) Stored Data e) None of The Above

Last Answer : c) Copy Text

Description : How do I download a free copy of The Oregon Trail game for windows Vista?

Last Answer : Version 1.2 .

Description : A ……. is a software program that is designed to copy itself from one computer to another, without human intervention. -Technology

Last Answer : (c) A worm is a self-replicating software program. It does not require another program to host it.

Description : ……….. is a software program that is designed to copy itself from one computer to another. -Technology

Last Answer : Worm is a software program that is designed to copy itself from one computer to another.

Description : I have a relationship with my best friend but she doesn't accept it what to do?

Last Answer : Yeah. .. It is kinda best to not try to change a persons sexuality since it doesn't work. It is fucked up when Mike Pence wants the state to pay for orientation assignment camps . ... when you think you can convert someone. And girlfriend implies the feelings are reciprocal. They clearly are not.

Description : Have you ever had to accept brain damage in a good friend?

Last Answer : No. I am sure that would be really hard, challenging and maybe even impossible.

Description : Friend of my ex bf sent me a friend request on FB... Should I message him explaining why I can't accept it or leave it?

Last Answer : There’s no right or wrong answer to this. Do what you feel you want to but if you feel that sending an explanation will get you re-involved in a way you don’t want to, then just ignore it.

Description : Do you accept friend requests from persons you don't know on Facebook?

Last Answer : Happens all the time and absolutely not. I also mark that I don’t know them.

Description : Should I accept friend requests on Linkedin.com from people I have never heard of?

Last Answer : I don’t.

Description : Can you fake accept a Facebook friend request?

Last Answer : You can. But why would you want to? They’ll know when they go and try to access you and are unable to do so that there’s something up, even if they haven’t figured out that they’re blocked. Just decline the request.

Description : Your mom joins Facebook and wants to be your friend. Do you accept?

Last Answer : That’s why I used an alias for mine. :[

Description : Why won't my boyfriend accept me as a friend on facebook?

Last Answer : It sounds like you know why he won’t add you as a friend. You are right to be suspicious. Confront him or it will be more painful later on

Description : On facebook, how do you decide whether to accept or reject someone's friend request?

Last Answer : I only accept people I actually know. It doesn’t matter if I hate them, and I certainly don’t only accept people I am “friends” with. As long as I know them, I accept them. If they are a random person who adds me that I have never met, I reject them. (And I reject them immediately.)

Description : Does anyone have a copy of the map our friend johnpowell made a long time ago?

Last Answer : Pffft. You were 2 hours away from me and didn’t tell me till you got back home.

Description : Does your program accept International Medical Graduates?

Last Answer : If so, how many are currently in the program? Yes. Currently 13 of our 35 residents for the 2010-2011 academic year are IMG's.

Description : Accept data for five students and display it. Write a C++ program to displya sum of array elements of array size n. 

Last Answer : #include<iostream.h> #include<conio.h> void main() { int arr[20],i,n,sum=0; clrscr(); cout<<"\nEnter size of an array:"; cin>>n; cout<<"\nEnter ... ; } cout<<"\nSum of array elements is:"<<sum; getch(); }

Description : Write a C++ program to declare a class COLLEGE with members as college code. Derive a new class as STUDENT with members as studid. Accept and display details of student along with college for one object of student.

Last Answer : #include<iostream.h> #include<conio.h> class COLLEGE { protected: int collegecode; }; class STUDENT:public COLLEGE { int studid; public: void accept() { cout<<"Enter college ... STUDENT s; clrscr(); s.accept(); s.display(); getch(); }

Description : Write a C++ program to declare a structure employee with members as empid and empname. Accept and display data for one employee using structure variable. 

Last Answer : #include<iostream.h> #include<conio.h> struct employee  { int empid; char empname[10];  }; void main()  { employee e; clrscr(); cout<<"\nEnter employee id ... empid; cout<<"\nThe Employee Name is "<<e.empname; getch();  }

Description : Write a C++ program to declare a class ‘Account’ with data members as accno, name and bal. Accept data for eight accounts and display details of accounts having balance less than 10,000.

Last Answer : #include<iostream.h> #include<conio.h> class Account  { long int accno, bal; char name[10]; public: void getdata() { cout<<"\nEnter account number, balance and name "; cin>> ... 0;i<8;i++)  { a[i].putdata();  } getch();  }

Description : Write a C++ program to declare a class ‘circle’ with data members as radius and area. Declare a function getdata to accept radius and putdata to calculate and display area of circle.

Last Answer : #include<iostream.h> #include<conio.h> class circle { float radius,area; public: void getdata() { cout<<"Enter radius:"; cin>>radius; } void putdata() { area=3 ... { circle c; clrscr(); c.getdata(); c.putdata(); getch(); }

Description : Write a C++ program to declare a class ‘College’ with data members as name and college code. Derive a new class ‘student’ from the class college with data members as sname and roll no. Accept and display details of one student with college data.

Last Answer : #include<iostream.h> #include<conio.h> class college { char name[10]; int collegecode; public: void getcollege() { cout<<"Enter college name:"; cin>>name; cout< ... (); s.getstudent(); s.putcollege(); s.putstudent(); getch(); }

Description : Write a C++ program to accept array of five elements, find and display smallest number from an array.

Last Answer : #include<iostream.h> #include<conio.h> void main() { int a[5],smallest,i; clrscr(); cout<<" Enter array elements:"; for(i=0;i<5;i++) cin>>a[i] ... } } cout<<endl<<"Smallest number="<<smallest; getch(); }

Description : Write a program to accept two numbers from user and perform addition, subtraction, multiplication and division operations using pointer.

Last Answer : #include #include void main() { int no1,no2,*ptr1,*ptr2,result; clrscr(); printf("Enter no1:"); scanf("%d",&no1); printf("\nEnter no2:"); scanf("%d",&no2); ptr1=&no1; ptr2=&no2; ... "\n Multiplication=%d",result); result=*ptr1/(*ptr2); printf("\n Division=%d",result); getch(); }

Description : Write a program to declare structure employee having data member name, age, street and city. Accept data for two employees and display it.

Last Answer : #include<stdio.h> #include<conio.h> struct employee { char name[10],street[10],city[10]; int age; }; void main() { int i; struct employee e[2]; clrscr(); for(i=0;i<2 ... =%s",e[i].street); printf("\n City=%s",e[i].city); } getch(); }

Description : Write a program to accept a string as input from user and determine its length. [Don’t use built in library function strlen()]

Last Answer : #include #include void main(){ char str[50]; int i, len=0; clrscr(); printf("Enter a string"); scanf("%s",&str); for(i=0; str[i]!='\0'; i++){ len++; } printf("The length of string is %d",len); getch(); }

Description : Write a program to accept the value of year as input from the keyboard & print whether it is a leap year or not. 

Last Answer : #include #include void main() { int year; clrscr(); printf("Enter year"); scanf("%d",&year); if(year%4==0) { printf("Year %d is a leap year",year); } else { printf("Year %d is not a leap year",year); } getch(); }

Description : Write a program to accept marks of four subjects as input from user. Calculate and display total and percentage marks of student. 

Last Answer : #include<stdio.h> #include<conio.h> void main() { float marks[4]; float total=0.0, perc=0.0; int i; clrscr(); for(i=1;i<=4;i++) { printf("Enter marks of ... is :%f",total); perc=total/4; printf("Percentage is %f",perc); getch(); }

Description : Develop a program to accept an integer number and print whether it is palindrome or not.

Last Answer : #include<stdio.h> #include<conio.h> void main() { int n,num,rev=0,digit,i; clrscr(); printf("Enter the number: "); scanf("%d",&num); n=num ... ;Number is palindrome"); else printf("Number is not palindrome"); getch(); }

Description : Write a program to declare class student having data members name and percentage. Write constructor to initialize these data members. Accept and display this data for one object.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> class student { char name[20]; float per; public: student(char n[],float p) { strcpy(name,n); per=p; } ... { student S("Sachin",78.00); clrscr(); S.putdata(); getch(); }

Description : Write a program to implement single inheritance. Declare base class employee with Emp_No. and Emp_Name. Declare derived class fitness with height and weight. Accept and display data for one employee.

Last Answer : #include<iostream.h> #include<conio.h> class employee { protected: int emp_no; char emp_name[10]; public: void gete() { cout<< enter employee details ; cin>>emp_no; cin>> ... f.gete(); f.pute(); f.getft(); f.putft(); getch(); }

Description : Write a program to declare class having data member as hrs, mins, secs. Write constructor to assign values and destructor to destroy values. Accept & display data for one object.

Last Answer : #include<iostream.h> #include<conio.h> class time { private: int hrs, mins,sec; public: time(int h,int m,int s) { hrs=h; mins=m; sec=s; } ~time() { cout<< hours ... } }; void main() { time t(2,43,56); t.display(); getch(); }

Description : Write a program to implement the concept of virtual base class for following figure. Accept and display information of one employee with his name, code, basic pay, experience and gross salary with the object of employee class.

Last Answer : #include<iostream.h> #include<conio.h> class Master  {  char name[10],code[3];  public:  void acceptM() { cout<<"\nEnter name and code "; cin>>name>>code; ... .displayM(); e.displayA(); e.displayD(); e.displayE(); getch();  }

Description : Write a program to declare a class 'staff' having data members as name and department. Accept this data for 10 staffs and display names of staff that are in 'CO' department.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> class staff {  char name[10], dept[10];  public:  void accept() { cout<<"Enter Name and Department:\t"; cin>> ... i=0;i<=10;i++) { s[i].display(); } getch(); }

Description : Implement a program to declare a class city with data members city name and state. Accept and display data for 1 object using pointer to object.

Last Answer : #include<iostream.h> #include<conio.h> class city { char city_name[20],state[20]; public: void accept() { cout<<"\nEnter city data:"; cout<<"\nName:"; ... ); ptr=&c; ptr->accept(); ptr->display(); getch(); }

Description : Write a program in C++ to accept a string from a user and display its reverse using pointer.

Last Answer : #include<iostream.h> #include<conio.h> #include<string.h> void main() { char str[20],*ptr; int l; clrscr(); cout<<"\n Enter a string : "; cin>>str; l=strlen(str); ... (l!=0) { ptr--; cout<<*ptr; l--; } getch(); }

Description : Write a program in C++ to declare a class „Journal‟ having data members as journal_nm, price, ISSN_No. Accept this data for two objects and display the name of the journal having greater price.

Last Answer : #include<iostream.h> #include<conio.h> class Journal { char journal_nm[20]; int ISSN_No; float price; public: void accept(); void display(Journal); }; void Journal::accept() { ... clrscr(); j1.accept(); j2.accept(); j1.display(j2); getch(); }

Description : Write a program to declare a class ‘book’ containing data members as ‘title’, ‘author-name’, ‘publication’, ‘price’. Accept and display the information for one object using pointer to that object.

Last Answer : #include<iostream.h> #include<conio.h> class book { char author_name[20]; char title[20]; char publication[20]; float price; public: void Accept(); void Display(); }; void ... title \t author_name \t publication \t price\n ; p-> Display(); getch(); }

Description : Why did the door man refuse to accept a tip from the judge in The Westing Game?

Last Answer : Need answer

Description : Does Gamestop accept video game coupons?

Last Answer : If the coupons are for GameStop then you can in fact go to Gamestop and use them. They will not however accept coupons from other stores.

Description : Does the Salvation Army accept board game donations?

Last Answer : Donating old Board Games to charity is a good-natured gesture. It not only clears up some space around the home, but it gives other kids free games. Charitable organizations such as the Salvation ... accept board games anymore. One great place to donate these games is your local children's hospital

Description : What photo editing program do I need to cut-copy-paste from one image to another?

Last Answer : You can do that with Paint. I used to do it all the time.

Description : How do I copy all my settings and most program accesses from an admin account to a power-user account?

Last Answer : answer:I haven't tried this exact scenario, but my first idea would be the Files and Settings Transfer Wizard. Being new to the task, I would highly recommend giving it a try. At the worst, ... How to use the Files and Settings Transfer Wizard in Windows XP http://support.microsoft.com/kb/293118

Description : Whats a lightwieght program for copy-pasting pictures?

Last Answer : Copy-Pasting? I'm kinda lost as to what you mean. Anyway, try Paint.Net if you are on Windows. http://www.getpaint.net/ , or http://picasa.google.com/ .

Description : Which refers to any program that is not copy righted? A. Freeware B. Shareware C. Open Source Software D. Public Domain Software

Last Answer : D. Public Domain Software

Description : A ______________is a program that can infect other programs by modifying them,the modification includes a copy of the virus program which can go on to infect other programs a)Worm b)Virus c)Zombie d) Trpdoors

Last Answer : b)Virus

Description : A ………….. is a program that can infect other programs by modifying them, the modification includes a copy of the virus program, which can go on to infect other programs. A) Worm B) Virus C) Zombie D) Trap doors

Last Answer : B) Virus

Description : Write a program to copy content of one file to another file.

Last Answer : class fileCopy {  public static void main(String args[]) throws IOException { FileInputStream in= new FileInputStream("input.txt"); FileOutputStream out= new FileOutputStream("output.txt"); int c=0; ... .close();  if(out!=null)  out.close();  }  } }

Description : Write a program to copy content of one string to another string using pointer to string.

Last Answer : #include<iostream.h> #include<conio.h> void main() { char str1[10],str2[10],*p1,*p2; clrscr(); cout<<"\n Enter a String"; cin>>str1; p1=&str1[0]; p2= ... } *p2='\0'; cout<<"Copied String is "<<str2; getch(); }