WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 29323WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
4 15330Blade logic interview question. 1st round is a written tests with 15 multiple questions from c and c++. All are simple basic question. Like int main () { Int i=65; Return printf(“%c”, i); } 2nd and 3rd round is technical interview. The position for which I was interview was core UNIX and c. Yes it is for system programming. The company has product name blade server. For their server they are creating their own command for their purpose. Example cd command. We can implement it in a c program by using the chdir() function. So the question asks related to PID, fork, pipe, shared memory, signal. Write a program in c which will act as cp command.
1 11347write an algorithm which can find the largest number among the given list using binary search ............... this was asked in the interview
2 13888hi friends how r u as soon in satyam my interview is start but i m very confusued ta wat i do plz help me frndz wat can i do plz tell me some question and answers related with "C" which r asked in the interview .
2447
Write a simple code fragment that will check if a number is positive or negative.
What is difference between array and structure in c?
If the size of int data type is two bytes, what is the range of signed int data type?
What are lookup tables in c?
What is scope of variable in c?
How is actual parameter different from the formal parameter?
When is the “void” keyword used in a function?
what are # pragma staments?
What is null in c?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
What is sizeof int?
Why void main is used in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
What is structure packing in c?
What is scanf_s in c?