The extension of a batch file is
A) bat
B) exe
C) COM
D) txt
A
You might also like to view...
Which of the following statements is false?
a) The template Grid App defines three-page app with predefined layouts and GUI controls. The provided pages allow the user to view a collection of groups of items displayed in a grid of rows and columns, view particular group’s details and view a particular item’s details. b) The template Split App defines a two-page app with predefined layouts and GUI controls. The first page allows the user to view a collection of groups of items displayed in a grid. The second page allows the user to view particular group and a selected item’s details. c) There are two predefined themes for Windows Store apps: Black (the default) and White. Microsoft recommends using the Black theme for apps that present mostly images and video and the White theme for apps that display lots of text. d)The IDE’s Design view is used for drag-and-drop GUI design and the XAML view shows the generated XAML markup.
To create a table, you must indicate the number of rows and ________ you want to start with
Fill in the blank(s) with correct word
DTDs employ a syntax called _____, which is different from the syntax used for XML.
A. SQL B. EBNF C. PHP D. Perl
What will be output from the following code:
``` public void t e s t 7 ( ) { int x = 1 2 ; int y = 0 ; while ( x < 10 j j y < 1) { x = x + 1 ; y = y + 1 ; System . out . p r i n t l n ( x + " , " + y ) ; } } ```