Information Technology Walkin Jobs

IT Jobs

Information Technology Walkin Jobs, Software Developer Walkins, Software Testing Walkins, and Other Job Walkins for Fresher and Experienced. Mega Walkin Drive For Freshers on Tuesday Company: Inventurus Knowledge Solutions Private Limited Location: Hyderabad, Telangana Walkin Timing From Morning 10 am to 1pm-Updated CV and Id Proof Xerox Mega Walkin Drive Freshers on 09/02/2021-Tuesday Job Description: … Read more

Software Fresher Jobs

IT Jobs

IT FRESHER- 1 ROUND INTERVIEW- SOFTWARE DEVELOPER / ENGINEER / DBA-ITJ Company: STRUCTURED LEARNING ASSISTANCE CONSULTANTS INDIA PRIVATE LIMITED Experience: 0 Years Location:Delhi NCR, Gurgaon, Noida For More Details Instructional Designer – Manager Company: Sears IT Management Services India Pvt. Ltd. Experience: 7 – 12 yrs Location: Hyderabad For More Details Mobile Apps Developer (noida), (hybrid, Android, Cordova IOS, Angular) … Read more

IT Fresher Jobs

IT Jobs

Urgent Openings- Software Engineer- Automation Company: Bebo Technologies Pvt Ltd. Experience: 0 – 2 yrs Location: Chandigarh Job Description: Should have hands-on experience on Selenium Web driver automation for minimum 1 year. This involves creation & execution of scripts, troubleshooting & debugging of scripts during script failure, preparation of automation result report, preparation of script … Read more

Questions on Variables in C Language

1. What is a variable in C language? Variables are memory location in computer’s memory to store data. To indicate the memory location, each variable should be given a unique name called identifier. Variable names are just the symbolic representation of a memory location. Examples of variable name are sum, car_no, count etc. int num; … Read more

C Language Interview Questions

C Language Interview Questions Questions on Operators in C Language: 1. What are Assignment operators in C language? The Assignment Operator evaluates an expression on the right of the expression and substitutes it to the value or variable on the left of the expression. For example, x = a + b Here the value of … Read more

C language Loop Statements

Interview Questions on C language Loop Statements 1. What is a loop statement in C? Loop statement is used to execute a set of instructions repeatedly until a particular condition is being satisfied. 2. What are Control structures in C? Control structures are the statements which controls the overall any program. 3. What are the … Read more

C language Conditional statements

Interview Questions on C language Conditional statements 1. What is a conditional statement? Conditional Statement (also called Condition) is a feature of programming language , which allows it to perform actions depending upon some conditions provided by the programmer. Conditional statement controls the sequence of statements depending on the condition. 2. What are the different … Read more

Interview Questions on C language Constants

Interview Questions on C language Constants 1. What is a constant? A C constant is usually just the written version of a number. The constants can never change their value. The constants value is locked for the duration of the program. Constants also provide a strong hint to the compiler for optimization. Since the compiler … Read more

C language Data Types

Interview Questions on C language Data Types 1. What is Data Type? Data type is a set of data with values having predefined characteristics such as integers and characters. Storage representations and machine instructions to handle data types differ from machine to machine. 2. How many data types are there in C? C data types … Read more

C Introduction

Interview Questions on C Introduction 1. What is C? ‘C’ language is a general-purpose computer programming language with features economy of expression, modern flow control and data structures, and rich set of operators developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system. C is … Read more