GeekInterview.com
Series: Subject:

Concepts FAQs

Showing Questions 1 - 20 of 95 Questions
First | Prev | | Next | Last Page
Sort by: 
 | 

Multiple test plans

Asked By: marutalksin | Asked On: Apr 13th, 2012

Do we have multiple test plans for every version of software release?

What are mutants and explain mutation testing?

Asked By: manohar | Asked On: Jan 18th, 2006

Answered by: mfsi_chinmayb on: Dec 13th, 2011

Mutation testing is like testing the tester... Under Mutation testing technique we need to check the working of the test suite. Basically we introduce some kind of change in the program source code i...

Answered by: vijay_321 on: Feb 9th, 2006

Mutation testing is an one in which we first assume a certain fact and also a mutated fact which opposes the fact is also defined.Our testing succeed only if the mutated fact fails.

Hows do electrons travel through a lightning bolt?

Asked By: Ellen | Asked On: Oct 15th, 2006

Answered by: Lokesh M on: Dec 10th, 2011

Generally, lightning is negatively charged. During thunderstorms. The Earths is recharged and its surface becomes good conductor of electricity. The Earth is charged negatively and the atmosphere i...

Delete entire linked list

Asked By: shyamkumar1221 | Asked On: Nov 20th, 2010

How to delete a entire linked list?

Answered by: Lokesh M on: Dec 10th, 2011

You delete a linked list by iterating through the list and deleting the nodes one by one. Begin at the head Get address of first node Get address of next node Delete first node Do not to access next ...

Rom image

Asked By: mmsherin | Asked On: Mar 6th, 2011

Define rom image and explain each section of a rom image in an exemplary system?

Answered by: Lokesh M on: Dec 10th, 2011

A ROM image captures the data from a read-only memory chip, such as hardware firmware, video and arcade game boards, etc. It is often used for emulation.

Response time

Asked By: shilpasrinivas | Asked On: May 19th, 2009

How to calculate response time in client-server technology?

Answered by: Lokesh M on: Dec 9th, 2011

This can be done by measureing the time taken by the first byte to reach the client (TTFB) and the time taken by the last byte of the response to reach the client (TTLB) by using various network bandwidths between the client and the server.

Improve hard disk transfer rate

Asked By: rajanithunga | Asked On: Feb 29th, 2008

How to increase transfer rate of an hard disk?

Answered by: Lokesh M on: Dec 9th, 2011

See if any among these helps to increase Hard disk transfer rate... - Try using RAID setup - In Device Manager under ATA/ATAPI Controllers verify if the hard disk is running in UDMA mode. - Update m...

Vertical and horizontal cluster

Asked By: raghav | Asked On: Aug 26th, 2011

What are the advantages & disadvantages of vertical cluster & horizontal cluster? Which is the best? Why?

Answered by: Lokesh M on: Dec 9th, 2011

In horizontally clustered environment, cluster-enabled application is deployed on multiple physical machines. Each machine is available for requests. Horizontal clusters offers protection over hardwar...

What is dirty dimension? What is balance dimension?What is the hierarchy levels in datawarehousing concepts level?

Asked By: satyavani | Asked On: Sep 20th, 2006

Answered by: soujanya on: Nov 3rd, 2011

nothing but type 2 dimension

Answered by: Mahipal Garhwal on: Aug 9th, 2011

In-accurate data is often termed as dirty data and has been characterized as missing data, wrong data and compound data with different representations.

Ex. :- customer dimension in which the same person can appear multiple times probably not with exactly the same spellings or other attributes.

Cdrom access is random or semirandom or sequential

Asked By: anu | Asked On: Sep 13th, 2006

Answered by: venkatreddy on: Sep 9th, 2011

CDROM access is sequential.. Magnetic sequential access memory is typically used for secondary storage in general-purpose computers due to their higher density at lower cost compared to RAM, as well a...

Answered by: federer on: Sep 9th, 2011

CDROM is random access device..

About sharepoint

Asked By: Padma | Asked On: Jul 13th, 2011

What are the roles and responsibilities of sharepoint developer, sharepoint consultant, sharepoint architect, sharepoint administrator, sharepoint specialist, sharepoint business analyst, sharepoint designer, sharepoint project manager, sharepoint system administrator?

How can we print "hello world" in C without using semicolon/

Asked By: yatingoyal | Asked On: Sep 14th, 2006

Answered by: tarun12aug on: Aug 27th, 2010

main()
{
clrscr();
if(printf("Hello Tarun Goyal"))
                        {}
getch();
}

Answered by: ankush sharma on: Oct 16th, 2007

we can print message by using ternary operator or write the code in if statement

Client server methodology

Asked By: sumita.bali | Asked On: Mar 29th, 2011

Any application web based or window based can have a client server architect???Please explain and how a window based application have client server architect???

Write an o(log2(n)) algorithm to find x^n

Asked By: d.sridhar85 | Asked On: Apr 22nd, 2006

Answered by: ashgoel on: Jun 24th, 2010

represent N=b(k)b(k-1)....b(1)b(0) as bit representationthen N=summation i=o to k   b(i)*2^iso x can be represented as x(N)=x(b0)*x(2b1)*x(4b2)...*x(2(k)bk)bois nothing but Nmod 2long power(...

Answered by: rahuldbhagat on: May 3rd, 2008

Here is the algorithm that works well and takes O(log n) time.Algorithm Exponientiate(x,n)//computes x^n  for an integer n>=0{      m:= n;    power:=1; ...

What is the difference between process and thread with real time examples?

Asked By: chandeeswararao | Asked On: Jun 13th, 2007

Answered by: tajinder1330 on: Apr 24th, 2010

1.Threads share the address space of the process that created it; processes have their own address. 2.Threads have direct access to the data segment of its process; processes have their own copy of th...

When the variables are pushed into the stack, which method is used to retrieve them from it? A. Pop b. Pull c. Remove d. None of these.

Asked By: khalid_it | Asked On: Nov 7th, 2006

A.Pop

Answered by: rubin2008 on: Jan 30th, 2010

A.pop method is used for retrieving variables from stack

If get method is less secure than post method then why they introduced get method.And we\'ll use only post method alone.Wats the need for get here?

Asked By: karthik | Asked On: Feb 8th, 2006

Answered by: rubin2008 on: Jan 31st, 2010

Using GET method form data is appended to URL while using POST method it is transferred in the message body.GET method  is intended for information retrieval.  It should be used to retrieve ...

How do I put a background on a website using CSS coding?

Asked By: Sharie Williams | Asked On: Oct 12th, 2006

Answered by: rubin2008 on: Jan 31st, 2010

If you want to put  background color you can use background-color property of CSS in body tag
If you want to put background image you can use background-image property of CSS in body tag

Sample code to use application adapter

Asked By: Sharmz | Asked On: Jun 4th, 2008

Can you give some sample code to use in application adapter[ccf]?

First | Prev | | Next | Last Page

 

 

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Career Counselling

 Have Career Question?

 Ask Chandra

 Ask Only Career questions.

Follow us:
 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, click "Subscribe".