answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What size electric motor is equal to a Cox 049?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How thick is 18 gauge steel tubing?

I believe it's typically rounded to .049" thick wall. Vendor sites like centralsteel.com are a good resource.


How to program a man walking using java code?

Source code: 001#include<graphics.h> 002using namespace std; 003 004int main() 005{ 006 int gd=DETECT, gm; 007 initgraph(&gd, &gm,NULL); 008 int i,walk=0; 009 010 setcolor(BROWN); 011 bar3d(10,280,getmaxx()-50,320,10,50); 012 outtextxy(200,300,"www.2k8618.blogspot.com"); 013 014 setcolor(WHITE); 015 circle(70,140,30); 016 circle(60,130,3); 017 circle(80,130,3); 018 line(70,135,70,145); 019 //line(65,155,75,155); 020 arc(70,140,60,120,15); 021 022 line(70,170,70,220); 023 line(70,170,50,220); 024 line(70,170,90,220); 025 line(70,220,55,270); 026 line(70,220,85,270); 027 028 setcolor(9); 029 fillellipse(150,100,60,40); 030 outtextxy(110,90,"hi," ); 031 outtextxy(110,100,"go for a walk?"); 032 033 delay(5000); 034 035 for(i=0;i<30;i++) 036 { 037 038 /* 039 cleardevice(); 040 walk+=5; 041 bar3d(10,280,getmaxx()-50,320,10,50); 042 circle(70+walk,140,30); 043 line(70+walk,170,70+walk,220); 044 line(70+walk,170,40+walk,220); 045 line(70+walk,170,100+walk,220); 046 line(70+walk,220,30+walk,270); 047 line(70+walk,220,110+walk,270); 048 delay(500);*/ 049 050 walk+=5; 051 052 cleardevice(); 053 054 setcolor(BROWN); 055 bar3d(10,280,getmaxx()-50,320,10,50); 056 outtextxy(200,300,"www.2k8618.blogspot.com"); 057 058 setcolor(WHITE); 059 circle(70+walk,140,30); 060 line(70+walk,170,70+walk,220); 061 line(70+walk,170,50+walk,220); 062 line(70+walk,170,90+walk,220); 063 line(70+walk,220,55+walk,270); 064 line(70+walk,220,85+walk,270); 065 066 delay(250); 067 068 walk+=5; 069 070 cleardevice(); 071 072 circle(70+walk,140,30); 073 line(70+walk,170,70+walk,270); 074 075 setcolor(BROWN); 076 bar3d(10,280,getmaxx()-50,320,10,50); 077 outtextxy(200,300,"www.2k8618.blogspot.com"); 078 079 delay(250); 080 081 walk+=5; 082 083 cleardevice(); 084 085 bar3d(10,280,getmaxx()-50,320,10,50); 086 outtextxy(200,300,"www.2k8618.blogspot.com"); 087 088 setcolor(WHITE); 089 circle(70+walk,140,30); 090 line(70+walk,170,70+walk,220); 091 line(70+walk,170,60+walk,220); 092 line(70+walk,170,80+walk,220); 093 line(70+walk,220,55+walk,270); 094 line(70+walk,220,85+walk,270); 095 096 delay(250); 097 098 } 099 100 circle(60+walk,130,3); 101 circle(80+walk,130,3); 102 line(70+walk,135,70+walk,145); 103 line(65+walk,155,75+walk,155); 104 //arc(70,140,60,120,15); 105 106 setcolor(8); 107 fillellipse(walk-10,100,60,40); 108 outtextxy(walk-30,100,"lonely..."); 109 110 delay(2500); 111 112 getch(); 113 closegraph(); 114 return 0; 115}


Write A program to add and multiply two very large numbers using doubly linked list?

