Category: Interview

04
May
2017

Interview: Find Occurances in an Array – Binary Search Application

Some theory: code: /* Count Frequency in an Array Syed Ahmed Zaki — 2017 */ #include<stdio.h> int…

02
May
2017

PHP/or any other platform freshers qualification

https://www.facebook.com/groups/eee.cse/permalink/1650363141659373/ https://trello.com/b/0bKxmpuK/cse-graduate-checklist  

21
Apr
2017

Count number of 2’s in a given range (0 to n)? (ex: range between 0-20, Ans: 3 (i.e [2], 1[2], [2]0))

Google Search: https://www.google.com/search?q=Counting+2s&ie=utf-8&oe=utf-8&client=firefox-b#q=Counting+2s+in+c SOlution: https://www.careercup.com/question?id=56794 //https://www.careercup.com/question?id=56794 #include<stdio.h> int main() { int n,i,j; int ctr=0; scanf(“%d”,&n); for(i=0;i<=n;i++) { for(j=i;j>0;j=j/10) {…

14
Apr
2017

Never Give UP

04
Apr
2017

Employer and Job Holder Relationship in Coding Industry

Your attitude is also crucial: Programmers need to be eager to learn, curious, detail oriented, and willing…

01
Apr
2017

Interview Tips in Bangla For CSE Graduate

একজন প্রোগ্রামার হতে গেলে যে ১০টি স্টেপ আপনাকে অবশ্যই অনুসরণ করতে হবে !