Science Teacher

  Home  Teaching  Science Teacher


“Science Teacher related Frequently Asked Questions in various Science Teacher job interviews by interviewer. The set of questions here ensures that you offer a perfect answer posed to you. So get preparation for your new job hunting”



77 Science Teacher Questions And Answers

2⟩ Please explain why we use File Handling?

The input and output operation that we have performed so far were done through screen and keyboard only.After the termination of program all the entered data is lost because primary memory is volatile . if the data has to be used later ,then it becomes necessary to keep it in permanent storage device. so the c language provide the concept of file through which data can be stored on the disk or secondary storage device.The stored data can be read whenever required.

Types of File Handling in C:

The file handling in C can be categorized in two types-

High level (Standard files or stream oriented files)- High level file handling is managed by library function. High level file handling is commonly used because it is easier and hide most of the details from the programmer.

Low level (system oriented files)- low level files handling is managed by system call.

 166 views

3⟩ Do you know what is the difference between a sequential file and a random file?

Sequential file access is the method employed in tape drives where the files are access in a sequential manner. So if you have to get a file in the end of the tape you have to start from the beginning till it reaches the beginning of the files…

Random access files are similar to the one in Hard Disks and Optical drives, wherever the files is placed it will go to that particular place and retrieve it.

 155 views

6⟩ Tell us how would you describe (needed computer science teacher or your) work style?

My work style matching exactlty what cashier job requires by: being honest and ethical, being reliable, responsible, and dependable, and fulfilling obligations, analyzing information and using logic to address work-related issues and problems, being careful about detail and thorough in completing work tasks, being pleasant with others on the job and displaying a good-natured, cooperative attitude.

 169 views

11⟩ Tell me how do you encourage teamwork among your students?

Group work is something I am very fond of, one of the ways I like to do group work is by assigning roles to people within the group such as the writer, the speaker, etc. Each person in the group should contribute. For example we did a foreign policy group activity where students were assigned an imperialized country. After reviewing the background and jotting down notes they met with other members of their group from the other countries to share their responses, this allowed each member to contribute to the learning environment of the group while also keeping everyone involved. They then would give their responses as groups to the class to see if everyone had the same responses.

 146 views

13⟩ Explain how do you deal with difficult parents?

Well the subject matter itself, religion at a Catholic school, is not always the most motivating content for high school students especially if they are not Catholic and resent having to take a religion course. Although, I must admit the biggest challenge for myself was to not deviate from the Catechism, which I was being paid to teach and endorse, while also allowing my students to express their views respectfully and seriously in class discussions or Socratic seminars .

 154 views

15⟩ Explain how would your students describe you as a teacher?

I take disappointment as a learning opportunity. Disappointments are natural in life if you are taking risks and moving forward. For me, it is a chance to reevaluate what I was doing, what was successful, and how I could have done things differently. I know that everything we do as teachers is process oriented and setbacks can only make us stronger. This is also how I would address disappointments with my students.

 170 views

18⟩ Tell me what do you mean by File Positioning?

The file positioning of a stream describes where in the file the stream is currently reading or writing. I/O on the stream advances the file position through the file. On GNU systems, the file position is represented as an integer, which counts the number of bytes from the beginning of the file.

 160 views

19⟩ Do you know some of the most used File Processing functions in C?

Most used file processing functions in C are-

☛ fopen()-used to open a file and set the file pointer to the beginning or end of a File.

☛ fclose()-used to close an active File.

☛ getc()-used to read a character in a File.

☛ putc()-used to write a character to a File.

☛ putw()-used to write an integer data to a File.

☛ fscanf()-used to read data from a File.

☛ fprintf()-used to write data to a File.

☛ rewind()-used to move the file pointer to the beginning of a File.

 194 views

20⟩ Tell me what do you mean by a File?

A File contains contains data/information which are stored permanently in a storage device.Floppy disk and hard disk are commonly used to store file information.When large quantity data is required to be stored and processed, the concept of file is used.

A file stored in a storage device is always identified using a file name(e.g. STUDENT.DAT).

Note:- A filename normally has a primary name and a secondary name which are separated by a Dot(.)

 187 views