1.
Which keyword is used to dynamically allocate memory in C?
2.
Which of the following is a valid data type in C?
3.
An array in C is a collection of:
4.
Which of the following is a correct way to declare a pointer to an integer variable in C?
5.
When we delete any file where does it go?
6.
When was C programming developed?
7.
The #include directive in C is used for:
8.
Can we create new icon on the desktop?
9.
In MS Access, data is primarily stored in:
10.
Where can we see the Date and Time?
11.
What we call the small pictures on desktop screen?
12.
What is the shortcut key to Rename a folder?
13.
Which of the following is NOT a data type in MS Access?
14.
How can you add a comment to your Visual Basic code to explain its functionality?
15.
A report in MS Access is used to:
16.
The global variables are ____________.
17.
What data type can store whole numbers in Visual Basic?
18.
What event is triggered when a user clicks a button on a Visual Basic form?
19.
What is the extension for a Visual Basic project file?
20.
A query in MS Access is used to:
21.
Can we hide our confidential folder?
22.
Which control allows users to enter text in a Visual Basic form?
23.
Which of the following is a valid way to comment out multiple lines of code in C?
24.
Where can we store many files and sub folders?
25.
A form in MS Access is used for:
26.
What does the & operator represent in C?
27.
The following code snippet displays a message box with the text "Hello World!". Which function achieves this?
29.
Which of the following is an important requirement of c programming?
30.
An IF statement allows you to execute code conditionally. What syntax is used for the condition?
31.
What was C programming adapted from?
32.
What is the name of bottom bar of the screen?
33.
What view allows you to modify the structure of a table in MS Access?
34.
Which keyword declares a variable in Visual Basic?
35.
A loop allows you to repeat a block of code multiple times. Which loop iterates a specific number of times based on a counter variable?
36.
A primary key in MS Access must be:
37.
Which of these is NOT a relational or logical operator?
38.
In a for loop, the condition is checked:
39.
The sorting function in MS Access allows you to:
40.
An integer (int) typically occupies___________ bytes?
41.
What does the strcmp() function in C do?
42.
What keyword is used to define a function in Visual Basic?
43.
Determine the output of the C code mentioned below: #include int main() { float q = ‘a’; printf(“%f”, q); return 0; }
44.
What is the keyword used to define a function in C?
45.
Which of the following is the default file extension for an MS Access database?
46.
To create a relationship between two tables in MS Access, you use:
47.
Can we re use the files after recovering from Recycle Bin?
48.
The output of the C code mentioned below would be: #include struct employee { int id; char rank[5]; } void main() { struct employee e; s.no = 30; printf(“howdy”); }
49.
What are float variables?
50.
What will be the output of the following C code? #include int main() { int p = 1, q = 2, r = 3, s = 4, x; e = r + s = q * p; printf(“%d, %d\n”, x, s); }