Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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

CitiGroup Interview Questions
Questions Answers Views Company eMail

Tell me about yourself?

229 556228

What is a join?Explain the different types of joins?

6 33989

What is difference between TRUNCATE & DELETE?

16 45861

main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); }

27 101922

main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

4 11528

main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); }

11 51085

main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 23914

#include main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output

5 15667

In a journey of 15 miles two third distance was travelled with 40 mph and remaining with 60 mph.How muvh time the journey takes

4 32663

A man walks from 9.15 to 5.15 from monday to friday and 9.00 to 12.00 on saturday.Each day 0.45 min lunch. How much time he walks in a week

11 30333

12 revolutions takes 1/8 th second time.In 20 seconds how many revolutions?

7 21310

In 60 reems of paper 40 reems were utilised then what percent will remain?

9 21827

A started at 9.00 am with 6 mph and B started at 9.30 am with 8mph in the same direction. At what time they will meet?

6 24819

In a company 3/5 of people know shorthand 1/4th know typing and 1/5 know both. What fraction of people do not know both?

14 32495

A company requires 11,500 strength.present employees are 200 women , men and 6500 unmarried To reach the target how many women required to maintain the same ratio?

5 21538

Post New CitiGroup Interview Questions


CitiGroup Interview Questions


Un-Answered Questions

what does the conf.setMapper Class do ?

821


What is smart contract?

5


How do I undo alt f4?

715


What is ODATA ?

721


Can you explain combineraggregator?

5


How to rename a file using dos commands?

577


How to create jdbc (java database connectivity) connection in jsf (javaserver faces) application?

88


Write the basic steps to execute linq query.

92


How can you set an image as a background on web pages?

840


Do you know how backlink tools work?

888


Write the function f() ?

870


What are the types of cloud?

628


Which of the following is true regarding schedule variances? A. They impact scope, which impacts the schedule B. They sometimes impact the schedule C. They always impact the schedule D. They never impact the schedule

998


what is the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cics regions that share the same db2 subsystem?

1073


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2633