| Back to Questions Page |
| Question |
what is debugging. |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Rao |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
clearing of errors by understanding the concept of the
program and providing the specific output  |
0 | Nagarenu Priya.g |
| |
| |
| Answer |
Debugging is a process of locating and fixing or
bypassing "bugs" in computer program code.  |
0 | Shiva |
| |
| |
| Answer |
debugging is an error correction because 'bug' means error
correct and 'de' including that is determinate the errors
and correct them  |
0 | Muppu |
| |
| |
|
|
| |
| Answer |
debugging means correcting  |
0 | Navaneetha Raman |
| |
| |
| Answer |
Debugging means error rectification...  |
0 | Deepak |
| |
| |
| Answer |
find the bugs in program,&rectify those errors is called
debugging  |
0 | Sujitha Rangaraj |
| |
| |
| Question |
can we create aliases for every table beforehand? if yes
whar are the disadvantages? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Sasikanth |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
In the Designer you can create allias for the table. U had that option in menu
bar.You just select the table and type the alias name. This is used to avoid some
looping and trap problem.
Other than Complex univese structure i dont no about the disadvantage  |
0 | Saranv |
| |
| |
| Answer |
u can create alias for very table but its better not create
alias for fact tables.If unnecassarily alias are created
for evey table the universe structure will be complex.so
more number of tables will be present in your schema.  |
0 | Satishe |
| |
| |
| Answer |
What are the different datamodelling techniques?  |
0 | Swati |
| |
| |
| Question |
what are the differences between web intelligence reports
and crystal reports ?
|
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Narsingrao07 |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
bo reporting is prefered for dwh,where as crystal is
preffered for transaction database which involves lots of
queries and joins  |
0 | Kvchowdary |
| |
| |
| Answer |
webI : it is ad-hock reporting.
we can change the report as per reqirement
for managenment quick dessions.for management
Crystal Reports:
it is standered reporting
daily transations(example bank ,shopping malls)
for production users.  |
0 | Vams_gk [Cognizant] |
| |
| |
| Question |
version information of assembly consist of _________
values. |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
1.0.0.0
that is
major
minor
revision and
built  |
0 | Jameela |
| |
| |
| Answer |
version information of assembly consist of _4_
values. The 4 values:-
Major Version
Minor Version
Build Number
Revision
1.0.0.0
Here 1 stands for Major Version
Next 0 stands for Minor Version
Next 0 stands for Build Number
Next 0 stands for Revision  |
0 | Swati |
| |
| |
| Answer |
Jameela answer is wrong,
Swati is right  |
0 | Balaodc |
| |
| |
| Question |
version information is mentioned in which file |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
assembly manifest contains version information  |
0 | Rudranarasimha |
| |
| |
| Answer |
assemblyinfo.cs  |
0 | Suresh.gv |
| |
| |
| Answer |
Specially version anre mention in assiblly file,
but you can see versions in *.sln and .csproj file by
opeing that page in notpad.  |
0 | Sudhir Kunnure |
| |
| |
| Question |
what is reference type to value type. |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
convertion of Reference type to value type is called
UnBoxing.
ex: int x;
object obj=20;
x=Convert.ToInt32(obj);  |
2 | Suresh |
| |
| |
| Answer |
1.Reference type varible data store on Heap memory,refernce
maintain in Stack memory.  |
3 | Suresh |
| |
| |
| Question |
what is value type to reference type |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
valutype is the variable to store the data where as
reference type is the variable to store the reference to
the data only..Both are derived from the System.valutype.  |
0 | Rudranarasimha |
| |
| |
| Answer |
correction
valutype is the variable to store the data where as
reference type is the variable to store the reference to
the data only.Both are derived from the System.object  |
0 | Rudranarasimha |
| |
| |
| Answer |
Boxing  |
0 | Guest |
| |
| |
| Answer |
Value Types
Value types contains there data which are allocated on the
stack or in-line a structure
Reference Types
Reference types stores reference to the value memmory and
are allocated on the heap and refrence types can be self-
describing type pointer type or interface types.  |
0 | Prasad. Surabathina |
| |
| |
| Answer |
UNBOXING  |
0 | Amar |
| |
| |
| Answer |
value type is boxing and reference type is unboxing  |
0 | Amar |
| |
| |
| Question |
.net allows which inheritence |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
multiple inheritance  |
0 | Guest |
| |
| |
| Answer |
.net is not allowed multiple inheritence. it allow multiple
interfaces  |
0 | Ish |
| |
| |
| Answer |
Not Exactly .NET but the languages which supports .Net
Allows all(single/simple, heirarchical,multilevel)
inheritence excepts multiple inheritence.For multiple
inheritence interfaces can be implemented.  |
0 | U.janki Rao |
| |
| |
| Answer |
.net allow multilavel inheritance(not multiple inheritance)
bit we can implement multiple inheritance through interfaces  |
0 | Kamlesh Sharma |
| |
| |
| Answer |
Multiple inheritence  |
0 | Reha |
| |
| |
| Question |
which directive is mandatory in page control |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Nikunj Soni |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
<%@ Page %>  |
0 | Ppm |
| |
| |
| Answer |
<%Page autoeventwireup="true" codebehind="" %>  |
0 | Uma |
| |
| |
| Answer |
<%@ Page Language="C#" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>  |
0 | Sumalatha |
| |
| |
| Question |
CAN A REPOSITORY CONTAINS REPORTS? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Tprasad |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
yes repository contains reports
in bo 6.5 reports are stored as documents in repostory
in bo xi reports are stored as folders in cmc  |
2 | Bhaskar |
| |
| |
| Answer |
Yes, Repository contains reports. In BOXI also reports are
stored in repository (file repository). Those reports in
folders are also stored in repository only.  |
0 | Naresh |
| |
| |
| Answer |
Yes, Repository contains reports.
In BOXI also reports are stored in repository (file
repository).
Those reports in folders are also stored in repository only.  |
0 | NareshKumar |
| |
| |
| Answer |
bo 6.5 rep contains 50 tables........
bo xir2 contains 8 tables.....
1 table is dedicated for documents(document domain).
these 8 tables r also called cms db(central management
server)........  |
0 | Mithru |
| |
| |
| Answer |
Repository Database will not store the actuall report file,
it has the pointer of the report.  |
0 | Guest |
| |
| |
| Answer |
Yes, Repository contains reports. In BOXI also reports are
stored in repository (file repository). we can save our
reports in folders(phsycal) and categories(logical)..these
are avilable only repository only  |
0 | Vams_gk |
| |
| |
| Question |
WHO ARE THE USERS OF THE REPOSITORY? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Tprasad |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
security domain,universe domain,document domain  |
0 | G,v,subramanyam |
| |
| |
| Answer |
GeneralSupervisor,Supervisor  |
0 | Keerthi |
| |
| |
| Answer |
general supervisor creates repository and designer ,user
(report devlepoer ) uses the repository...the documents are
stored in document domain...in fact the clients also uses
the repository while seeing the documents  |
0 | Mithru |
| |
| |
| Answer |
General Supervisor, Supervisor are the users of the
repository. Since they are the owners of the repository they
can create the repository and modify it whenever they want.  |
0 | Handy |
| |
| |
| Answer |
who is having user as well as admin rights to access the
repository  |
0 | Vams_gk |
| |
| |
| Answer |
Supervisor,General supervisor, users, usergroups.  |
0 | Madhulika |
| |
| |
| Question |
IF I WANT TO INSTALL BO ENTERPRISE PRODUCTS IN WINDOWS 2000
PROFESSIONAL SERVER ,WHAT SHOULD BE THE SYSTEM
CONFIGURATION? |
Rank |
Answer Posted By |
|
Interview Question Submitted By :: Tprasad |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer |
• P3 700MHz**
• 1 GB RAM
• 5 GB hard disk space for BusinessObjects Enterprise and
1.5 GB additional for Performance Management
• CD-ROM
** Windows support is limited strictly to the 32-bit
versions of Windows operating on either 32 or 64-bit (x86)
AMD/Intel chipsets. BusinessObjects Enterprise software for
Windows is not warranted or supported for use on other
chipsets.  |
0 | NareshKumar |
| |
| |
|
| |
|
Back to Questions Page |