Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

NetApp Interview Questions
Questions Answers Views Company eMail

What is the use of thread over process?

11 25191

What are the signals we have in Linux

3 11625

what is segmentation fault?

11 35538

what is bus trap.

1 10048

What is the use of proc structure?

2 11948

What will happen when we invoke a system call and say with an example of invoking a system call ?read? for a device?

3 13247

What is Device driver?

8 19378

Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)

1 6229

What are indexes ? What are the advantages ? (Phone Screen)

1 8895

What is relational database ? Give me an example !

4 11572

Add 2 64 bit numbers on a 32 bit machine

3 16461

please post me last 10 years sbi clerical exam question paper to my email

45 32701

Program to trim a given character from a string.

5 7298

How to write a code for random pick from 1-1000 numbers? The output should contain the 10 numbers from the range 1-1000 which should pick randomly, ie ,for each time we run the code we should get different outputs.

12 18180

Net app interview questions ============================ . Storage Fundamentals: - what is Raid? What are different kind of Raids? - Difference between all of Raids , Advantage of one raid over other - What are FCP & ISCSI, Difference between them. - FC Topologies, Iscsi commands - How to mount a Lun on Windows/Linux - NFS and CIFS - Difference between SAN, NAS and DAS - Different Backup methodologies, Snapshot, mirror, Disaster Recovery, High Availability, Cluster concepts 2. Network Fundamentals: - TCP/IP and ISO/OSI layers - What is DHCP, DNS, SNMP, Router, Hub, Switch, HTTPS , HTTP, telnet , ssh, rsh - Different SNMP versions (V1, V2, V3) - SNMP traps - Ipv4 and Ipv6 addressing 3. Database: - SQL queries, Joins (may ask you to write queries with complex joins) - Aggregate functions - Schemas, Tables, views (create, delete, alter, drop etc) 4. Testing - Bug tracking process, Types of Bugs - Difference between priority and Severity of Bug - Your best bug , what will you do when your bug is not fixed/rejected etc. - What is Functionality/Sanity/Stress/Upgrade & revert/Performance/negative/Release test/regression tests. How you have done these in your past projects. - Black box testing, grey box testing - May ask to write test cases on a given scenario - What is test plan and test summary/strategy document. Different sections in these documents. - SDLC, Test Lifecycle and approach to test a product (Given a product what different kind of testing you will do) 5. Perl ( in addition, you may be asked to write scripts on below areas) - Regular expressions - File/Directory Handling - Scalars, Arrays and Hashes - Packages and Modules - Use and require statements - Go through Net::Telnet, Net::SNMP, Net::SSH modules in perl

2600

Post New NetApp Interview Questions




Un-Answered Questions

What are the various error conditions seen in rexx?

535


Describe loops in scala?

1


what is the object hyrarchy in QTP for a web based application

1885


Give an example of a data set that has a non-gaussian distribution?

100


How do I show the toolbar in excel?

287






What is the difference between map and grep function in jquery?

481


What salary range are you looking for at Edward Jones?

680


Hi I am srinivas. I trained sap sd course. I know all transaction codes and tables as per bookish knowledge. But I don't know which t-codes and tables we use in real time. So i want to know the t-codes and tables in real time. pls help me. Thank u. Srinivas

1595


what is the difference between prime coat and tack coat in road construction

4494


Why nautical mile is different from statute mile?

734


where reactive power is used

1566


What is Command line parameters in PLSQL.?

582


What is the use of color boxes in WTO category of subsidies?

600


What does ctrl y do in excel?

273


I need testPalindrome and removeSpace #include #define SIZE 256 /* function prototype */ /* test if the chars in the range of [left, right] of array is a palindrome */ int testPalindrome( char array[], int left, int right ); /* remove the space in the src array and copy it over to the "copy" array */ /* set the number of chars in the "copy" array to the location that cnt points t */ void removeSpace(char src[], char copy[], int *cnt); int main( void ) { char c; /* temporarily holds keyboard input */ char string[ SIZE ]; /* original string */ char copy[ SIZE ]; /* copy of string without spaces */ int count = 0; /* length of string */ int copyCount; /* length of copy */ printf( "Enter a sentence:\n" ); /* get sentence to test from user */ while ( ( c = getchar() ) != '\n' && count < SIZE ) { string[ count++ ] = c; } /* end while */ string[ count ] = '\0'; /* terminate string */ /* make a copy of string without spaces */ removeSpace(string, copy, ©Count); /* print whether or not the sentence is a palindrome */ if ( testPalindrome( copy, 0, copyCount - 1 ) ) { printf( "\"%s\" is a palindrome\n", string ); } /* end if */ else { printf( "\"%s\" is not a palindrome\n", string ); } /* end else */ return 0; /* indicate successful termination */ } /* end main */ void removeSpace(char src[], char copy[], int *cnt) { } int testPalindrome( char array[], int left, int right ) { }

2214