Programming Concepts

  Home  Computer Programming  Programming Concepts


“Conceptual frequently Asked Questions by expert members with experience in Programming Concepts. So get preparation for the Conceptual job interview questions”



112 Programming Concepts Questions And Answers

64⟩ Planning to start a career as a manual tester ,is taking a course compulsory or can I get the subject by referring through information on internet?,Does manual testers use any tools in real time

Not necessary that you have to take any course provided if you are not fresher. Suppose if you are working in any company as design engineer, then as you have the domain knowledge working as end user. Then you can definitely use this knowledge to test the software and find bugs. And regarding processes and tools used every company has different strategy which can be managed or learn once you get into that company.

 213 views

65⟩ What kind of useful task does stacks support?

Stack supports four major computing areas,they are 1.expression evaluation 2.subroutine return address storage 3.dynamically allocated local variable storage and 4.subroutine parameter passing.

 182 views

66⟩ Tell me what are Application Clusters in CRM?

CRM application cluster is a software that ranges in size and complexity making it possible for an organization to select the type of software needed the most. It consists of how a customer is related to sales,marketing and fulfillment,customer service and support,retention and loyalty program and contact and account management.

 193 views

68⟩ Computer Programming Conceptual Interview Questions

Does Data warehouse have to be a relational database?

Are Data warehouse queries ‘unpredictable’?

Why would Data warehouse have ‘few concurrent users’?

What is the maximum number of concurrent users, have you dealt with in a real life OLTP system?

You have mentioned one way of dealing with slowly changing dimensions. Are they any other ways?

Consider common dimensions – Customer, Product, Time etc. Think about how could they change with time?

Are Cognos Finance and Cognos Consolidation Data warehouse products?

What is Cognos Contributor?

What are the popular products used for Forecasting?

Name different analytical analysis that may be done in Finance Domain.

What is GAAP?

How does SOX act impact Finance and Accounting Function?

What are other major US Compliance acts? Which industries do they apply to?

What are major ways to improve performance of an application?

What are the issues arise when u have a table having large volume of insert/modify transactions? How to solve them?

What is Archiving and Purging? Why is it important?

How to make Transactions and Reporting co-exist in an OLTP Application?

What kind of Query Optimizer does Oracle 10g use? What was used in earlier versions?

What is Explain Plan command? What is its use?

What are the common precautions you take to ensure acceptable performance of a web java application?

 197 views

72⟩ Explain virtual function?

virtual functions are the functions by which we can implement the concept of polymorphism ,ie one name with several distinct forms.a f'n preceded by a virtual keyword makes a function virtual means the compiler turns on the mechanism to perform late binding or dynamic binding.more of all,the same function name can be used to perform different tasks .

 175 views

73⟩ Tell me what is the difference between connecting to RDBMS using ODBC and native drivers?

ODBC is an open standard for software providers to follow when creating an intermidate layer between the database and the application using the database. Having "open standards" usually means that different applications can write their code the same way no matter which database they are using, as long as that database comes with an ODBC driver.In contrast, native drivers are built with one specific database in mind. Thus, applications written to use the native driver will only work with one particular database. You will lose flexibility in your code's ability to switch database vendors, but you might gain performance enhancements due to the fact that the driver is custom made for the database and may be able to take advantage of an "insider's view" of the database software.

 224 views

75⟩ What is data modelling?

Data Modelling is designing of the data content and structure of the database.

The data model documents the structure of and interrelationships between the data - it is presented as a combination of simple diagrams and written definitions and is independent of any DBMS software or hardware considerations.

 183 views

79⟩ What is paging?

Pageing is a memory Management technique which allows users program memory to be non continus, the technique is used to remove the problem of external fragmentation.In this technique entire user Memory is divided into fixed size page frames, a Page Map table is used to map the user process pages to physical memory page.

 178 views

80⟩ What is swapping?

Swapping is to chance the value to each other in c++#include#includevoid main(){Int a,b;cout<<"Enter the value of a ::::"<>a;cout<<"Enter the value of b ::::"<>b;a=a+b;b=a-b;a=a-b;cout<

 194 views