↳
Round 1 had very basic quant and C output questions. Try to solve Test your C skills. Round 2: 1. Reverse Linked List(shocked to see this). 2. Merge Linked List. 3. Sort alphanumeric array 4. Some pattern question. 5. Find 2 numbers in the sorted array having sum closest to the given number. Less
↳
can I use python in coding round of libsys recruitment process
↳
Can you please tell which type of c/c++ questions were asked in the technical apti? Less
↳
these was no written test for me as i was shortlisted based on amcat scores
↳
can u please tell me the pattern of written test ? i mean i was just aptitude or technical questions were also there? Less
↳
what were the rounds? And what were the questions asked in interview ??
↳
Results are announced some of my friends got selected ,nd they joined syntel chennai by 7th August Less
↳
Sep 1st week
↳
I gave hr interview in pune on 19 august. When i can expect results ?
↳
I got shortlisted for further rounds with NetCracker.
↳
Are you selected?
↳
Could you please tell me the tough one which was asked in coding
↳
while (num>0) { int dig = num % 10; if(dig > largest) { if(seclarg dig && dig > seclarg) seclarg = dig; num /= 10; } Less
↳
while(n){ x=n%10; if(max1x) max2=x; n=n/10; } } Less
↳
#include using namespace std; int main() { int n,x,max1=0,max2=0; cin>>n; while(n>0) { x=n%10; if(max1>x) {if(max2 Less
↳
for(int i=0;i
↳
import java.util.Scanner; // ****|**|*** public class Ques_13_findStar { public static void main(String[] args) { Scanner s = new Scanner(System.in); System.out.println(findStar(s.next())); } private static int findStar(String str) { int count = 0; int start = 0; for (int i = 0; i < str.length(); i++) { if(str.charAt(i)=='|'){ start = i; break; } } for (int i = start+1; i < str.length(); i++) { if(str.charAt(i)!= '|'){ count++; } } return count-1; } } Less
↳
str1= "**|*|***" li=[] count=0 for x in range(len(str1)): if str1[x]=='|': li.append(x) min_i=li[0] max_i=li[-1] for i in range(min_i,max_i): if str1[i]=="*": count+=1 print(count) Less
↳
I agree with you...this company cannot be trusted.they don't know how to take interviews.these people will never appreciate your knowledge. Less
↳
If you have reference than you will be treated very well. Even if you don't have technical knowledge Less
↳
3 months 4 rounds of interview just shows how screwed up their hiring process is. Less
↳
import java.util.Scanner; class pattern { public static void main(String args[]) { int n; Scanner sc=new Scanner(System.in); System.out.println("enter no"); n=sc.nextInt(); for(int i=0;i=n+1-i) System.out.print("*"); else System.out.print(" "); } System.out.println( ); } }} Less
↳
public class Right_Angle_Pattern2 { public static void main(String args[]){ for(int i =0; i0+i;j--){ System.out.print(" "); } for(int k =0;k Less
↳
#include int main() { int num,i,j; printf("Enter a number :"); scanf("%d",&num); for(i=0;ii;j--){ printf(" "); } for(int k=0;k<=i;k++){ printf("*"); } printf("\n"); } return 0; } Less
↳
#include #include int main() { int s=3,i,j; int n=3; for(i=3;i=3;i--) { for(j=i;j>=3;j--) { printf("%d",i); } printf("\n"); } } Less
↳
#include void main() { int s=3, n=3, i, j; printf("Enter the value of s and n:\n"); scanf("%d %d", &s, &n); printf("The value of s = %d and n = %d:\n", s, n); for(i=0;i=0;j--) { printf("%d",s); } s++; printf("\n"); } s--; for(i=n;i>=0;i--) { for(j=0;j Less
↳
#include int main() { int s=3,n=3,i,j; for(i=s;i=s;i--) { for(j=0;j<=(i-n);j++) { printf("%d",i); } printf("\n"); } } Less
↳
#include using namespace std; #include int main() { int n,p; cin>>n; p=n; int r=0,c = 2*n-1; vector> arr(c); for(int i=0;i(c); while(n>0) { for(int i=r; i=r;i--) { arr[c-1][i]=n; } for(int i=c-2;i>=r+1;i--) { arr[i][r]=n; } n--; r++; c--; } c=2*p-1; for(int i=0;i Less
↳
#include using namespace std; #include int main() { int n,p; cin>>n; p=n; int r=0,c = 2*n-1; vector> arr(c); for(int i=0;i(c); while(n>0) { for(int i=r; i=r;i--) { arr[c-1][i]=n; } for(int i=c-2;i>=r+1;i--) { arr[i][r]=n; } n--; r++; c--; } c=2*p-1; for(int i=0;i Less
↳
#include void main() { int i,j,k=3; for(i=1;i<=5;i++) { for(j=1;j<=5;j++) { if(i==1 ||i==5 ||j==1 ||j==5) { printf("%d",k); } else if(i==3&&j==3) { printf("%d",k-2); } else { printf("%d",k-1); } } printf("\n"); } } Less