Search:

Type: Posts; User: Sandhya.Kishan; Keyword(s):

Page 1 of 7 1 2 3 4

Search: Search took 0.01 seconds; generated 41 minute(s) ago.

  1. Answers
    2
    Views
    11,424

    Re: Testing template

    Quality Assurance is the activity performed to prevent the occurance of errors in the total project. Hence, QA plan specifies the ways to follow to prevent the occurance of errors in product...
  2. Answers
    2
    Views
    11,823

    Re: Sorting a hash map based on its keys

    Sorting can be done by placing the hash map on to o tree map (TreeMap is sorted by nature)

    Map myMap = new HashMap();
    // put keys and values........
    Map sortedMap = new TreeMap(myMap);
  3. Answers
    2
    Views
    7,549

    Re: weakHashMap

    A WeakHashMap is a special Map implementation where the keys of the map are stored in a java.lang.ref.WeakReference. By storing the keys in a weak reference, key-value pairs can dynamically be...
  4. Thread: Db2

    by Sandhya.Kishan
    Answers
    2
    Views
    13,375

    DB2 - Re: Db2

    1.can we use MAX on a char column?
    2.In embedded SQL statement SELECT * is not preferred,Why?
    3.Can you install Data Studio on a machine which already has DB2 installed?
  5. Answers
    3
    Views
    11,189

    Unix/Linux Re: How to achieve this

    du is the only command used for displaying the total disk usage for named directories.
  6. Answers
    2
    Views
    22,944

    Unix/Linux Re: getty process

    Getty is a login process that manages login sessions.It is just a process waiting for some form of communications input on the port to which it has been assigned to.
  7. Answers
    2
    Views
    11,321

    Re: What is this Utility or Command?

    Enscript converts text files to PostScript or to other output languages. Enscript can spool the generated output directly to a specified printer or leave it to a file. If no input files are given,...
  8. Answers
    2
    Views
    11,835

    Re: Conversion Tool

    There are certain conversion tools like
    1.alien-alien is a program that converts between Redhat rpm, Debian deb, Stampede slp, Slackware tgz, and Solaris pkg file formats.

    2.AODC-AODC stands for...
  9. Answers
    3
    Views
    14,451

    Re: switch case vs if else

    Switch statement is useful when we are having multiple options for the same variable but when we have to use mutiple conditions simultaneously then it would be better to use if else.
    For dense case...
  10. Re: Compute quadratic equation using function

    Program for computing product of 3*3 matrix


    void main()
    {
    int a[3][3],b[3][3],c[3][3],i,j,k;
    clrscr();

    printf("Enter elements of A:");
    for(i=0;i<=2;i++)
  11. Re: which is advantage for systemside projects

    c++ is the best language for system side projects.
  12. Thread: doubt

    by Sandhya.Kishan
    Answers
    2
    Views
    10,961

    Windows Re: doubt

    If a command contains two percent signs, MS-DOS will treat any characters between them as an environment variable to be expanded.The environment variable called "Temp", that when using the two...
  13. Answers
    4
    Views
    7,299

    Re: java source file into byte code

    Javac command converts the source code to byte code.
  14. Answers
    2
    Views
    6,172

    Re: numerous url-patterns...

    The syntax may be
    <servlet-mapping>
    <servlet-name>ModifyMemberSVL</servlet-name>
    <url-pattern>/ModifyMember</url-pattern>
    </servlet-mapping>
    .
    .
    .
    .
    .
  15. Answers
    3
    Views
    7,435

    Re: what is a type3 driver in java

    IntermediateDataAccess Driver is the type 3 driver it is used as a middle ware as they have the ability to connect multiple clients with multiple servers.
    BEAWeblogic servers use trhis type of...
  16. Answers
    2
    Views
    5,497

    Re: test your collection of books

    Let us C by Yashavant Kanetkar.
    The C Programming Language by Brian W. Kernighan, Dennis M. Ritchie
  17. Answers
    2
    Views
    6,855

    Re: Run in DOS prompt

    (i) Write the C program (call it ``myfile.c'') in a text editor or word processor (for example, the simple ``Hello'' program below),
    (ii) Save it as a file on your computer's hard disk,
    (iii)...
  18. Answers
    2
    Views
    5,654

    Re: please eeeeeeeeeeeeeeee

    #include <stdio.h>

    int main(void)
    {
    char ch;
    ch = getchar(); /* read a char */
    printf("("Enter characters, '#' to quit."); );
    }

    do {
  19. Thread: Qtp

    by Sandhya.Kishan
    Answers
    5
    Views
    13,374

    Re: Qtp

    An application can be tested with different number of inputs through a same script,this is called as parametrization.
    Types of parameterization:
    1) data table
    2) test/action
    3) environment...
  20. Answers
    2
    Views
    7,565

    Re: Features and Functions of QTP

    Features

    1.We can have the use of easy Regular Expressions
    2.Load Function Libraries at Run Time
    3.Test Your GUI and UI-Less Application Functionality in One Test
    4.Embed/Run Javascript in web...
  21. Thread: query

    by Sandhya.Kishan
    Answers
    2
    Views
    6,329

    Re: query

    asm keyword is used for the declaration of an inline assembly block.
    Example
    asm("movl %ebx, %eax"); /* moves the contents of ebx register to eax */
    __asm__("movb %ch, (%ebx)"); /* moves the byte...
  22. Answers
    2
    Views
    7,931

    Re: BSS Segment

    BSS stands for Block Started by Symbol. During compilation the uninizialized global memory found in obj file along text section and data section are placed in BSS segment.
  23. Answers
    2
    Views
    5,672

    Re: How to find submatix with max sum

    List all the Sub Matrices and find the sum of each matrix and then find the maximum sum.

    Let us consider inputArr[m][n] be the input array.
    And let us make another array outputArr[m][n] with all...
  24. Answers
    3
    Views
    5,859

    Re: null pointer

    The null pointer constant does not to point to any real object. We can assign it to any pointer variable since it has type void *.
    The NULL pointer points to an address of 0x00000000 (32 bits) of...
  25. Answers
    2
    Views
    5,720

    Re: How to check planidrome dynamically?

    Program to check for palindrome

    #include < stdio.h >
    #include < string.h >
    #include < stdlib.h >
    #include < ctype.h >

    int isPalindrome(char string[]);

    int main()
Results 1 to 25 of 160
Page 1 of 7 1 2 3 4
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact