Advt

Master Demo Never Delete

PLEASE SELECT YOUR LANGUAGE FROM BELOW

ITI Copa MCQ IN Gujarati | ITI Copa MCQ IN Hindi | ITI Copa MCQ IN English

NCVT AITT (All India Trade Test) CBT exam Practice COPA trade MCQ (Multiple choice Question) online. Also you can practice mock test exam online.

I.T.I COPA Trade MCQ also useful for competitive exam like PSU Job exam As well as Government Job Exam, Apprentice job.

PLEASE SELECT YOUR LANGUAGE FROM BELOW

1.
Which VBA built in function returns location at the second string occurs within the first string?

2.
Which keyword is used to declare the variables in project scope?

3.
In VBA, How many types of access specifiers available in VBA?

4.
Which type of variable cannot be declared within a procedure in VBA?

5.
Which variable recognized only within the procedure in which it is declared?

6.
How many levels of variable scope available in VBA?

7.
What will be the output of the following VBA code? Debug.printformat(#1/1/2017#,”yyyy/mm/dd”)

8.
Which function returns true if the expression is a valid date, otherwise it returns false in VBA?

9.
What is the full form of UDF in VBA?

10.
Which function returns the day of the month (number from 1 to 31) given date value in VBA?

11.
Which function returns the current system date and time in VBA?

12.
Which function extracts the first 5 characters from a string in VBA?

13.
Which color of dot indicate the breakpoint in VBA?

14.
Which shortcut key is used to set the properties of form while designing?

15.
Which shortcut key is used to open code window in VBA?

16.
Which code is used to display a user form in VBA?

17.
Which mathematical function returns square root of a specified number in VBA?

18.
Which VBA function is used to convert the string from uppercase to lowercase?

19.
Which of the following is logical operator in VBA?

20.
Which character is to be suffixed for long data type in VBA?

21.
What is the storage size of decimal data type in VBA?

22.
What is the storage size of currency data type in VBA?

23.
How many numeric data types available in Excel VBA?

24.
What is the another name for keywords in VBA?

25.
Which key word is used to declare the variable in VBA?

26.
Which data type can hold any type of values in VBA?

27.
Which entitie hold data in VBA?

28.
Which worksheet method is used to copy a sheet to another location in the workbook?

29.
Which VBA worksheet property return or sets a string value that represents the object name?

30.
Which method displays the data form associated with the worksheet in VBA?

31.
Which VBA property returns a range object that represents all the cells on the worksheet?

32.
Which object is member of the workbook?

33.
Which type of work book method cannot be modified in VBA?

34.
Which workbook property returns a string value that represents the name of the object in VBA?

35.
Which workbook property returns the name of the object including its path on disk in VBA?

36.
Which can hold lot of data with one variable in VBA?

37.
Which type of list box enables one choice of adjacent choice in VBA?

38.
Which button has three states in VBA?

39.
Which box groups related controls into one visual unit in a rectangle with an optional label?

40.
Which is used to create user interface forms?

41.
Where does Excel come in object hierarchy of VBA?

42.
Which shortcut key is used to open project explorer window in VBA?

43.
Which shortcut key is used to open VBA Editor from the Excel worksheet?

44.
What is the Full form of IDE?

45.
Which shortcut key is used to step into line - by - line execution in VBA?

46.
What is called the set of commands bundled together under one name?

47.
What is called the set of statement that are executed under one name?

48.
Which one is attributes of an object in VBA?

49.
What is called double clicking an object in VBA?

50.
Which is used to type / edit the programming code in VBA?

51.
What is the alternate name of Bugs?

52.
Which shortcut key is used to open the Visual Basic Editor In VBA?

53.
Which simplifies the work to be eliminating or rewriting the code in VBA?

54.
Which type of variable can be accessed or used by subroutines outside the modules in VBA?

55.
Where there is no difference between dim and private in VBA?

56.
Which method is used to pass the reference to the arguments?

57.
Which function is used to check whether the given input is numeric or Not in VBA?

58.
Which function returns specified part of a given date in VBA?

59.
Which function returns the difference between two date values based on the interval specified in VBA?

60.
What is the return type of CSng function in VBA?

61.
Which VBA code is used to load user form into memory but do not display?

62.
Which VBA code is used to remove the user form from memory?

63.
Which window displays the watched expression including the one just added?

64.
Which one is indicated by a red dot with a line of code highlighted in red in VBA?

65.
Which is used to repeats the same steps in case of frequency needed actions in VBA?

66.
Which function returns the integer portion of a number in VBA?

67.
Which function returns the hyperbolic cosine of the specified angle in VBA?

68.
Which mathematical function generates a random number in VBA?

69.
Which operators are concatenation operator in VBA?

70.
Which type of words cannot use for any other purpose in VBA?

71.
Which is a series of items where all items share the same properties and methods in VBA?

72.
Which button allows a single choice within a limited set of mutually exclusive choice?

73.
Which box has three states in VBA?

74.
Which one creates a box with a scrollable list containing a number of input values in VBA?

75.
Which control is suitable to collect the input from the user in VBA?

76.
Which is a proper object hierarchy in VBA?

77.
What is the shortcut key to run the current procedure in VBA?

78.
Which window displays the entire list of local varibles and their current values in VBA?

79.
Which window is similar to the locals window, but it is used to tracing the variables in VBA?

80.
Which shortcut key is used to open the immediate window?

81.
What is the another name trigger for an action in VBA?

82.
Which shortcut key allows debugger to run the current procedure and go line after line called the procedure in VBA?

83.
While debugging code, which statement allows to go to the highlighted line?

84.
Which control is used to increase or decrease a value, such as a number time or date?

85.
Which VBA function compares given strings and returns -1 if the first string is smaller than the second string, returns 0 if both are equal and 1 if the first string is greater than second string?

86.
Which scope does the variable declared with dim and remains in the existance only as long as the procedure in which if is declared is running?

87.
What will be the output of the following VBA code? Sub test ( )a = 9Debug.Print Sqr (a) End sub

88.
What will be the output for the following VBA code? Debug.print DateDiff(“yyyy”,”1/12/2016”,”31/1/2017”)

89.
What will be the output of the following VBA code? Sub test ( )x = “institue”Debug.print Format (x,”>”) End sub

90.
What will be the output of the following VBA code? Sub test ( )Dim S AS stringS = “wholehearted” Debug.Print mid(s,6,4) End sub

91.
What will be the output of the following VBA code? Sub test ( )a = “ Computer operator” Debug.Print left(a,10) End sub

92.
What will be the output of the following VBA code? Sub test ( )Dim l as integer Dim S as stringS = “Time is money” l = len(s) Debug.print “The length is “ & l End sub

93.
What will be the output of the following VBA function?Sub stg ( )Str = “Mathematics” Debug.Print right (str,6) End sub


Please click Below Page Number for more MCQ

MORE MCQ

Advertisement

1 Comment

Leave A Reply

Please enter your comment!
Please enter your name here