exam questions

Exam SnowPro Core All Questions

View all questions & answers for the SnowPro Core exam

Exam SnowPro Core topic 1 question 304 discussion

Actual exam question from Snowflake's SnowPro Core
Question #: 304
Topic #: 1
[All SnowPro Core Questions]

Which of the following SQL statements will list the version of the drivers currently being used?

  • A. Execute SELECT CURRENT_ODBC_CLIENT(); from the Web UI
  • B. Execute SELECT CURRENT_JDBC_VERSION(); from SnowSQL
  • C. Execute SELECT CURRENT_CLIENT(); from an application
  • D. Execute SELECT CURRENT_VERSION(); from the Python Connector
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
PrasantSadangi
3 months, 2 weeks ago
Selected Answer: C
/*Returns the Current Client Version */ SELECT CURRENT_CLIENT(); /*Returns the Current Snowflake Version */ SELECT CURRENT_VERSION();
upvoted 1 times
...
_yyukta
10 months, 3 weeks ago
Selected Answer: C
C is correct
upvoted 1 times
...
0e504b5
11 months, 2 weeks ago
Selected Answer: C
https://docs.snowflake.com/en/sql-reference/functions/current_client
upvoted 1 times
...
e_l_i_a_s
11 months, 3 weeks ago
Selected Answer: C
CURRENT_CLIENT Returns the version of the client from which the function was called. If called from an application using the JDBC or ODBC driver to connect to Snowflake, returns the version of the driver.
upvoted 1 times
...
VASI250
1 year ago
The correct option for listing the version of the drivers currently being used in Snowflake is: B. Execute SELECT CURRENT_JDBC_VERSION(); from SnowSQL The CURRENT_JDBC_VERSION() function is used to retrieve the version of the JDBC driver in use. SnowSQL is a command-line client for Snowflake, and you can execute SQL statements directly using it. The other options do not directly provide information about the driver version: A. SELECT CURRENT_ODBC_CLIENT(); is used to get information about the ODBC client, not the version of the ODBC driver. C. SELECT CURRENT_CLIENT(); provides information about the client environment but not the driver version. D. SELECT CURRENT_VERSION(); is a generic function that provides information about the version of the Snowflake service itself, not the driver version. So, option B is the correct one for obtaining the version of the JDBC driver in use
upvoted 1 times
...
444823b
1 year, 1 month ago
Selected Answer: C
SELECT CURRENT_CLIENT();
upvoted 1 times
...
c0d3g
1 year, 6 months ago
Selected Answer: C
SELECT CURRENT_CLIENT();
upvoted 1 times
...
dmitriypo
1 year, 8 months ago
Selected Answer: C
C is the correct answer. Just checked it.
upvoted 1 times
...
EmiB
1 year, 10 months ago
Selected Answer: C
CURRENT_CLIENT() -- name and version of connected client CURRENT_VERSION() -- version of Snowflake
upvoted 4 times
...
examed11
1 year, 10 months ago
Selected Answer: C
https://docs.snowflake.com/en/sql-reference/functions/current_client.html
upvoted 2 times
...
AravindhTN
2 years ago
Answer C
upvoted 3 times
...
harshagc180
2 years, 1 month ago
Correct Answer C https://docs.snowflake.com/en/sql-reference/functions/current_client.html
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...