Free Essay

Computer Code

In:

Submitted By iam2666
Words 3260
Pages 14
[ROCKET LAUNCHER] [A C++ coding]
Tenzin Kunsel
T.C.V SCHOOL SELAQUI P.O-SELAQUI DEHRADUN
[ROCKET LAUNCHER] [A C++ coding]
Tenzin Kunsel
T.C.V SCHOOL SELAQUI P.O-SELAQUI DEHRADUN

Contents
DEDICATION 1
ACKNOWLEDGEME ___________________________________________________________________2
CERTIFICATES 3
CODES 4
PHOTO 5
BIBLOGRAPHY _______________________________________________________________________6

This project is dedicated to all those digital world revolutionist and for my beloved country and the country man who is under the reign of the P.R.C govt

ACKNOWLEDGEMENT

I would like to express my special thanks of gratitude to my teacher B.tech Palden Tsewang as well as our principal Mr. Duke Tsering who gave me the golden opportunity to do this wonderful project on the Rocket Launcher, which also helped me in doing a lot of Research and I came to know about so many new things I am really thankful to them.
Secondly I would also like to thank my parents and friends who helped me a lot in finalizing this project within the limited time frame.

CERTIFICATE

This is to certify that master Tenzin Kunsel of
Class XII A has completed his project on time and
Put a great effort in making this a successful one.

Teacher sign. Invigilator sign.

//KUNSEL & TSUNDUE
//TERMINAL PROJECT
//Username:foreverknight
//pswd:rocket123
#include<iostream.h>
#include<conio.h>
#include<dos.h>
#include<process.h> //exit prototype
#include<string.h>
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#include<fstream.h>
void symbol(); void loading(); void animated1(); void animated2(); void animated3(); void animated4(); void start(); void headline(); void exit(); void list(); void like(); void option(); int pass(); void probook();