class Node 002 { 003 private: 004 int data; 005 006 public: 007 friend class List; 008 friend class stack; 009 010 Node* next; 011 012 Node(){data = 0;} 013 014 Node(int x) 015 { 016 next = 0; 017 setdata(x); 018 } 019 020 int getdata() 021 { 022 return data; 023 } 024 025 void setdata(int x) 026 { 027 data = x; 028 } 029 030 void print() 031 { 032 cout<<data; 033 } 034 035 ~Node(){} 036 }; 037 038 class List 039 { 040 private: 041 Node* Head; 042 Node* Tail; 043 044 public: 045 046 friend class stack; 047 List(){Head = 0; Tail = 0;} 048 049 void addnode(int x) 050 { 051 Node *current = new Node(x); 052 053 if(Head 0) 197 { 198 return true; 199 } 200 else 201 { 202 return false; 203 } 204 } 205 206 Node* topEl() 207 { 208 return (L.top()); 209 } 210 211 void printstack() 212 { 213 L.printlist(); 214 } 215 216 ~stack() 217 { 218 L.deletelist(); 219 } 220 221 }; 222 223 int main() 224 { 225 stack operand1; 226 stack operand2; 227 stack carry; 228 stack result; 229 int tempsum; 230 int a,b,c; 231 int carry1; 232 Node *n1 = NULL; 233 Node *n2 = NULL; 234 Node *n3 = NULL; 235 236 operand1.push(3); 237 operand1.push(8); 238 operand1.push(0); 239 operand2.push(5); 240 operand2.push(3); 241 operand2.push(5); 242 243 244 245 while(!(operand1.isEmpty()) && !(operand2.isEmpty())) 246 { 247 n1 = operand1.topEl(); 248 a = n1->getdata(); 249 n2 = operand2.topEl(); 250 b = n2->getdata(); 251 tempsum = a + b; 252 253 if(tempsum > 9) 254 { 255 c = 0; 256 if(!(carry.isEmpty())) 257 { 258 n3 = carry.topEl(); 259 c = n3->getdata(); 260 carry.pop(); 261 } 262 carry1 = tempsum / 10; 263 tempsum = tempsum % 10; 264 carry.push(carry1); 265 result.push(tempsum + c); 266 } 267 else 268 { 269 if(!(carry.isEmpty())) 270 { 271 n3 = carry.topEl(); 272 c = n3->getdata(); 273 result.push(tempsum + c); 274 carry.pop(); 275 } 276 else 277 { 278 result.push(tempsum); 279 } 280 } 281 operand1.pop(); 282 operand2.pop(); 283 } 284 285 n1 = operand1.topEl(); 286 a = n1->getdata(); 287 n2 = operand2.topEl(); 288 b = n2->getdata(); 289 tempsum = a + b; 290 if(carry.isEmpty()) 291 { 292 result.push(tempsum); 293 } 294 else 295 { 296 n3 = carry.topEl(); 297 c = n3->getdata(); 298 result.push(tempsum + c); 299 carry.pop(); 300 } 301 operand1.pop(); 302 operand2.pop(); 303 304 result.printstack(); 305 306 system("pause"); 307 return 0; 308 }


Related questions

How many kilogram are in 49 gram?

4900 g are equal to 4.9 kg.


What is SCP-049?

I think peoples call SCP-049 "killer stranger" or doctor ... I guess?! nvm, let's get to the point. So, did you know that when SCP-049 kills you, you become SCP-049-2? Some peoples are confused about why is "un-dead" men (men when it's killed by SCP-049, it turns into a zombie), well, good question. An un-dead person is called SCP-049-2 because it's another SCP-049, so it's marked with -2, interesting, isn't it? Now let's talk about SCP-049: SCP-049 is a creature made by SCP Foundation. When it sees a person, or goat (XD, but it's possible for any animal or person to become a zombie (SCP-049)), it follows the person until he doesn't catch it. If person or goat (again), it will become an SCP-049-2. Did you know: When a person becomes SCP-049-2, then SCP-049 will become a leader of any SCP-049-2. His look>


What county has 049 code in Ireland?

Parts of county Cavan and county Meath use 049.


How do you write .049 in words?

Forty-nine thousandths.


What is the specification of cartier calibre 049?

The 049 calibre is an automatic movement based on an ETA 2892-A2. It is 25.6mm wide and 3.6mm thick, it has 21 jewels and operates at 28,800 vph.


What guitar does Mark Tremonti use?

D'Addario EJ20 Nickel Wound Jazz Extra Light Electric Guitar Stings he uses nine through 42's.


How do you spell 94 049 in words?

Ninety four thousand and forty nine


How many pounds in 54 grams?

54 grams = 0,119 049 6 pound


What is the telephone number of Calamba Philippines Central Post Office?

(049)545-9504


What is game freaks phone number?

after going on their website (pokemon.co.jp) i found out that their phone number is 0120-049-725


What area in Germany has the code 049?

Germany is country code +49. German area codes beginning with 049 (or +49 49 in international format) are in the area of Ostfriesland and Emsland, but you need one or two more digits to be specific. Germany has more than 5,000 landline area codes.


What is the address of DTI calamba city?

3rd floor marcelita bldg. brgy. real phone number: 049-5456169