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

Facebook C Interview Questions
Questions Answers Views Company eMail

You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2703

#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 5170

#‎include‬ void main() { int i; for(i=5;0;i++) { printf("%d",i); } }

2 3468

Post New Facebook C Interview Questions




Un-Answered Questions

What is application component provider?

543


How you integrated your automated scripts from TestDirector?

631


explain the concept of RDD (Resilient Distributed Dataset). Also, state how you can create RDDs in Apache Spark.

291


what are the type of cash flows?

2278


How do I access my wordpress files?

102






What is the main purpose of serialization in java?

519


How can we use a lightning component in a visaulforce page? Explain?

202


Explain the microsoft sql server delete command? : sql server architect

426


Where do we store our connection string in asp.net application?

518


What are the advantages and disadvantages of using a spreadsheet?

283


Explain the data type of the surrogate key?

558


What is meant by human security?

1


Can you define phonetic filter?

104


What is the difference between exit() and _exit() function?

593


What is the starting point of code execution in jquery?

428