answersLogoWhite

0

AllQ&AStudy Guides
Best answer

How many quarters in a year

This answer is:
Related answers

How many quarters in a year

View page

Q1= means =jan to march

Q2= means =apr to jun

Q3= means =july to sep

and

Q4 = means = i think u got that=oct to dec

View page

The AT&T TS-Tab has several results including: Q1, Q2, Q3, Q4, Q5, Q6, and NQ- Not Qualified. The lower the number equals the least amount a trouble a person had completing the test. Q3 and above is preferable.

View page

Quadrant.......... X ...........Y

.......I ............positive..positive

......II............negative positive

.....III............negative negative

......IV............positive...negative

---------------|---------------

------Q2------|-------Q1-----

---------------|---------------

---------------|---------------

========|=========

---------------|---------------

---------------|---------------

------Q3------|------Q4------

---------------|---------------

View page

#include <p18f4580.h>

#pragma config OSC = IRCIO67

#pragma config WDT = OFF

#pragma config LVP = OFF

#pragma config PBADEN =OFF

#define Q1 PORTDbits.RD0

#define Q2 PORTDbits.RD3

#define Q3 PORTDbits.RD1

#define Q4 PORTDbits.RD2

#define SW1 PORTBbits.RB1

#define SW2 PORTBbits.RB2

#define SENSOR1 PORTBbits.RB3

#define SENSOR2 PORTBbits.RB0

void main()

{ TRISB = 0;

PORTB = 0;

TRISD = 0;

PORTD = 0;

while (1)

{

if ((SW1==1)&&(SW2==0)&&(SENSOR1==0)&&(SENSOR2==0))

{

Q1=1; //clockwise

Q4=1;

Q2=0;

Q3=0;

}

else if ((SW1==0)&&(SW2==0)&&(SENSOR1==1)&&(SENSOR2==0))

{

Q1=0;

Q2=0;

Q3=0;

Q4=0;

}

else if ((SW1==0)&&(SW2==1)&&(SENSOR1==0)&&(SENSOR2==0))

{

Q2=1; //counter clockwise

Q3=1;

Q1=0;

Q4=0;

}

else if ((SW1==0)&&(SW2==0)&&(SENSOR1==0)&&(SENSOR2==1))

{

Q1=0;

Q2=0;

Q3=0;

Q4=0;

}

}

}
View page
Featured study guide
📓
See all Study Guides
✍️
Create a Study Guide
Search results