<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Questions And Answers Forum - Recent Topics				            </title>
            <link>https://quesnans.com/forum/</link>
            <description>Questions And Answers Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 13 Jun 2026 18:39:50 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>How to set Python Path &amp; run Python in Command Prompt?</title>
                        <link>https://quesnans.com/forum/python/how-to-set-python-path-run-python-in-command-prompt/</link>
                        <pubDate>Sat, 08 Apr 2023 18:53:23 +0000</pubDate>
                        <description><![CDATA[How to set Python Path &amp; run Python in Command Prompt?]]></description>
                        <content:encoded><![CDATA[<p><strong>How to set Python Path &amp; run Python in Command Prompt?</strong></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/python/how-to-set-python-path-run-python-in-command-prompt/</guid>
                    </item>
				                    <item>
                        <title>How to resolve AttributeError: module &#039;smart_open&#039; has no attribute &#039;local_file&#039; while importing gensim?</title>
                        <link>https://quesnans.com/forum/python/how-to-resolve-attributeerror-module-smart_open-has-no-attribute-local_file-while-importing-gensim/</link>
                        <pubDate>Sat, 08 Apr 2023 18:50:41 +0000</pubDate>
                        <description><![CDATA[How to resolve AttributeError: module &#039;smart_open&#039; has no attribute &#039;local_file&#039;  while importing gensim?
Code:
import gensim
from gensim import corpora
Error:
AttributeError           ...]]></description>
                        <content:encoded><![CDATA[<p><span>How to resolve </span><strong>AttributeError: module 'smart_open' has no attribute 'local_file'</strong><span>  while importing gensim?</span></p>
<p><strong>Code:</strong></p>
<pre contenteditable="false"><code>import gensim
from gensim import corpora</code></pre>
<p><strong>Error:</strong></p>
<pre contenteditable="false"><code>AttributeError                            Traceback (most recent call last)
&lt;ipython-input-29-a29f5eabd8f4&gt; in &lt;module&gt;
     85 # use the following command in anaconda prompt with the admionistrator privileges to install gensim
     86 # conda install -c conda-forge gensim
---&gt; 87 import gensim
     88 from gensim import corpora
     89 

~\Anaconda3\lib\site-packages\gensim\__init__.py in &lt;module&gt;
      3 """
      4 
----&gt; 5 from gensim import parsing, corpora, matutils, interfaces, models, similarities, summarization, utils  # noqa:F401
      6 import logging
      7 

~\Anaconda3\lib\site-packages\gensim\parsing\__init__.py in &lt;module&gt;
      2 
      3 from .porter import PorterStemmer  # noqa:F401
----&gt; 4 from .preprocessing import (remove_stopwords, strip_punctuation, strip_punctuation2,  # noqa:F401
      5                             strip_tags, strip_short, strip_numeric,
      6                             strip_non_alphanum, strip_multiple_whitespaces,

~\Anaconda3\lib\site-packages\gensim\parsing\preprocessing.py in &lt;module&gt;
     40 import glob
     41 
---&gt; 42 from gensim import utils
     43 from gensim.parsing.porter import PorterStemmer
     44 

~\Anaconda3\lib\site-packages\gensim\utils.py in &lt;module&gt;
     43 from six.moves import range
       44 
---&gt; 45 from smart_open import open
     46 
     47 from multiprocessing import cpu_count

~\Anaconda3\lib\site-packages\smart_open\__init__.py in &lt;module&gt;
     26 from smart_open import version
     27 
---&gt; 28 from .smart_open_lib import open, parse_uri, smart_open, register_compressor
     29 from .s3 import iter_bucket as s3_iter_bucket
     30 

~\Anaconda3\lib\site-packages\smart_open\smart_open_lib.py in &lt;module&gt;
     35 
     36 from smart_open import compression
---&gt; 37 from smart_open import doctools
     38 from smart_open import transport
     39 from smart_open import utils

~\Anaconda3\lib\site-packages\smart_open\doctools.py in &lt;module&gt;
     19 
     20 from . import compression
---&gt; 21 from . import transport
     22 
     23 PLACEHOLDER = '    smart_open/doctools.py magic goes here'

~\Anaconda3\lib\site-packages\smart_open\transport.py in &lt;module&gt;
     20 NO_SCHEME = ''
     21 
---&gt; 22 _REGISTRY = {NO_SCHEME: smart_open.local_file}
     23 
     24 

AttributeError: module 'smart_open' has no attribute 'local_file'</code></pre>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/python/how-to-resolve-attributeerror-module-smart_open-has-no-attribute-local_file-while-importing-gensim/</guid>
                    </item>
				                    <item>
                        <title>When iterating over a list, why it is better to use &quot;for&quot; instead of &quot;while&quot;?</title>
                        <link>https://quesnans.com/forum/python/when-iterating-over-a-list-why-it-is-better-to-use-for-instead-of-while/</link>
                        <pubDate>Sat, 08 Apr 2023 18:48:05 +0000</pubDate>
                        <description><![CDATA[When iterating over a list, why it is better to use &quot;for&quot; instead of &quot;while&quot;?]]></description>
                        <content:encoded><![CDATA[<p><strong>When iterating over a list, why it is better to use "for" instead of "while"?</strong></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/python/when-iterating-over-a-list-why-it-is-better-to-use-for-instead-of-while/</guid>
                    </item>
				                    <item>
                        <title>How to resolve Top Link Bar not Highlighted Properly in Sharepoint?</title>
                        <link>https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/</link>
                        <pubDate>Sat, 08 Apr 2023 18:37:13 +0000</pubDate>
                        <description><![CDATA[Hi Every one...i am new in sharepoint i am getting a issue in my sharepoint template.. my templates Top link bar is not highlighted properly when they are selected...My Site structure is giv...]]></description>
                        <content:encoded><![CDATA[<p><span>Hi Every one...</span><br /><br /><span>i am new in </span><strong>sharepoint<span> </span></strong><span>i am getting a issue in my </span><strong>sharepoint template</strong><span>.. my </span><strong>templates<span> </span></strong><span>Top link bar is not highlighted properly when they are selected...</span><br /><br /><span>My Site structure is given below:</span><br /><span>1- Home</span><br /><span>2- News (List)</span><br /><span>3- Calendar (List)</span><br /><br /><span>Please advise.</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>Google User</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/sharepoint/how-to-resolve-top-link-bar-not-highlighted-properly-in-sharepoint/</guid>
                    </item>
				                    <item>
                        <title>Transformation is which type of object in MicroStrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/</link>
                        <pubDate>Sat, 08 Apr 2023 18:16:43 +0000</pubDate>
                        <description><![CDATA[Transformation is which type of object in MicroStrategy?]]></description>
                        <content:encoded><![CDATA[<p>Transformation is which type of object in MicroStrategy?</p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/transformation-is-which-type-of-object-in-microstrategy/</guid>
                    </item>
				                    <item>
                        <title>Which Engine generates SQL in Microstrategy?</title>
                        <link>https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/</link>
                        <pubDate>Sat, 08 Apr 2023 18:12:48 +0000</pubDate>
                        <description><![CDATA[Which Engine generates SQL in Microstrategy?
Options:-
a. Query Engineb. SQL Enginec. Analytical Engined. All of the above]]></description>
                        <content:encoded><![CDATA[<p>Which<span> </span><strong>Engine<span> </span></strong>generates<span> </span><strong>SQL<span> </span></strong>in<span> </span><strong>Microstrategy</strong>?</p>
<p>Options:-</p>
<p><span>a. Query Engine</span><br /><span class="text_exposed_show">b. SQL Engine<br />c. Analytical Engine<br />d. All of the above</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/which-engine-generates-sql-in-microstrategy/</guid>
                    </item>
				                    <item>
                        <title>Logical Table Size of a table used in MSTR is based on which of the following (Choose all the possible answers)?</title>
                        <link>https://quesnans.com/forum/microstrategy/logical-table-size-of-a-table-used-in-mstr-is-based-on-which-of-the-following-choose-all-the-possible-answers/</link>
                        <pubDate>Sat, 08 Apr 2023 18:07:38 +0000</pubDate>
                        <description><![CDATA[Logical Table Size of a table used in MSTR is based on which of the following (Choose all the possible answers)?
Options:-
a. No. of facts created based on the tableb. No. Attributes creat...]]></description>
                        <content:encoded><![CDATA[<p><strong>Logical Table Size</strong><span> </span>of a<span> </span><strong>table<span> </span></strong>used in<span> </span><strong>MSTR<span> </span></strong>is based on which of the following (Choose all the possible answers)?</p>
<p>Options:-</p>
<p><span>a. No. of facts created based on the table</span><br /><span class="text_exposed_show">b. No. Attributes created on the table<br />c. Position of the attribute in a hierarchy<br />d. All of the above</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/logical-table-size-of-a-table-used-in-mstr-is-based-on-which-of-the-following-choose-all-the-possible-answers/</guid>
                    </item>
				                    <item>
                        <title>Smart metric is enabled for below report (refer image)?</title>
                        <link>https://quesnans.com/forum/microstrategy/smart-metric-is-enabled-for-below-report-refer-image/</link>
                        <pubDate>Sat, 08 Apr 2023 18:06:05 +0000</pubDate>
                        <description><![CDATA[Smart metric is enabled for below report (refer image)?

 
Options:-
a. TRUEb. FALSEc. Can’t Say with the Provided Information]]></description>
                        <content:encoded><![CDATA[<p><strong>Smart metric</strong><span> is </span><strong>enabled<span> </span></strong><span>for below report (refer image)?</span></p>
<div><img style="margin-left: auto;margin-right: auto" src="https://quesnans.com/wp-content/uploads/2023/04/Smart-metric-is-enabled.png" alt="Smart metric is enabled" /></div>
<p> </p>
<p><strong>Options:-</strong></p>
<p><span>a. TRUE</span><br /><span class="text_exposed_show">b. FALSE<br />c. Can’t Say with the Provided Information</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/smart-metric-is-enabled-for-below-report-refer-image/</guid>
                    </item>
				                    <item>
                        <title>Which of the following is true about free form SQL reports in MSTR?</title>
                        <link>https://quesnans.com/forum/microstrategy/which-of-the-following-is-true-about-free-form-sql-reports-in-mstr/</link>
                        <pubDate>Sat, 08 Apr 2023 17:59:43 +0000</pubDate>
                        <description><![CDATA[Which of the following is true about free form SQL reports in MSTR?
Options:-
a. Filters can’t be used in free form SQL reportsb. It is mandatory to select a database instance in the repor...]]></description>
                        <content:encoded><![CDATA[<p><span>Which of the following is true about <strong>free form SQL reports</strong> in <strong>MSTR</strong>?</span></p>
<p><span><strong>Options</strong>:-</span></p>
<p><span>a. Filters can’t be used in free form SQL reports</span><br /><span class="text_exposed_show">b. It is mandatory to select a database instance in the report<br />c. Query for a free form SQL is generated by query engine in MSTR<br />d. Free form SQL reports must use Primary database instance selected for the project</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/which-of-the-following-is-true-about-free-form-sql-reports-in-mstr/</guid>
                    </item>
				                    <item>
                        <title>An architect creates parent – child relationship between two attributes. Which of the following MSTR objects could be a result of this?</title>
                        <link>https://quesnans.com/forum/microstrategy/an-architect-creates-parent-child-relationship-between-two-attributes-which-of-the-following-mstr-objects-could-be-a-result-of-this/</link>
                        <pubDate>Sat, 08 Apr 2023 17:58:12 +0000</pubDate>
                        <description><![CDATA[An architect creates parent – child relationship between two attributes. Which of the following MSTR objects could be a result of this?
Options:-
a. A user hierarchy is createdb. A transfo...]]></description>
                        <content:encoded><![CDATA[<p><span>An <strong>architect </strong>creates<strong> parent – child</strong> relationship between two attributes. Which of the following <strong>MSTR </strong>objects could be a result of this?</span></p>
<p><span><strong>Options</strong>:-</span></p>
<p><span>a. A user hierarchy is created</span><br /><span class="text_exposed_show">b. A transformation is created<br />c. A System hierarchy is created<br />d. A logical table is created</span></p>]]></content:encoded>
						                            <category domain="https://quesnans.com/forum/"></category>                        <dc:creator>QnAAdmin</dc:creator>
                        <guid isPermaLink="true">https://quesnans.com/forum/microstrategy/an-architect-creates-parent-child-relationship-between-two-attributes-which-of-the-following-mstr-objects-could-be-a-result-of-this/</guid>
                    </item>
							        </channel>
        </rss>
		