Programming With Vba Set 12


Which function is used to check whether the given input is numeric or Not in VBA?
  
    (A) Numeric()
    (B) Isnumber()
    (C) Isnumeric()
    (D) Isnum()

Isnumeric()

Which function returns specified part of a given date in VBA?
  
    (A) Day()
    (B) Datevalue()
    (C) Datediff()
    (D) Datepart()

Datepart()

Which function returns the difference between two date values based on the interval specified in VBA?
  
    (A) Datediff()
    (B) Day()
    (C) Daydiff()
    (D) Datedif()

Datediff()

What is the return type of CSng function in VBA?
  

    (A) Boolean
    (B) Variant
    (C) Single
    (D) String

Single

Which VBA code is used to load user form into memory but do not display?
  
    (A) User form1.Show
    (B) Load userform1
    (C) Userform1.load
    (D) Show userform1

Load userform1