ITI COPA
Home
Practice Set
NIMI MOCK TEST
Employability Skills
COPA - 2nd Semester - Module 2 : Programming with VBA
Question 1
Which VBA built in function returns location at the second string occurs within the first string? | कौन सा VBA बिल्ट इन फंक्शन के द्वारा पहली स्ट्रिंग के भीतर दुसरे स्ट्रिंग की लोकेशन प्राप्त होती है?
Mid()
Chr()
ASC()
Instr()
Question 2
Which keyword is used to declare the variables in project scope? | प्रोजेक्ट स्कोप में वेरिएबल को घोषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
Static
Private
Public
Protect
Question 3
In VBA, How many types of access specifiers available in VBA? | VBA में, VBA में कितने प्रकार के एक्सेस स्पेसिफायर उपलब्ध हैं?
2
3
4
6
Question 4
Which type of variable cannot be declared within a procedure in VBA? | VBA में किस प्रकार के वेरिएबल को एक प्रोसीजर के भीतर घोषित नहीं किया जा सकता है?
Project scope | प्रोजेक्ट स्कोप
Local scope | लोकल स्कोप
Global scope | ग्लोबल स्कोप
Module scope | मोड्यूल स्कोप
Question 5
Which variable recognized only within the procedure in which it is declared? | किस वेरिएबल को केवल उस प्रोसीजर के भीतर मान्यता दी गई है जिसमें इसे घोषित किया गया है?
Local scope | लोकल स्कोप
Module scope | मोड्यूल स्कोप
Global scope | ग्लोबल स्कोप
Project scope | प्रोजेक्ट स्कोप
Question 6
How many levels of variable scope available in VBA? | VBA में वेरिएबल स्कोप के कितने स्तर उपलब्ध हैं?
2
3
4
7
Question 7
What will be the output of the following VBA code? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Debug.printformat(#1/1/2017#,”yyyy/mm/dd”)
1/1/2017
Sun, Jan01, 2017
2017/01/01
Sunday, January 01, 2017
Question 8
Which function returns true if the expression is a valid date, otherwise it returns false in VBA? | कौन सा फ़ंक्शन सही रिटर्न करेगा अगर एक्सप्रेशन एक वैलिड दिनांक है, अन्यथा यह VBA में गलत रिटर्न करेगा?
CDate()
IsDate()
Day()
Dateadd()
Question 9
What is the full form of UDF in VBA? | VBA में UDF का पूर्ण रूप क्या है?
User Data Functions | यूजर डाटा फंक्शन
User Defined Functions | यूजर डिफाइंड फंक्शन
Undefined Functions | अनडिफाइंड फंक्शन
Used Data Functions | यूजर डाटा फंक्शन
Question 10
Which function returns the day of the month (number from 1 to 31) given date value in VBA? | कौन सा फ़ंक्शन महीने का दिन (1 से 31 तक की संख्या) VBA में दिनांक से बता देता है?
Day()
Date()
Month()
Datepart()
Question 11
Which function returns the current system date and time in VBA? | कौन सा फ़ंक्शन VBA में वर्तमान सिस्टम दिनांक और समय लौटाता है?
Date()
Day()
Hour()
Now()
Question 12
Which function extracts the first 5 characters from a string in VBA? | कौन सा फ़ंक्शन VBA में स्ट्रिंग से पहले 5 अक्षर निकालता है?
Right (str,5)
Left (str,5)
Mid (str,5)
Substr (str,5)
Question 13
Which color of dot indicate the breakpoint in VBA? | VBA में ब्रेकपॉइंट का संकेत डॉट का कौन सा रंग है?
Grey | ग्रे
Yellow | पीला
Maroon | मैरून
Red | लाल
Question 14
Which shortcut key is used to set the properties of form while designing? | डिज़ाइन करते समय फॉर्म के प्रॉपर्टीज को सेट करने के लिए किस शॉर्टकट कुंजी का उपयोग किया जाता है?
F4
Ctrl + F4
Alt + F4
Shift + F4
Question 15
Which shortcut key is used to open code window in VBA? | VBA में कोड विंडो खोलने के लिए किस शॉर्टकट बटन का उपयोग किया जाता है?
F7
Alt + F7
Ctrl + F7
Shift + F7
Question 16
Which code is used to display a user form in VBA? | VBA में यूजर फॉर्म प्रदर्शित करने के लिए किस कोड का उपयोग किया जाता है?
Load user Form1
User Form1.Show
User Form1.Show False
User Form1.Load
Question 17
Which mathematical function returns square root of a specified number in VBA? | कौन सा गणितीय कार्य VBA में निर्दिष्ट संख्या का वर्गमूल देता है?
Sqt()
Squr()
Sqrt()
Sqr()
Question 18
Which VBA function is used to convert the string from uppercase to lowercase? | अपरकेस से लोअरकेस में स्ट्रिंग बदलने के लिए किस VBA फ़ंक्शन का उपयोग किया जाता है?
Lcase()
Lower()
Ucase()
Upper()
Question 19
Which of the following is logical operator in VBA? | VBA में तार्किक ऑपरेटर निम्न में से कौन है?
+
-
*
And
Question 20
Which character is to be suffixed for long data type in VBA? | VBA में long डाटा टाइप के लिए कौन सा करैक्टर प्रत्यय होना है?
&
!
#
@
Question 21
What is the storage size of decimal data type in VBA? | VBA में डेसीमल डेटा प्रकार का भंडारण आकार क्या है?
2 bytes | 2 बाइट्स
4 bytes | 4 बाइट्स
8 bytes | 8 बाइट्स
12 bytes | 12 बाइट्स
Question 22
What is the storage size of currency data type in VBA? | VBA में करेंसी डाटा टाइप का संग्रहण आकार क्या है?
2 bytes | 2 बाइट्स
4 bytes | 4 बाइट्स
8 bytes | 8 बाइट्स
12 bytes | 12 बाइट्स
Question 23
How many numeric data types available in Excel VBA? | Excel VBA में कितने न्यूमेरिक डेटा टाइप उपलब्ध हैं?
4
5
7
8
Question 24
What is the another name for keywords in VBA? | VBA में कीवर्ड का दूसरा नाम क्या है?
Literals | लिटरल्स
Variables | वेरिएबल्स
User defined words | यूजर डिफाइंड वर्ड्स
Reserved words | रिजर्व्ड वर्ड्स
Question 25
Which key word is used to declare the variable in VBA? | VBA में वेरिएबल्स घोषित करने के लिए किस कीवर्ड का उपयोग किया जाता है?
Sub
Declare
Dim
AS
Question 26
Which data type can hold any type of values in VBA? | कौन सा डेटा टाइप VBA में किसी भी टाइप के वैल्यूज को धारण कर सकता है?
Variant
Variable
Constant
Keyword
Question 27
Which entitie hold data in VBA? | कोनसी एंटिटी VBA में डाटा रखता है
Literals | लिटरल्स
Constants | कांस्टेंट
Keywords | कीवर्ड
Variables | वेरिएबल
Question 28
Which worksheet method is used to copy a sheet to another location in the workbook? | वर्कशीट में किसी अन्य स्थान पर शीट की प्रतिलिपि बनाने के लिए किस वर्कशीट विधि का उपयोग किया जाता है?
Activate
Copy
Save AS
Select
Question 29
Which VBA worksheet property return or sets a string value that represents the object name? | कौन सा VBA वर्कशीट प्रॉपर्टी रिटर्न या एक स्ट्रिंग वैल्यू सेट करता है जो ऑब्जेक्ट नाम का प्रतिनिधित्व करता है?
Name | नाम
Index | इंडेक्स
Range | रेंज
Cells | सेल्स
Question 30
Which method displays the data form associated with the worksheet in VBA? | VBA में वर्कशीट से जुड़े डेटा फॉर्म को कौन सी विधि प्रदर्शित करती है?
Copy | कॉपी
Printout | प्रिंट आउट
Show Data Form | शो डाटा फॉर्म
Select | सेलेक्ट
Question 31
Which VBA property returns a range object that represents all the cells on the worksheet? | कौन सी VBA प्रॉपर्टी एक रेंज ऑब्जेक्ट लौटाती है जो वर्कशीट पर सभी सेल का प्रतिनिधित्व करती है?
Cells | सेल
Rows | रो
Index | इंडेक्स
Name | नाम
Question 32
Which object is member of the workbook? | निम्न में से वर्कबुक का सदस्य कौन सा ऑब्जेक्ट है?
Sheets | शीट्स
Workbook | वर्कबुक
Worksheet | वर्कशीट
Range | रेंज
Question 33
Which type of work book method cannot be modified in VBA? | VBA में किस प्रकार की वर्कबुक विधि को संशोधित नहीं किया जा सकता है?
Close | क्लोज
Save | सेव
Save AS | सेव एस
Protect | प्रोटेक्ट
Question 34
Which workbook property returns the name of the object including its path on disk in VBA? | VBA में डिस्क पर पाथ सहित ऑब्जेक्ट का नाम किस वर्कबुक प्रॉपर्टी द्वारा होता है?
Full name | पूरा नाम
Name | नाम
Path | पथ
Worksheets | वर्कशीट
Question 35
Which can hold lot of data with one variable in VBA? | VBA में कौन सा एक वेरिएबल एक साथ बहुत सारे डेटा को रख सकता है?
Arrays | ऐरे
Collections | कलेक्शन
Groups | ग्रुप
Methods | मेथोड्स
Question 36
Which type of list box enables one choice of adjacent choice in VBA? | किस प्रकार की लिस्ट बॉक्स VBA में आसान पसंद के एक विकल्प को सक्षम करता है?
Drop down list | ड्राप डाउन लिस्ट
Single - selection list box | सिंगल - सिलेक्शन लिस्ट बॉक्स
Multiple - selection list box | मल्टीप्ल - सिलेक्शन लिस्ट बॉक्स
Extended - selection list box | एक्सटेंडेड - सिलेक्शन लिस्ट बॉक्स
Question 37
Which button has three states in VBA? | VBA में तीन स्थितियों में कौन सा बटन है?
Option button | आप्शन बटन
Spin button | स्पिन बटन
Push button | पुश बटन
Command button | कमांड बटन
Question 38
Which box groups related controls into one visual unit in a rectangle with an optional label? | वैकल्पिक लेबल के साथ आयत में एक विजुअल यूनिट में कौन से बॉक्स ग्रुप संबंधित नियंत्रण रखते हैं?
Label box | लेबल बॉक्स
Group box | ग्रुप बॉक्स
List box | लिस्ट बाक्स
Combo box | कॉम्बो बॉक्स
Question 39
Which is used to create user interface forms? | यूजर इंटरफेस फॉर्म बनाने के लिए किसका उपयोग किया जाता है?
C | सी
VBA | वीबीए
HTML | एचटीएमएल
Javascript | जावास्क्रिप्ट
Question 40
Where does Excel come in object hierarchy of VBA? | एक्सेल, VBA की ऑब्जेक्ट पदानुक्रम में कहाँ आता है?
Range object | रेंज ऑब्जेक्ट
Workbook object | वर्कबुक ऑब्जेक्ट
Worksheet object | वर्कशीट ऑब्जेक्ट
Application object | एप्लीकेशन ऑब्जेक्ट
Question 41
Which shortcut key is used to open project explorer window in VBA? | VBA में प्रोजेक्ट एक्सप्लोरर विंडो खोलने के लिए किस शॉर्टकट कुंजी का उपयोग किया जाता है?
Ctrl + R
Ctrl + P
Ctrl + W
Ctrl + E
Question 42
Which shortcut key is used to open VBA Editor from the Excel worksheet? | Excel वर्कशीट से VBA एडिटर खोलने के लिए किस शॉर्टकट कुंजी का उपयोग किया जाता है?
Ctrl + F11
Alt + F11
Ctrl + V
Ctrl + F7
Question 43
What is the Full form of IDE? | IDE का पूर्ण रूप क्या है?
Integrated Development Element | इंटीग्रेटेड डेवलपमेंट एलिमेंट
Internal Development Environment | इंटरनल डेवलपमेंट एनवायरनमेंट
Integrated Development Environment | इंटीग्रेटेड डेवलपमेंट एनवायरनमेंट
Internal Distributed Environment | इंटरनल डिस्ट्रिब्यूटेड एनवायरनमेंट
Question 44
Which shortcut key is used to step into line - by - line execution in VBA? | VBA में लाइन - बाय - लाइन एक्जीक्यूशन के लिए किस शॉर्टकट की का उपयोग किया जाता है?
F2
F4
F5
F8
Question 45
What is called the set of commands bundled together under one name? | एक नाम के तहत एक साथ बंडल किए गए आदेशों के सेट को क्या कहा जाता है?
Properties | प्रॉपर्टीज
Macros | मैक्रो
Procedures | प्रोसीजर
Events | इवेंट्स
Question 46
What is called the set of statement that are executed under one name? | एक नाम के तहत निष्पादित किए जाने वाले स्टेटमेंट के सेट को क्या कहा जाता है?
Macros | मैक्रो
Properties | प्रॉपर्टीज
Procedures | प्रोसीजर
Events | इवेंट्स
Question 47
Which one is attributes of an object in VBA? | VBA में किसी ऑब्जेक्ट का एट्रिब्यूट निम्न में से कौन सा है?
Procedures | प्रोसीजर
Events | इवेंट्स
Macros | मैक्रो
Properties | प्रॉपर्टीज
Question 48
What is called double clicking an object in VBA? | VBA में किसी वस्तु पर डबल क्लिक करना क्या कहलाता है?
Events | इवेंट्स
Macros | मैक्रो
Procedures | प्रोसीजर
Methods | मेथड्स
Question 49
Which is used to type / edit the programming code in VBA? | VBA में प्रोग्रामिंग कोड को टाइप / एडिट करने के लिए किसका उपयोग किया जाता है?
Form window | फॉर्म विंडो
Properties window | प्रॉपर्टी विंडो
Immediate window | इमीडियेट विंडो
Visual basic editor | विजुअल बेसिक एडिटर
Question 50
What is the alternate name of Bugs? | बग्स का वैकल्पिक नाम क्या है?
Errors | एरर
Keywords | कीवर्ड
Variables | वेरिएबल
Constants | कांस्टेंट
Question 51
Which simplifies the work to be eliminating or rewriting the code in VBA? | VBA में कोड को समाप्त करने या फिर से लिखने के लिए कौन कार्य सरल करता है?
Class | क्लास
Object | ऑब्जेक्ट
Macros | मैक्रो
Functions | फंक्शन
Question 52
Which type of variable can be accessed or used by subroutines outside the modules in VBA? | VBA में मॉड्यूल के बाहर सब-रूटीन द्वारा किस प्रकार के वेरिएबल को एक्सेस या उपयोग किया जा सकता है?
Static
Private
Protect
Public
Question 53
Where there is no difference between dim and private in VBA? | जहां VBA में Dim और Private के बीच कोई अंतर नहीं है?
Local scope | लोकल स्कोप
Module scope | मोड्यूल स्कोप
Global scope | ग्लोबल स्कोप
Project scope | प्रोजेक्ट स्कोप
Question 54
Which method is used to pass the reference to the arguments? | आर्गुमेंट्स के रिफरेन्स को पास करने के लिए किस पद्धति का उपयोग किया जाता है?
Ref
Val
Reference
By Ref
Question 55
Which function is used to check whether the given input is numeric or Not in VBA? | किस फ़ंक्शन का उपयोग यह जांचने के लिए किया जाता है कि दिया गया इनपुट न्यूमेरिक है या नहीं, VBA में है?
Numeric()
Isnumber()
Isnumeric()
Isnum()
Question 56
Which function returns specified part of a given date in VBA? | VBA में दिए गए दिनांक का कौन सा फ़ंक्शन निर्दिष्ट भाग देता है?
Day()
Datevalue()
Datediff()
Datepart()
Question 57
Which function returns the difference between two date values based on the interval specified in VBA? | कौन सा फ़ंक्शन VBA में निर्दिष्ट अंतराल के आधार पर दो तिथि मानों के बीच अंतर देता है?
Datediff()
Day()
Daydiff()
Datedif()
Question 58
What is the return type of CSng function in VBA? | VBA में CSng फ़ंक्शन का रिटर्न टाइप क्या है?
Boolean
Variant
Single
String
Question 59
Which VBA code is used to load user form into memory but do not display? | यूजर फॉर्म को मेमोरी में लोड करने के लिए किस VBA कोड का उपयोग किया जाता है लेकिन प्रदर्शित नहीं होता है?
User form1.Show
Load userform1
Userform1.load
Show userform1
Question 60
Which VBA code is used to remove the user form from memory? | यूजर फॉर्म को मेमोरी से हटाने के लिए कौन सा VBA कोड प्रयोग किया जाता है?
Unload me
Userform1.hide
Unload userform1
User form show false
Question 61
Which window displays the watched expression including the one just added? | किस विंडो में वाटच एक्सप्रेशन को प्रदर्शित किया जाता है, जिसमें अभी जोड़ा गया है?
Module window | मॉड्यूल विंडो
Immediate window | इमीडियेट विंडो
Watch window | वाटच विंडो
Debug window | डिबग विंडो
Question 62
Which one is indicated by a red dot with a line of code highlighted in red in VBA? | VBA में लाल रंग में हाइलाइट किए गए कोड की एक पंक्ति के साथ लाल बिंदु द्वारा किसको इंगित किया गया है?
Break point | ब्रेक पॉइंट
Start point | स्टार्ट पॉइंट
End point | एन्ड पॉइंट
Error point | एरर पॉइंट
Question 63
Which function returns the integer portion of a number in VBA? | कौन सा फ़ंक्शन VBA में किसी संख्या का पूर्णांक भाग लौटाता है?
Int()
Format()
Abs()
Sign()
Question 64
Which function returns the hyperbolic cosine of the specified angle in VBA? | कौन सा फ़ंक्शन VBA में निर्दिष्ट कोण के हाइपरबोलिक cosine को वापस करता है?
Abs()
Cos()
Cosh()
hcos()
Question 65
Which mathematical function generates a random number in VBA? | कौन सा गणितीय कार्य VBA में एक रैंडम संख्या उत्पन्न करता है?
Random()
Rnd()
Rand()
Round()
Question 66
Which operators are concatenation operator in VBA? | VBA में कौन से ऑपरेटर कंकटनेशन ऑपरेटर हैं?
+ and - | + और -
& and - | &और -
& and + | &और +
& and * | &और *
Question 67
Which type of words cannot use for any other purpose in VBA? | VBA में किसी अन्य उद्देश्य के लिए किस प्रकार के शब्दों का उपयोग नहीं किया जा सकता है?
Literals | लिटरल्स
Keywords | कीवर्ड
Constants | कांस्टेंट
Variables | वेरिएबल
Question 68
Which is a series of items where all items share the same properties and methods in VBA? | वह आइटमों की एक श्रृंखला है जहां सभी आइटम VBA में समान प्रोपर्टी और मेथड को शेयर करते हैं?
Arrays | ऐरे
Groups | ग्रुप्स
Methods | मेथड
Collections | कलेक्शन
Question 69
Which button allows a single choice within a limited set of mutually exclusive choice? | कौन सा बटन पारस्परिक अनन्य विकल्प के सीमित सेट के भीतर एकल विकल्प की अनुमति देता है?
Button | बटन
Option button | आप्शन बटन
Spin button | स्पिन बटन
Toggle button | टॉगल बटन
Question 70
Which box has three states in VBA? | VBA में किस बॉक्स की तीन स्थितियां हैं?
List box | लिस्ट बाक्स
Combo box | कॉम्बो बॉक्स
Check box | चेक बॉक्स
Group box | ग्रुप बॉक्स
Question 71
Which one creates a box with a scrollable list containing a number of input values in VBA? | VBA में कौन से इनपुट मानों की संख्या के साथ स्क्रॉल करने योग्य लिस्ट वाला बॉक्स बनाता है?
Combo box | कॉम्बो बॉक्स
Option button | आप्शन बटन
Text box | टेक्स्ट बॉक्स
List box | लिस्ट बाक्स
Question 72
Which control is suitable to collect the input from the user in VBA? | VBA में यूजर से इनपुट एकत्र करने के लिए कौन सा कंट्रोल उपयोग होता है?
Label | लेबल
Text box | टेक्स्ट बॉक्स
Command button | कमांड बटन
User form | यूजर फॉर्म
Question 73
Which is a proper object hierarchy in VBA? | VBA में एक प्रॉपर ऑब्जेक्ट पदानुक्रम कौन सी है?
Worksheet, Workbook, Application, Range | वर्कशीट, वर्कबुक, एप्लीकेशन, रेंज
Range, Application, Worksheet, Workbook | रेंज, एप्लिकेशन, वर्कशीट, वर्कबुक
Range, Worksheet, Workbook, Application | रेंज, वर्कशीट, वर्कबुक, एप्लीकेशन
Application, Workbook, Worksheet, Range | एप्लीकेशन, वर्कबुक, वर्कशीट, रेंज
Question 74
What is the shortcut key to run the current procedure in VBA? | VBA में वर्तमान प्रोसीजर को चलाने के लिए शॉर्टकट कुंजी क्या है?
F2
F4
F5
F8
Question 75
Which window displays the entire list of local varibles and their current values in VBA? | कौन सी विंडो VBA में लोकल वेरिएबल की पूरी सूची और उनके वर्तमान वैल्यू को प्रदर्शित करती है?
Locals window | लोकल विंडो
Watch window | वाटच विंडो
Immediate window | इमीडियेट विंडो
Debugging window | डिबगिंग विंडो
Question 76
Which window is similar to the locals window, but it is used to tracing the variables in VBA? | कौन सी विंडो लोकल विंडो के समान है, लेकिन इसका उपयोग VBA में वेरिएबल को ट्रेस करने के लिए किया जाता है?
Call stack window | कॉल स्टैक विंडो
Watch window | वाटच विंडो
Immediate window | इमीडियेट विंडो
Debugging window | डिबगिंग विंडो
Question 77
Which shortcut key is used to open the immediate window? | इमीडियेट विंडो खोलने के लिए किस शॉर्टकट कुंजी का उपयोग किया जाता है?
Ctrl + G
Ctrl + L
Alt + G
Alt + L
Question 78
What is the another name trigger for an action in VBA? | VBA में कार्रवाई के लिए एक और नाम ट्रिगर क्या है?
Methods | मेथड
Modules | मॉड्यूल
Events | इवेंट्स
Macros | मैक्रो
Question 79
Which shortcut key allows debugger to run the current procedure and go line after line called the procedure in VBA? | कौन सी शॉर्टकट कुंजी डिबगर को वर्तमान प्रक्रिया को चलाने और लाइन को वीबीए में प्रक्रिया कहा जाता है?
Ctrl + Shift + F6
Ctrl + Shift + F7
Ctrl + Shift + F8
Ctrl + Shift + F9
Question 80
While debugging code, which statement allows to go to the highlighted line? | डिबगिंग कोड करते समय, कौन सा स्टेटमेंट हाइलाइटेड लाइन पर जाने की अनुमति देता है?
Step into
Step over
Step out
Show next
Question 81
Which control is used to increase or decrease a value, such as a number time or date? | वैल्यू को बढ़ाने या घटाने के लिए किस कंट्रोल का उपयोग किया जाता है, जैसे संख्या समय या दिनांक?
Scroll Bar | स्क्रॉल बार
Spin Button | स्पिन बटन
Combo Box | कॉम्बो बटन
Toggle Button | टॉगल बटन
Question 82
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? | कौन सा VBA फ़ंक्शन दिए गए स्ट्रिंग्स और रिटर्न -1 की तुलना करता है - यदि पहली स्ट्रिंग दूसरी स्ट्रिंग से छोटी है, तो रिटर्न 0 यदि दोनों बराबर हैं और 1 है तो पहली स्ट्रिंग दूसरी स्ट्रिंग से अधिक है?
Strcmp
Strcomp
Compare
Scmp
Question 83
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? | कौन सा स्कोप Dim के साथ घोषित किया गया है और जब तक घोषित की गई प्रक्रिया चल रही होती है, तब तक वेरिएबल मौजूद रहता है?
Global scope | ग्लोबल स्कोप
Local scope | लोकल स्कोप
Module scope | मोड्यूल स्कोप
Project scope | प्रोजेक्ट स्कोप
Question 84
What will be the output of the following VBA code? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Sub test ( )
a = 9
Debug.Print Sqr (a)
End sub
3
9
18
81
Question 85
What will be the output for the following VBA code? | निम्नलिखित VBA कोड के लिए आउटपुट क्या होगा?
Debug.printDateDiff(“yyyy”,”1/12/2016”,”31/1/2017”)
0
1
11
30
Question 86
What will be the output of the following VBA code? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Sub test ( )
x = “institute”
Debug.print Format (x,”>”)
End sub
Institute
institute
INSTITUTE
instiTUTE
Question 87
What will be the output of the following VBA code? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Sub test ( )
Dim S AS string
S = “wholehearted”
Debug.Print mid(s,6,4)
End sub
arte
hear
hole
eart
Question 88
What will be the output of the following VBA code? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Sub test ( )
a = “ Computer operator”
Debug.Print left(a,10)
End sub
Operator
Computer o
Computer
Computer operator
Question 89
What will be the output of the following VBA code?
Sub test ( )
Dim l as integer
Dim S as string
S = “Time is money”
l = len(s)
Debug.print “The length is “ & l
End sub
13
The length is 11
The length is 13
THE LENGTH IS 13
Question 90
What will be the output of the following VBA function? | निम्नलिखित VBA कोड का आउटपुट क्या होगा?
Sub stg ( )
Str = “Mathematics”
Debug.Print right (str,6)
End sub
matics
Mathem
Mathemat
Mathematics
<< Previous Test
>> Next Test
Newer Post
Older Post
Home