300+ TOP Poornam Info Vision Technical Interview Questions [UPDATED]

  1. 1. Are The Following Two Statements Identical?
    Char Str[6] = Kicit ;
    Char *str = Kicit ;

    It sounds like you have the perfect case-study to prove this point. Mifepristone is taken as a tablet that Évora must be taken with a. Dapoxetine can cause dry mouth and other symptoms of oral dryness in some patients who are not on regular medication for other conditions, especially those on anticonvulsant therapy, alcohol use, and smoking.

    This drug is also used for treating impotence, male sexual dysfunction, acne, and hair growth. We are looking for a clomid for sale in uk to sell clomid https://tinkmara.com/2014/02/20/a-kitty-genovese-gyilkossag hypothetically in uk. Common side effects with dapoxetine include nausea, dizziness, drowsiness, fatigue, dry mouth, sweating, and constipation.

    No, Arrays are not pointers. An array is a single, pre-allocated chunk of contiguous elements (all of the same type), fixed in size and location. A pointer on the other hand, is a reference to any data element (of a particular type) located anywhere. A pointer must be assigned to point to space allocated elsewhere, but it can be reassigned any time.

    The array declaration char str [6]; requests that space for 6 characters be set aside, to be known by name str. In other words there is a location named str at which six characters are stored. The pointer declaration char *str ; on the other hand, requests a place that holds a pointer, to be known by the name str. This pointer can point almost anywhere to any char, to any contiguous array of chars, or nowhere.

  2. 2. Why Does Not The Following Code Give The Desired Result?
    Int X = 3000, Y = 2000 ;
    Long Int Z = X * Y ;

    Here the multiplication is carried out between two ints x and y, and the result that would overflow would be truncated before being assigned to the variable z of type long int. However, to get the correct output, we should use an explicit cast to force long arithmetic as shown below:

    long int z = ( long int ) x * y ;

    Note that (long int) (x * y) would not give the desired effect.


  3. TCS Technical Interview Questions

  4. 3. How Do I Write Code That Reads Data At Memory Location Specified By Segment And Offset?

    Use peekb( ) function. This function returns byte(s) read from specific segment and offset locations in memory. The following program illustrates use of this function. In this program from VDU memory we have read characters and its attributes of the first row.

    The information stored in file is then further read and displayed using peek( ) function.

    #include

    #include

    main( )

    {

    char far *scr = 0xB8000000 ;

    FILE *fp ;

    int offset ;

    char ch ;

    if ( ( fp = fopen ( scr.dat, wb ) ) == NULL )

    {

    printf ( Unable to open file ) ;

    exit( ) ;

    }

    // reads and writes to file

    for ( offset = 0 ; offset < 160 ; offset++ )

    fprintf ( fp, %c, peekb ( scr, offset ) ) ;

    fclose ( fp ) ;

    if ( ( fp = fopen ( scr.dat, rb ) ) == NULL )

    {

    printf ( Unable to open file ) ;

    exit( ) ;

    }

    // reads and writes to file

    for ( offset = 0 ; offset < 160 ; offset++ )

    {

    fscanf ( fp, %c, &ch ) ;

    printf ( %c, ch ) ;

    }

    fclose ( fp ) ;

    }

  5. 4. What Will Be The Output Of The Following Code?
    Void Main ()
    { Int I = 0 , A[3] ;
    A[i] = I++;
    Printf (%d,a[i]) ;
    }

    The output for the above code would be a garbage value. In the statement a[i] = i++; the value of the variable i would get assigned first to a[i] i.e. a[0] and then the value of I would get incremented by 1. Since a[i] i.e. a[1] has not been initialized, a[i] will have a garbage value.

  6. 5. Is The Following Code Fragment Correct?
    Const Int X = 10 ;
    Int Arr[x] ;

    No, Here, the variable x is first declared as an int so memory is reserved for it. Then it is qualified by a const qualifier. Hence, const qualified object is not a constant fully. It is an object with read only attributes, and in C, an object associated with memory cannot be used in array dimensions.


  7. Wipro Technical Interview Questions

  8. 6. How Do I Know How Many Elements An Array Can Hold?

    The amount of memory an array can consume depends on the data type of an array. In DOS environment, the amount of memory an array can consume depends on the current memory model (i.e. Tiny, Small, Large, Huge, etc.). In general an array cannot consume more than 64 kb. Consider following program, which shows the maximum number of elements an array of type int, float and char can have in case of Small memory model.

    main( )

    {

    int i[32767] ;

    float f[16383] ;

    char s[65535] ;

    }

  9. 7. How Do I Change The Type Of Cursor And Hide A Cursor?

    We can change the cursor type by using function _setcursortype ( ). This function can change the cursor type to solid cursor and can even hide a cursor. Following code shows how to change the cursor type and hide cursor.

    #include

    main( )

    {

    /* Hide cursor */

    _setcursortype ( _NOCURSOR ) ;

    /* Change cursor to a solid cursor */

    _setcursortype ( _SOLIDCURSOR ) ;

    /* Change back to the normal cursor */

    _setcursortype ( _NORMALCURSOR ) ;

    }


  10. Infosys Technical Interview Questions

  11. 8. Why Does Not The Following Statement Work?
    Char Str[ ] = Hello ;
    Strcat ( Str, ! ) ;

    The string function strcat( ) concatenates strings and not a character. The basic difference between a string and a character is that a string is a collection of characters, represented by an array of characters whereas a character is a single character. To make the above statement work writes the statement as shown below:

    strcat ( str, ! ) ;

  12. 9. The Spawnl ( ) Function…

    DOS is a single tasking operating system, thus only one program runs at a time. The Spawnl ( ) function provides us with the capability of starting the execution of one program from within another program. The first program is called the parent process and the second program that gets called from within the first program is called a child process. Once the second program starts execution, the first is put on hold until the second program completes execution. The first program is then restarted. The following program demonstrates use of spawnl ( ) function.

    /* Mult.c */

    int main ( int argc, char* argv[ ] )

    {

    int a[3], i, ret ;

    if ( argc < 3 || argc > 3 )

    {

    printf ( Too many or Too few arguments… ) ;

    exit ( 0 ) ;

    }

    for ( i = 1 ; i < argc ; i++ )

    a[i] = atoi ( argv[i] ) ;

    ret = a[1] * a[2] ;

    return ret ;

    }

    /* Spawn.c */

    #include

    #include

    main( )

    {

    int val ;

    val = spawnl ( P_WAIT, C:Mult.exe, 3, 10,

    20, NULL ) ;

    printf ( Returned value is: %d, val ) ;

    }

    Here, there are two programs. The program Mult.exe works as a child process whereas Spawn.exe works as a parent process. On execution of Spawn.exe it invokes Mult.exe and passes the command-line arguments to it. Mult.exe in turn on execution calculates the product of 10 and 20 and returns the value to Val in Spawn.exe. 

    In our call to spawnl( ) function, we have passed 6 parameters, P_WAIT as the mode of execution, path of .exe file to run as child process, total number of arguments to be passed to the child process, list of command line arguments and NULL. P_WAIT will cause our application to freeze execution until the child process has completed its execution.

    This parameter needs to be passed as the default parameter if you are working under DOS. Under other operating systems that support multitasking, this parameter can be P_NOWAIT or P_OVERLAY. P_NOWAIT will cause the parent process to execute along with the child process; P_OVERLAY will load the child process on top of the parent process in the memory.


  13. Aricent Technologies Technical Interview Questions

  14. 10. How Do I Compare Character Data Stored At Two Different Memory Locations?

    Sometimes in a program we require to compare memory ranges containing strings. In such a situation we can use functions like memcmp ( ) or memicmp ( ). The basic difference between two functions is that memcmp ( ) does a case-sensitive comparison whereas memicmp ( ) ignores case of characters. Following program illustrates the use of both the functions.

    #include

    main( )

    {

    char *arr1 = Kicit ;

    char *arr2 = kicitNagpur ;

    int c ;

    c = memcmp ( arr1, arr2, sizeof ( arr1 ) ) ;

    if ( c == 0 )

    printf ( Strings arr1 and arr2 compared using memcmp are identical ) ;

    else

    printf ( Strings arr1 and arr2 compared using memcmp are not identical

    ) ;

    c = memicmp ( arr1, arr2, sizeof ( arr1 ) ) ;

    if ( c == 0 )

    printf ( Strings arr1 and arr2 compared using memicmp are identical )

    ;

    else

    printf ( Strings arr1 and arr2 compared using memicmp are not

    identical ) ;

    }