answersLogoWhite

0


Best Answer

yo simply go to options on your computer and click print. then a little screen will come up and you can select how big it is if you have a printer that has those options like Dell , Epson, Hp , Gateway , Microsoft , Acer , toshiba , or Asis.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you print 2 x 2?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write the program witch show that the number is even or odd?

In BASIC: 10 INPUT X: IF X = 999 THEN STOP ELSE PRINT X; 20 IF X/2 = INT(X/2) THEN PRINT "EVEN" ELSE PRINT "ODD" 30 GOTO 10


Write a qbasic program to accept a no and print it multiple table?

Cls print the multiples tables of 1 to 5 for x=1 to 5 for y=1 to 10 print x;"*";y;"=";x*y next y print print next x end


What information does Windows XP Professional allow you to access from a print queue?

X The filenames of the documents waiting to print X The current status of print jobs X The names of senders of current print jobs


How do you write a programme in basic to assign a number and print its square?

num%=9 CLS PRINT "The square of: "; num%; " = "; num%*num% END


How can we find percentage's in QBASIC?

this is nested if statement cls input"enter percent age of marks:" ,x if x>=50 and x>=100 then print"first division" elseif x>=50 and x< 60 then print"second division" elseif x>=33 and x<50 then print"third division" else print"fail" endif


What is used in python programming for space in output?

I interpreted your question as this: What is used in Python for adding a blank line to the output? If you are looking for this, a simple print statement will do: print #in python 2.x or print() #in python 3.x If that wasn't what you were looking for, change the question to be more clear.


Draw a flow chart to add 2 numbers and print it?

start input x input y x + y output z End


Example of constructor?

class a { int x=2; a() { x=0; } void main() { a obj=new a(); System.out.print(obj.a); } } the above program will print the value of x as "0"


How do you print the numbers 1 through 50 using a do-loop while statement in Visual Basic.NET?

x as int = 0 while x < 50 x = x + 1 print x endwhile


Print a table of 2 in vb?

print table of 2 in vb


What is the symbol for multiplication in QBasic?

====== FOR tablesNo%=1 TO 12 CLS PRINT "PROGRAM: "; tablesNo%; "X Tables:-" PRINT FOR timesNo%=1 TO 12 PRINT timesNo%; " X "; tablesNo%; " = "; timesNo%*tablesNo% NEXT PRINT PRINT "Press [SPACEBAR] key to continue..." SLEEP NEXT END


How to write a program in c plus plus to print table of even number?

void print_evens (size_t n) {for (size_t x=0; x<=n; x+=2) { std::cout << x << std::endl; } }