Get insight into top questions asked in a C interview. Explore from basic to experienced questions on C

seen from Canada

seen from United States
seen from United States
seen from China
seen from Germany
seen from Finland

seen from Mexico

seen from Pakistan
seen from Türkiye
seen from China
seen from United States
seen from Netherlands

seen from United States
seen from China

seen from Singapore
seen from China
seen from United States
seen from United States

seen from United States
seen from Hong Kong SAR China
Get insight into top questions asked in a C interview. Explore from basic to experienced questions on C
InterviewBit launches Scaler Edge, a college-companion program for engg students
InterviewBit launches Scaler Edge, a college-companion program for engg students
[ad_1]
In an effort to boost the availability of skilled tech talent, this program requires no prior experience in technology or coding and is open to students of all streams.
To address the gap between skills needed for high-quality technology jobs and work-readiness of graduates, Scaler (a platform by edtech startup InterviewBit) has launched what it claims is a first of its kind…
View On WordPress
They say college friends are your friends for life. This sure holds true for IIITH alumni Anshuman Singh and Abhimanyu Saxena. From batchmates in 2010 to startup founders of InterviewBit & Scaler Academy, they’ve come a long way.
From IITH batchmates in 2010 to startup founders of InterviewBit & Scaler Academy, they’ve come a long way.
Here's a glimpse of how they started off and are pursing their dream of revolutionizing online tech education.
Simple Token Announces First Four Member Companies - To Launch Branded Tokens on Project’s Ecosystem
Simple Token Announces First Four Member Companies - To Launch Branded Tokens on Project’s Ecosystem #DigitalKnights
Simple Token announced the official onboarding of its first four Member Companies to launch Branded Tokens within the Simple Token ecosystem: XAIN, InterviewBit, Digital Knights and Pepo. Simple Token enables mainstream applications to deploy their own branded crypto-backed token economies, in a scalable and cryptographically-auditable manner, without needing to mint and maintain their own…
View On WordPress
7/12/15: CodeWars & InterviewBit
Decided to focus on more interview-type questions today.
CodeWars provides short coding challenges in the form of “kata,” and there’s a variety of languages to pick from. I’ve been working on Python, and I really don’t have a lot of experience with it so I appreciate getting the practice in. I really like this website, because the challenges so far have all been reasonable (been spending about 15-20 minutes per challenge) and they expose me to different Python libraries that I didn’t previously know about. When you sign up you also join a “clan,” i.e. a school, organization, etc. so when you submit your code for a challenge, you can see the submissions of other people in your clan for that same question. This is definitely a website I’m going to be coming back to.
InterviewBit has a gamified experience, where you gain points by answering questions. They have a number of general topics (levels) and for each topic there are related videos and questions. Once you answer a certain number of questions for each topic, you unlock the next level. The number of points you gain for the question depend on the difficulty of the question, how quickly you answered it, your number of attempts at solving the question, and if you wanted any hints on the question. You can also have a streak going, where you need to earn x points daily to maintain your streak. Personally, I don’t like this website as much. The videos provide more of an overall briefing while the questions go way more in depth. I’m also not a big fan of how they gamified their system, because I don’t feel very motivated at all to gain points.
Code Puzzle 2 :- Predict the output of this Program :-
<br />int** performOps(int **A, int m, int n, int *len1, int *len2) { int i, j; *len1 = m; *len2 = n; int **B = (int **)malloc((*len1) * sizeof(int *)); for (i = 0; i < *len1; i++) { B[i] = (int *)malloc((*len2) * sizeof(int)); } for (i = 0; i < m; i++) { for (j = 0; j < n; j++) { B[i][n - 1 - j] = A[i][j]; } } return B; }
Let’s say m=3, n=4, and A : [[1,2,3,4], [5,6,7,8], [9,10, 11, 12]]
Wha…
View On WordPress