void intro() { clrscr(); gotoxy(35,5); symbol(); delay(1500); gotoxy(30,14); cout<<"copyright@knight"; gotoxy(35,17); cout<<"\n\n\tMADE BY : TENZIN KUNSEL FOREVERKNIGHT "; cout<<"\n\n\tSCHOOL : T.C.V School, SelaQui"; getch(); } char ch; class casino
{
public: void draw_line(int n,char ch); void rules(); void countdown(); void supercount(); void play()
{
long int balanceamt,amt,no,dice; char playername[80]; clrscr(); draw_line(60,'=');cout<<endl; headline(); draw_line(60,'='); gotoxy(2,12); cout<<"YOU HAVE CHOSEN SINGLE PLAYER"; gotoxy(5,15); cout<<"Your Name :"; gotoxy(5,17); cout<<"\n\nDeposition amount :"; gotoxy(17,15); gets(playername); sound(300);delay(50);nosound(); gotoxy(23,19); cin>>balanceamt; sound(300);delay(50);nosound(); do { clrscr(); headline(); rules(); cout<<"\n\nCurrent balance (Rs) = "<<balanceamt<<" /-"; do { cout<<"\n\nMr."<<playername<<"\nPlease place your betting amount : "; cin>>amt; sound(300);delay(50);nosound(); if(amt>balanceamt) {cout<<playername<<"\tERROR!!!\nYOUR BET IS MORE THAN YOUR AVAIL. BAL\n\nRe-enter amount\n "; sound(300);delay(50);nosound(); } else break;
}while(1);
do
{
cout<<"Please choose your betting no. (1-7) :"; cin>>no; sound(300);delay(50);nosound(); if(no<=0||no>7) cout<<"\tERROR!!!\nYOU HAVE BET ON A WRONG NO.\n\nPlease... Re-enter data\n "; else break;
}while(1);
randomize(); dice=random(7)+1; supercount(); clrscr();delay(750); if(dice==no)
{
cout<<"\n\n\tCONGRATULATIONS!!!\n\n\tYou have just won Rs."<<amt*10; balanceamt=balanceamt+amt*10; int count=50; while(count--) { sound(21*random(100)); // Plays 440 Hz tone delay(75); // Makes the sound for 1 second (1000 milliseconds) nosound();} // Turns sound off
}
else
{
cout<<"\n\n\tOops Bad Luck !!!\n\n\tYou lose Rs."<<amt; balanceamt=balanceamt-amt; //nosound(); int count=50; while(count--) { sound(100*random(21)); // Plays 440 Hz tone delay(75); // Makes the sound for 1 second (1000 milliseconds) nosound();} // Turns sound off
}
delay(750); cout<<"\n\nThe winning number was : "<<dice; cout<<"\n\n\tMr."<<playername<<"\nYour current bal (Rs) = "<<balanceamt<<" /- in your account"<<endl; delay(500);cout<<"\n\n-->Would you like to try your luck again (y/n)? "; cin>>ch; sound(300);delay(50);nosound();
}while(ch=='Y'|| ch=='y'); clrscr(); cout<<"\n\n"; draw_line(70,'+'); cout<<"\n THANKS FOR VISITING TO eLeCTRON CASINO. YOUR BALANCE AMOUNT IS RS."<<balanceamt<<"\n\nIt would be transfer to your registered bank account\n"; draw_line(70,'+'); cout<<"\n\n\tGame developed by TENZIN KUNSEL FOREVERKNIGHT \n"; draw_line(70,'+'); cout<<"\n\t\t-GAME OVER-\n";like(); getch(); }
}obj;

void casino::draw_line(int n,char ch)
{
for(int i=0;i<n;i++) cout<<ch; } void casino::rules()
{
clrscr(); cout<<"\n\n"; draw_line(60,'-'); cout<<"\n\t\tRULES OF THE GAME\n"; draw_line(60,'-'); cout<<"\n1. Choose any number between 1 to 7\n2. If you win you will get 10 times of money you bet\n3. If you bet on wrong number you will lose your betting amount\n\n"; draw_line(60,'-'); cout<<endl;
}

void casino::countdown()
{int n=1; for(int x=0;x<7;x++)
{delay(200);clrscr();
for(int y=0;y<40;y++)
{
cout<<"\n"; for(int k=0;k<40;k++)
{
cout<<n<<" ";
}
} cout<<"\n\t\t\tBreath heavily...(~_*)"; n++; }
}

void casino::supercount()
{
for(int z=0;z<3;z++) countdown(); }

int num; class multiplayer { int i,dice,j; char name[50]; public: void getname(); int getno(); void putname(); int putno(); void play(); void multiplay(); }kps[50];

void multiplayer::getname() { cout<<"\n\t\tYour name : "; gets(name); sound(300);delay(50);nosound();}

int multiplayer::getno() { do { cout<<"\t\tChoose your betting No.(1-"<<num<<") :"; cin>>i; sound(300);delay(50);nosound(); if(i<=0||i>num) cout<<"\n\t\tYou have place bet on wrong no.\n\nPlease... Re-enter data\n "; else break; }while(1); return i; }

void multiplayer::putname() { puts(name); }

int multiplayer::putno() { return i; }

void multiplayer::play() { randomize(); dice=random(num)+1; clrscr();delay(750); obj.supercount(); delay(750);clrscr(); cout<<"\n\n\t\tThe winning number was : "<<dice; cout<<"\n\n\n"; int l; for(j=0;j<num;j++) { l=kps[j].putno(); if(l==dice) {cout<<"\t\tMr.";kps[j].putname(); cout<<"\t\tYou have won this game \n\n\n"; int count=50; while(count--) { sound(100*random(21)); // Plays 440 Hz tone delay(75); // Makes the sound for 1 second (1000 milliseconds) nosound();//} // Turns sound off
}
cout<<"\n\t\tWELL PLAYED...\n"; for(j=0;j<num;j++) {cout<<"\n\t\tMr.";kps[j].putname();} }} }

void multiplayer::multiplay() {do{ clrscr();int lob; for(lob=0;lob<60;lob++) cout<<"="; cout<<"\n"; headline(); for(lob=0;lob<60;lob++) cout<<"="; cout<<"\n\n\n\n"; cout<<"YOU HAVE CHOSEN MULTIPLAYER MODE\n\nHow many player do you want this game to set for ?\n"; cin>>num; for(j=0;j<num;j++) {cout<<"\t*****************************************************\n"; kps[j].getname(); kps[j].getno();} clrscr(); kps[j].play(); delay(500); cout<<"\n\n-->Do you want to play (y/n)? "; cin>>ch; sound(300);delay(50);nosound(); }while(ch=='Y'|| ch=='y'); }

void main()
{
clrscr();
//textbackground(WHITE);
//textcolor(RED); intro(); pass(); start(); exit(); loading(); list();

getch();
}

//FUNCTION DELCLARTION
//FUNCTION DECLARATION void symbol()
{
cout<<"\n\t\t\t //// /\\"<<endl; cout<<"\t\t\t (~_*) /__\\"<<endl; cout<<"\t\t\t <<I\\//' | RL |"<<endl; cout<<"\t\t\t _/-\\_ | |"<<endl; cout<<"\t\t\t ULTIMATE////\\\\\\\\"<<endl; cout<<"\t\t\t *SUPER*||||||||"; cout<<"\n\t\t\t ROCKET LAUNCHER";}

void animated1()
{
cout<<"\n\n\n\n\n"; cout<<" ( o. , LOADING... "<<endl;; cout<<" ==\\_______ < / "<<endl; cout<<" === |\\ //I/ "<<endl; cout<<" === -R.L- | > // | "<<endl; cout<<" ===_______|/ '' //^\\\\ "<<endl; cout<<" ==/ _ | |+_>"<<endl;; cout<<" | --)"<<endl; cout<<" V"<<endl;; for(int ground=0;ground<15;ground++) cout<<"_ "; cout<<"\n\n\t\t #PLEASE WAIT A MOMENT#";
}

void animated2()
{
cout<<"\n\n\n\n"; cout<<" ( o. L O A D I N G . . . "<<endl;; cout<<" ==\\_______ 0 ,,"<<endl; cout<<" === |\\ /\\\\ // "<<endl; cout<<" === -R.L- | > \\|\\\\// "<<endl; cout<<" ===_______|/ ||^\\ "<<endl; cout<<" ==/ _ || |_>"<<endl;; cout<<" |+==)"<<endl; cout<<" V"<<endl<<endl; for(int ground=0;ground<15;ground++) cout<<" _ "; cout<<"\n\n\t\t *PLEASE WAIT A MOMENT*";
}

void animated3()
{
cout<<"\n\n\n\n\n"; cout<<"\t ( o. , LOADING... "<<endl;; cout<<"\t ==\\_______ < / "<<endl; cout<<"\t === |\\ //I/ "<<endl; cout<<"\t === -R.L- | > // | "<<endl; cout<<"\t ===_______|/ '' //^\\\\ "<<endl; cout<<"\t ==/ _ | |+_>"<<endl;; cout<<"\t | --)"<<endl; cout<<"\t V"<<endl;; for(int ground=0;ground<15;ground++) cout<<"_ "; cout<<"\n\n\t\t #PLEASE WAIT A MOMENT#";
}

void animated4()
{
cout<<"\n\n\n\n"; cout<<"\t\t ( o. L O A D I N G . . . "<<endl;; cout<<"\t\t ==\\_______ 0 ,,"<<endl; cout<<"\t\t === |\\ /\\\\ // "<<endl; cout<<"\t\t === -R.L- | > \\|\\\\// "<<endl; cout<<"\t\t ===_______|/ ||^\\ "<<endl; cout<<"\t\t ==/ _|| |_>"<<endl;; cout<<"\t\t |+==)"<<endl; cout<<"\t\t V"<<endl<<endl; for(int ground=0;ground<15;ground++) cout<<" _ "; cout<<"\n\n\t\t *PLEASE WAIT A MOMENT*";
}

void loading()
{
for(int i=0;i<7;i++)
{
clrscr(); sound(100);delay(5);animated1();nosound(); delay(200); clrscr(); sound(100);delay(5);animated2();nosound(); clrscr(); sound(100);delay(5);animated3();nosound(); delay(200); clrscr(); sound(100);delay(5);animated4();nosound(); delay(200); clrscr(); }
}

void exit()
{
delay(100); cout<<"\t\tPLEASE PRESS ENTER TO CONTINUE & Esc. TO EXIT\t"; char ch; for(;;) { ch=getch(); if(ch==13) break; else if(ch==27) {delay(500);cout<<"\nshutting down...";delay(400);cout<<"...";delay(900); cout<<"encrypting data......";delay(1000);cout<<"data safely encrypted.......";delay(900); exit(-1);} else
{ sound(440); delay(500); cout<<"\n\n\t\t\t\a ! WRONG KEY ENTERED !"; nosound();} delay(300); cout<<"\n\n\n\t PRESS ENTER ";
}
}

void list()
{
char ch; do { clrscr(); symbol(); cout<<"\n\t\t\t =====================\n"; cout<<"\t\t\t MAIN MENU\n"; cout<<"\n\t\t\t 01. PRO-BOOK"; cout<<"\n\t\t\t 02. CASINO"; //cout<<"\n\t\t\t 03. TIBET MATRIMONIAL"; cout<<"\n\t\t\t 03. EXIT"; cout<<"\n\n\t\t Please Select Your Option (1-4) "; ch=getche(); sound(300);delay(50);nosound(); switch(ch) { case '1':clrscr(); probook(); break; case '2':option(); break; case '3':cout<<"\n\n\tSigning out.....";delay(1500); exit(0); default :cout<<"\a"; } }while(ch!='3');}

void start()
{
clrscr(); for(int u=0;u<7;u++)
{sound(20);
cout<<" \n"; delay(200); cout<<"\t RRRRR OOOOO CCCCC KK K EEEEE TTTTT \n"; cout<<"\t RR R OO OO CC KK K EE T \n"; cout<<"\t RRRR OO OO CC KKK EEEE T \n"; cout<<"\t RR R OO OO CC KK K EE T \n"; cout<<"\t RR R OOOOO CCCCC KK K EEEEE T \n"; cout<<" \n"; delay(200); cout<<"\t LL AAA UU UU N N CCCCC HH HH EEEEE RRRRR \n"; cout<<"\t LL A A UU UU NN N CC HH HH EE RR R \n"; cout<<"\t LL AAAAA UU UU N N N CC HHHHH EEEE RRRR \n"; cout<<"\t LL A A UU UU N NN CC HH HH EE RR R \n"; cout<<"\t LLLLL A A UUUUU N N CCCCC HH HH EEEEE RR R \n"; cout<<" \n"; delay(200); nosound(); } symbol(); cout<<"\n\n\n"; int count=50; while(count--) { sound(21*random(100)); // Plays 440 Hz tone delay(75); // Makes the sound for 1 second (1000 milliseconds) nosound();} // Turns sound off
}

int pass()
{
char ch; int r=0; char pass[20]; for(;;) { clrscr(); char str5[40]="foreverknight"; char str6[40]; int length; do { gotoxy(13,13); cout<<"Username : "; gets(str6); sound(300);delay(50);nosound();} while(strcmp(str6,str5)); gotoxy(13,15); cout<<"Please enter the password to proceed:"; r=0; for(int i=0;;i++)
{
ch=getch(); sound(300);delay(50);nosound();

if(ch==13)
{ pass[r]='\0'; break; }

if(ch==8)
{

if(i>0)
{ cout<<ch<<" "<<ch; i-=2;r--; } else i--;
}
else
{ cout<<"*"; pass[r]=ch; r++;
}
} if(strcmp("rocket123",pass)==0) return 0; else { cout<<"\n\n\t\t\a!! INVALID PASSWORD !!"; delay(300); cout<<"\n\n\t\t--> TRY AGAIN"; getch(); }
}
}

void probook(){
//textbackground(WHITE);
//textcolor(BLUE); clrscr(); delay(1000); //STARTING PAGE*** cout<<" __ __ __ __ __ __ "<<endl; cout<<" I__I I__I I I __ I__I I I I I I//"<<endl; cout<<" I I\\. I__I I__I I__I I__I I\\\\ "<<endl; cout<<" *connecting people*connecting life*"<<endl; cout<<" a new life experience"<<endl; cout<<" __________________________"<<endl; cout<<" (*_~) I I (*_~)"<<endl; cout<<" <<|||>> I LOVE YOUR LIFE I <<|||>>"<<endl; cout<<" _/-\\_ I__________________________I _/-\\_" <<endl; like(); delay(1000);cout<<"\n\n\n PLEASE PRESS ENTER TO CONTINUE & Esc. TO EXIT\t"; char ch; for(;;) { ch=getch(); if(ch==13) break; else if(ch==27) {delay(500);cout<<"\nshutting down...";delay(400);cout<<"...";delay(900); cout<<"encrypting data......";delay(1000);cout<<"data safely encrypted.......";delay(900);
//exit(-1);
list();} else cout<<"\n\n\t\t\t\a ! WRONG KEY ENTERED !"; delay(300); cout<<"\n\n\n\t PRESS ENTER ";
} //SECOND PREFACE*** cout<<endl<<"initialising data..."; delay(300);cout<<"...";delay(30);cout<<"...";delay(300);cout<<"..."; delay(300);cout<<"...";delay(400);cout<<"collecting information..."; delay(100);cout<<"...";delay(30);cout<<"...";delay(250);cout<<"..."<<endl; clrscr(); delay(100);cout<<"PRO-BOOK (*_~) \n"<<"Enter your username \t\t\t Esc=exit\n";

char str[40]="foreverknight"; char str2[40]; int length; do {cout<<endl<<"\t""\t"<<"Username"<<"\t""\t"<<endl<<"\t""\t"; gets(str2); sound(300);delay(50);nosound();} while(strcmp(str2,str)); clrscr(); cout<<"PRO-BOOK (*_~)\n"; cout<<"loading...";delay(1000);cout<<"...";cout<<"...";delay(900);cout<<"..."; delay(700);cout<<"collecting data.........";delay(1000);cout<<"...finished"; delay(500);clrscr();cout<<"*WELCOME TO PRO-BOOK*\n"; cout<<" _________\n"; cout<<"|| || User : foreverknight\n"; cout<<"|| (*_*) || Age : 17\n"; cout<<"|| <<III>> || Work at : CEO eLeCTRON co.ltd\n"; cout<<"|| _/-\\_ || Relationship : complicated\n"; cout<<"||_________|| Follower : 190,650,000++\n"; for(int a=0;a<11;a++){for(int b=0;b<=a;b++)cout<<"*";}
(1000);cout<<"\n\nPRESS ENTER TO CONTINUE & Esc. TO LOG OUT\t"; for(;;) { ch=getch(); sound(300);delay(50);nosound(); if(ch==13) break; else if(ch==27)
{delay(500);cout<<"\nlogging out...";delay(400);cout<<"...";delay(900); cout<<"encrypting data......";delay(1000);cout<<"data safely encrypted.......";delay(900);
//exit(-1);
list();} else cout<<"\n\n\t\t\t\a ! WRONG KEY ENTERED !"; delay(300); cout<<"\n\n\n\t PRESS ENTER ";} clrscr(); clrscr();cout<<"*WELCOME TO PROBOOK*\n"; cout<<" _________\n"; cout<<"|| || User : foreverknight\n"; cout<<"|| (*_*) || Age : 17\n"; cout<<"|| <<III>> || Work at : CEO eLeCTRON co.ltd\n"; cout<<"|| _/-\\_ || Relationship : complicated\n"; cout<<"||_________|| Follower : 190,650,000++\n"; for(a=0;a<11;a++){for(int b=0;b<=a;b++)cout<<"*";} int b; delay(1000);cout<<"\n\n PRO- BOOK\n*a new way of life*"<<endl; getch(); list(); getch(); }

void like()
{
cout<<" /--) I (--\\"<<endl; cout<<" /.../ I \\...\\"<<endl; cout<<" / ...(__ ___ I ___ _)... \\"<<endl; cout<<"||,...Like..((_i___) I (___i_))..Like...||"<<endl; cout<<"||...Like.((_i___) I (___i_)).Like...||"<<endl; cout<<"||Like...((_i___) I (___i_))...Like||"<<endl; cout<<"||-.--.___((_i__) I (__i_))___.--.-||"<<endl; cout<<"\n\nRate us @ www.facebook/programmer.com"<<endl;
}

void option()
{char ch; do { clrscr(); int lob; for(lob=0;lob<60;lob++) cout<<"="; cout<<"\n"; headline(); for(lob=0;lob<60;lob++) cout<<"="; cout<<"\n\n\n"; cout<<"\n\tCHOOSE YOUR GAMING MODE\n"; cout<<"\n\t01. SINGLE PLAYER"; cout<<"\n\t02. MULTIPLAYER"; cout<<"\n\t03. EXIT"; cout<<"\n\n\tPlease Select Your Option (1-3) "; ch=getche(); sound(300);delay(50);nosound(); switch(ch) { case '1':obj.play(); break; case '2':kps[1].multiplay(); break; case '3':list(); break; default :cout<<"\a";
}
}while(ch!='2');
}

void headline()
{
cout<<"\t $$$$$ $$$ $$$$$ $$$$$ $ $ $$$$$\n"; cout<<"\t $$ $ $ $ $ $$ $ $$ $$\n"; cout<<"\t $$ $$$$$ $$$$$ $ $ $ $ $$ $$\n"; cout<<"\t $$ $ $ $ $ $ $$ $$ $$\n"; cout<<"\t $$$$$ $ $ $$$$$ $$$$$ $ $ $$$$$\n";
}

BIBLOGRAPHY:
B.tech Palden Tsewang
Sumita Arora
Balagurusamy
www.codeblock.com

(*_*) <<`!!`>>
,_//Thank you all for your guidance

Similar Documents

Premium Essay

Computer Codes: What´s Ada Lovelace?

...Have you ever wondered who wrote computers codes, who made games possible, and who made it possible for me to write this story? I can tell you the answer to that question the answer is Ada Lovelace. Ada wrote the first published code and experimented with computers. Birth Ada Lovelace entered the world on December 10, 1815 in London. She was the daughter of the famous poet Lord Byron and Anne Isabella Milbanke. she was from a privileged family and received private tutoring just like her mother and did not attend public schools. She studied a range of subjects, but most importantly, she studied math more than anything else which influenced her love for coding and mathematics. The first code. At the age of 17 she met Charles Babbage. Charles...

Words: 297 - Pages: 2

Free Essay

Balaji Courier Express

... • We will represent typical operational processes in a service business. • We will exaggerate the reality of operational business, helping you to identify common symptoms of inefficiency. • We will teach you a selection of the powerful tools that we use in Lean Six Sigma. • Do not adapt the process you have been instructed to perform. • Exercise is split in Round 1 and Round 2. • No procedural changes are allowed until Round 2, when you will be briefed on what you can do. • In Round 1, we will establish a baseline for process performance. • By all means ask questions for clarification, but you may not always get an answer. Sound familiar? • Spell out your assumptions. • Refer respective computers for related data. • You may find yourself confused and frustrated with the process. We hope you do! It will act as an incentive to change and improve the business! • [pic] [pic] [pic] [pic][pic] You are all employees of Balaji Courier Express. Established in year 2000, BCE has central Hub is at Aurangabad (Corporate Office) and three Regional offices are at Nagpur, Solapur, Mumbai. BCE’s spread is through 5 area offices namely Thane, Pune, Dhule, Beed and Kolhapur. Also, each taluka place has got a zonal office (400 outlets). Overall, BCE has 505 employees. BCE has got both corporate and retail customers. You all are part of various teams. Central hub has got 20 employees (Additionally 5 employees are for Finance, accounts...

Words: 772 - Pages: 4

Free Essay

Essay

...researcher asks whether the interview (1) was falsified, (2) was conducted with a qualified respondent, (3) took place in the proper procedural setting, (4) was completed correctly and accurately, and (5) was accomplished in a courteous manner. The editing process involves scanning of interviews or questionnaire responses to determine whether the proper questions were asked, the answers were recorded according to the instructions given, and the screening questions were executed properly, as well as whether open-ended questions were recorded accurately. Once edited, the questionnaires are coded by assigning numerical values to all responses. Coding is the process of providing numeric labels to the data so they can be entered into a computer for subsequent statistical analysis. Data entry procedures and how to detect errors. There are several methods...

Words: 1341 - Pages: 6

Free Essay

This Is Wonderful

...Consumer Information FCC Notice This equipment has been tested and found to comply with the limits for a Class B digital device, pursuant to Part 15 of the FCC Rules. These limits are designed to provide reasonable protection against harmful interference in a residential installation. This equipment generates, uses and can radiate radio frequency energy and, if not installed and used in accordance with the instructions, may cause harmful interference to radio communications. However, there is no guarantee that interference will not occur in a particular installation. If interference generated by this unit is suspected, call Brink’s Customer Care at 1-800-445-0872. If this equipment does cause harmful interference to radio or television reception, which can be determined by turning the equipment off and on, the user is encouraged to try to correct the interference by one or more of the following measures: ♦ Re-orient the radio/television antenna; ♦ Move the television or receiver away from the unit. ♦ Plug the unit and the TV/radio receiver into different outlets, i.e. not on the same circuit breaker. ♦ Contact Brinks Home Security or an experienced TV/Radio technician for additional suggestions. ♦ Review additional instructions on www.mybrinks.com. This equipment complies with FCC Rules, Part 68. On the outside of this equipment is a label that contains, among other information, the FCC Registration Number and Ringer Equivalence Number (REN) for this equipment. If requested...

Words: 10912 - Pages: 44

Free Essay

Content Analysis

...collected. * Many respondents presented more than one thought or feeling. In some cases they described a sentence to capture the imagery in the pictures. * In such cases all individual thoughts and feelings were captured for coding process * Coding Scheme: - The coding scheme that was obtained is as below (in alphabetical order). Please observe the ads you would find how the below codes were developed. SNo | Code | 1 | Adventure sports | 2 | Business | 3 | Celebrity testimonial | 4 | Dance | 5 | Do’s and Don’ts | 6 | Fashion | 7 | Food | 8 | Festivales | 9 | Food | 10 | Handicrafts | 11 | History | 12 | Hospitality | 13 | Nature | 14 | Natural Landscape | 15 | Monuments | 16 | Music | 17 | People | 18 | Public Awareness | 19 | Religion | 20 | Shopping | 21 | Spirituality | 22 | Sports | 23 | Wellness | 24 | Wildfire | * Theme generation: - Seven themes were identified based on the coding schemes. The list of themes are as below Sno | Code | Theme | No of Ads | 1 | Fashion | Culture(that broadly describes the codes presented in previous column. | 15 | 2 | Festivals | | | 3 | Dance | | | 4 | Food | | | 5 | Handicrafts | | | 6 | Hospitality | | | 7 | Music | | | 8 | People | | | 9 | Religion | | | | | Flora | 9 | 10 | Nature | | | 11 | Natural Landscape | | | 12 | Wildlife | | | | | | | 13...

Words: 294 - Pages: 2

Premium Essay

Case Study: How ICD-10 Impacts Healthcare

...The World Health Organization established the International Classification of Diseases (ICD) to standardize medical records. ICD-10 is an update that reflects changing needs in medicine. The code offers increased detail and flexibility. However, implementing the code presents medical establishments with several challenges. The biggest challenge is finding common ground between the two frameworks. How ICD-10 Impacts Healthcare A presentation published by the Centers for Medicare and Medicaid Services explains that the World Health Organization created ICD-9 in 1979 to reflect current medical advances and establish universal coding procedures. [1] The system outlines the diagnoses, procedures and terminology used by caregivers. Medical organizations...

Words: 937 - Pages: 4

Premium Essay

Hsc300 Unit 3 Assignment

...Shelly reviewed the updates made to the Carrier Form Codes. • The Carrier Services and Agent Reporting Agreement were updated effective June 15, 2015 to allow the settlement of carrier form codes. • Based on carrier request and ARC approval, ARC will update our form code table in alignment with the carrier’s form code range to prevent transaction errors and duplicate usage in IAR. • Testing may need to be performed. • Carriers should initiate their requests through ARC’s Carrier Help Desk or Shelly Younger. The preference would be to begin with Shelly Younger. • ORION is a multi-year project which will modernize the current settlement system. Work will occur in five phases. • Phase I – Foundation for Travel Agency, Carrier and Credit...

Words: 578 - Pages: 3

Premium Essay

Unit 9 Vs Icd-9

... ICD-9 has approximately 13,000 codes that are V.S. ICD-10 has about 68,000 codes and are 3 3 to 5 digits. to 7 digits long. ICD-9 first digit is either E or V or numeric ICD-10 first digit is alpha; 2nd and 3rd are numeric; 4th thru 7th are either ICD-9 lacks detail...

Words: 720 - Pages: 3

Free Essay

Environmental Scie

...“Environmental Sci-Math Camp” (February 16, 2013) Theme: “Utilizing our Scientific and Mathematical Competencies for an Environment-Friendly Community” Registration:……………………………………………………………………………… 6:00-7:00 Program:……………………………………………………………………………………. 7:00-8:00 * Prayer Lester Marcaida * National Anthem Remo De3lovino and Jeffrey Lonceras * Exercise (Bear Dance) SAST,YES-O, and Math Club * Yell Campers * Opening Remarks Mr. Casipit and Mrs. Rossel Garcia. Flag, Poster and Slogan Making:………………………………………………….. 8:00-9:00 * 1 participant/group Ice Breaker:………………………………………………………………………………… 9:00-9:30 * Rubber Band/Head Count Scrapped Art and Logo Making:…………………………………………………. 9:30-10:30 * 1 participant/group Word Puzzle, Rubik’s Cube, Sudoku:……………………………………….. 10:30-12:00 * 1 participant/group Tagis Talino:…………………………………………………………………………… 10:30-12:00 * 4 participant/group Lunch (Command Bracelet and Trivia):……………………………………….12:00-1:00 Ice Breaker:………………………………………………………………………………….1:00-1;30 * Ingatan si Mother Egg/Head Count Obstacle Race:………………………………………………………………………………1:30-2:30 Energizer:……………………………………………………………………………………...

Words: 850 - Pages: 4

Free Essay

Piramid of Giza

... Strayer University Code of conduct in a business is extremely important. It sets boundaries in a work environment that keeps ethical behavior regulated. The Cheesecake Factory is one organization that has a code of conduct in place that is detrimental to the success of its business. Some of those key aspects are Compliance with the law, Non-Solicitation and Non-Raid and Non-Disparage Issues. These codes that are put in place uphold ethical behavior and also protects the organization itself. Compliance with the law is extremely important. This code states: “We expect staff members to comply with all applicable federal, state and local laws,regulations, rules and regulatory orders at all times. Neither a supervisor nor any other staffmember has the authority to direct another staff member to break any law or to conducthim/herself in a manner that is counter to the Code of Ethics”. The Cheesecake factory put this code in effect to make sure that their employees hold up their duties as law abiding citizens. In this they also stated that they do not tolerate sexual harraasement or drugs, which is very important now a days with everything going on. This should and I’m sure it is a basic code of conduct whether it be a business or a school. When we are jobs giving service to the world we must keep in mind that our responsibilities to law and order do not change. The Non-Solicitation code of conduct ensures that customers have a comfortable no...

Words: 981 - Pages: 4

Premium Essay

?? Yu Su

...window.NREUM||(NREUM={});NREUM.info = {"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"5c680aaa66","applicationID":"3969032","transactionName":"YFVaZEpRXURTARYKXVkffF9MflZDcQ0MF0BYXFRVSh9gXkYHTTBbQ1V8VUxRWltB","queueTime":0,"applicationTime":22,"ttGuid":"929511F7D923232","agent":"js-agent.newrelic.com/nr-768.min.js"}window.NREUM||(NREUM={}),__nr_require=function(e,n,t){function r(t){if(!n[t]){var o=n[t]={exports:{}};e[t][0].call(o.exports,function(n){var o=e[t][1][n];return r(o||n)},o,o.exports)}return n[t].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;op;p++)u[p].apply(s,t);return s}function a(e,n){f[e]=c(e).concat(n)}function c(e){return f[e]||[]}function u(){return t(n)}var f={};return{on:a,emit:n,create:u,listeners:c,_events:f}}function r(){return{}}var o="nr@context",i=e("gos");n.exports=t()},{gos:"7eSDFh"}],ee:[function(e,n){n.exports=e("QJf3ax")},{}],3:[function(e,n){function t(e){return function(){r(e,[(new Date).getTime()].concat(i(arguments)))}}var r=e("handle"),o=e(1),i=e(2);"undefined"==typeof window.newrelic&&(newrelic=window.NREUM);var a=["setPageViewName","addPageAction","setCustomAttribute","finished","addToTrace","inlineHit","noticeError"];o(a,function(e,n){window.NREUM[n]=t("api-"+n)}),n.exports=window.NREUM},{1:12,2:13,handle:"D5DuLP"}],gos:[function(e,n){n.exports=e("7eSDFh")},{}],"7eSDFh":[function(e,n){function t(e,n,t){if(r.call(e,n))return e[n];var o=t();if(Object.defineProperty&&Object.keys)try{return...

Words: 1521 - Pages: 7

Free Essay

Summary

...Alphabetic index’s which provides an index’s of disease descriptions in alphabetical list of terms and their corresponding codes. The alphabetic index’s consists of parts which are: indexes of disease & injury, external causes of injury, table of drugs, table of neoplasms & chemicals. The tabular list is a structured list of codes divided into chapters based on conditions & body systems. Tabular list consists of categories, subcategories and codes and when many times a specified code is not available for a condition then it is put through tabular list for the code to be specified. Tabular list descriptions are listed in more than one manner as well as made up of 21 chapters of disease, description and their codes. The first part Alphabetic index’s use and purpose is to organize the list of indexes of disease descriptions in alphabetical list of terms and their corresponding codes plus helps the medical staff member better locate the description matching the code. However tabular list is a category of codes which allows the medical staff to better identify or locate the right code to fit the description or term of condition. First I would like to list all the financial loses Of ICD-10 which are accurate payment for new procedures, rejected claims & fraudulent claims. Cause of error, longer time to figure how to translate term to right code as also...

Words: 451 - Pages: 2

Premium Essay

Bbt1

...recently purchased a small outpatient clinic that is approximately 50 miles from the hospital. Currently about 20-30 patients are seen daily by one provider at the clinic. The hospital does have a contract with several different businesses to provide care for workers injured at work. So let’s analyze my current staff: * 3 coders who take care of the hospital coding (1 of these coders does the coding for the outpatient clinic attached directly to the hospital as well) * 1 front office employee- this employee answers phones, takes care of patient paperwork, filing, etc. * 1 employee at the outpatient clinic that handles billing, coding, front office duties, and is attending college as well to get her RHIT certification A2. a. Code look-up software: This is software that is put into place to help coders...

Words: 1828 - Pages: 8

Premium Essay

Healthcare Coding and Compliance Task 1

...incidences a numerical (sometimes alphanumeric) value that is universal across insurance companies to collect payment for services rendered. Inpatient Coder- An inpatient coder is an individual that initiates requests for payments and reimbursement for procedures performed on a patient during a hospital stay on behalf of the medical facility. Inpatient Coders will deal more with ICD-9(10) or Diagnosis Codes than with CPT Procedure Codes. Inpatient coding could be considered to be more complex than outpatient coding because of the vast possibilities of different diseases, encounters and procedures. Outpatient Coder- An outpatient coder is an indiviual that initiates requests for payments for procedures performed either in a doctor's office or hospital outpatient department. Any procedure performed that does not require for the patient to stay more than 24 hours is considered outpatient. Outpatient coders typically deal more with CPT Procedure codes versus ICD 9(10) Diagnosis Codes. Outpatient coders that operate within doctor's offices are usually exposed to the same codes on a regular basis which is why many inpatient coders start off in an outpatient setting. Front Office Clerk The front office clerk is a job title that can differ in many different office settings. In this particular scenario, the front office clerk is responsible for basic clerical duties as well as processing health record requests and filing. In this position the clerk should be able to be HIPAA compliant...

Words: 2216 - Pages: 9

Premium Essay

Nt1330 Unit 1 Assignment

...emergency room report that I am not authorized to access or is beyond the scope of my work. It is my job to retain a secure environment and privacy of patients at work, and it doesn’t matter if the patient is a good friend of mine. I truly believe because Alice is my acquaintance I have to respect her privacy and confidentiality even more. Alice on the other hand, can inform me about her medical condition and stay at the hospital. Unless she gives her authorization, just out of curiosity I can’t access her medical information and visit her in the hospital. By doing so I would be violating the ethics and core values of the HIM profession. I have to adhere to standards of ethical conduct, as prescribed by State and Federal laws and follow AHIMA code of ethics. If I come across Alice’s information by mistake it is my foremost duty to inform the manager or the superior about the situation honestly. Accessing information about Alice, who is a friend, may seem like a small circumstance but, each wrong action grows into a much larger problem down the line. Moreover, Alice may feel that her privacy and confidentiality are violated and report about the situation to others. If these types of scenarios are handled in the...

Words: 552 - Pages: 3