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

HSBC Interview Questions
Questions Answers Views Company eMail

How to fetch records from a partitioned table?

2 6434

How many triggers can be implemented for a table?

3 5791

I have a table with 1 million records out of which 10,000 records are of unique records, then if I will implement index, then which type of index shall I use and why shall I use?

2 6495

Can we use commit or rollback in trigger? If yes, then how. Please explain with a suitable example?

5 11417

effects of video games?

2053

Diff between proc sql merge and join?

1 3506

Teradata: How can we know the indexed column in a table?

1355

what is the procedure and explain about real time scenario.

1461

what happens if parmparameter passes zero bytes to the program

1648

Could you please let me no the query for below I have table name xyx under this there is column name called employee name which starts from 100th column ends 120th column,now i want to replace only column from 101 to 104 which contains ABCS to replace with PQRS for all records which comes beetween 101 to 104 ..how to write query for this..

1 2883

Below is the table. Required to be output should be the highest number of each student_id. Example. Student_id Subject Marks 1 Hindi 86 2 Hindi 70 3 English 80 . Calculate sum and average marks for each group of student_id Example. Student_id Subject Marks Total Marks Average 1 English 40 181 60.33333 2 English 67 196 65.33333 3 English 80 160 53.33333 PLEASE PROVIDE THE CODE OF ABOVE PROBLEMS

1 2241

Post New HSBC Interview Questions


HSBC Interview Questions


Un-Answered Questions

These doughnut shaped zones of atomic particles consists of electrons and protons captured by the earths magnetic field from the solar winds and are called?

91


How to manage Payment terms in Credit Management?

672


How many types of Cookies are available in ASP.NET?

572


Are you CPR certified?

834


What is a system concept?

491






What is object in oop with example?

682


What is the purpose of @action annotation?

558


How to configure mail function in joomla?

83


Is apache single threaded?

494


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include # include int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

1745


What is the use of a super keyword in React?

167


What are overlays?

590


What is a description tag?

444


How do you analyze results after playback?

1630


Is there any way to find whether software installed in the system is registered by just providing the .exe file? I have tried the following code but its just displaying the directory structure in the registry. Here the code : package com.msi.intaller; import java.util.Iterator; import ca.beq.util.win32.registry.RegistryKey; import ca.beq.util.win32.registry.RootKey; public class RegistryFinder { public static void main(String... args) throws Exception { RegistryKey.initialize(RegistryFinder.class.getResource("jRe gistryKey.dll").getFile()); RegistryKey key = new RegistryKey(RootKey.HKLM, "Software\\ODBC"); for (Iterator subkeys = key.subkeys(); subkeys.hasNext();) { RegistryKey subkey = subkeys.next(); System.out.println(subkey.getName()); // You need to check here if there's anything which matches "Mozilla FireFox". } } }

1336