All Questions

Language

Follow
Showing 711 - 720 out of 1418 Questions
96 Views

body language during an interview

Priya Patel 29th Oct, 2021

Hello,


First of all enter inside the office after taking permission. Enter with little smile on your face. Then don't sit until and unless the recruiters or employers tells you to sit. After that, if they ask any question then try to answer the question without getting nervous and without any hesitation. Do shake your legs while having the conversation with the recruiters.

Don't keep the your hands on your front table or desk, it will create bad impression on the recruiters and you might discomfort them with your behaviour. Stay calm during the whole interview round, don't speak loudly while answering nor speak slowly.

Don't be serious all the time, always put a little smile on your face. Keep maintaining eye contact with the recruiters, don't maintain eye contact only with one recruiter but maintain it with everyone present in the interview room. In the end, say Thank You to all the recruiters. Remember, if you don't know the answer then just say I don't know or say I don't have any idea about it.


28 Views

how can I apply for speech language pathology after 12? and what is the eligibility criteria for it?

Manav Peswani 28th Oct, 2021

Hi,

I hope you are doing well.

In-order to pursue the speech language pathology you would have to take a bachelor undergraduate course that is bachelors in Audiology and speech language pathology ) this course will teach you and provide you with all the skills and information related to this area.

Kindly refer the below link which will provide you all the relevant information and eligibility criteria needed.


https://www.careers360.com/courses/baslp-bachelor-in-audiology-and-speech-language-pathology

I hope the above information helps.
All the very best.


46 Views

what is eligiblity criteria for speech language pathologist? And how to become a speech language pathologist?

Suchana Datta 28th Oct, 2021

Hi,

Speech-language pathologists are master’s-educated, state licensed, and often nationally certified through the American Speech-Language-Hearing Association. Although licensing requirements vary slightly from one state to the next, all licensing boards require SLP professional candidates to complete pre-licensure professional experience requirements and hold a post-bachelor’s degree in speech-language pathology.

speech-language pathologist:


Complete an Undergraduate Program in Communication Sciences and Disorders (CSD)

Complete a CAA-Accredited Graduate Degree in Speech-Language Pathology/Communicative Sciences and Disorders

Complete a Post-Graduate Fellowship

Take a National Exam in Speech-Language

Apply for State Licensure as a Speech-Language Pathologist

Consider Professional Certification

Prerequisite undergraduate courses generally include:


Biological science

Physical science

Statistics

Behavioral and social science (2 courses)

Other admission requirements include:


Minimum 3.0 GPA

GRE scores

Admissions essay

Letters of recommendation


Hope this helps

Wish you luck




125 Views

Ntse exam only english language? no gujarati medium, ntse question paper which language available?

Garvita 27th Oct, 2021
Hello,

NTSE exam is held in 13 languages, those are Assamese, Bengali, English, Gujarati, Hindi, Kannada, Malayalam, Marathi, oriya, Punjabi, Tamil, Telugu, Urdu.

The exam is conducted once in a year, the duration of the exam is of four hours, the mode of the exam and application form is offline, the exam is held for class 10th students, it is a scholarship exam.

For more relevant information, you may visit here:
https://school.careers360.com/exams/ntse


Hope this helps, all the best.
262 Views

for jee mains will they consider only PCM or total marks in 12th board along with language subject

Anurag Khanna 25th Oct, 2021

Hello Aspirant,

See there is no percentage criteria to appear for JEE-Main for any of the subject but you need to have Physics and Mathematics as your compulsory subjects in class 12th so that you can appear in JEE-Main and the percentage criteria is considered for admission to NITs or IIITs on the basis of JEE-Main score and in such criteria you need to have minimum 75% in your class 12th including all the subjects prescribed by your board also there are some criterion which you need to satisfy in order to appear for JEE-Main so let us discuss them.

1--- Age criteria :- There is no age limit to appear in JEE-Main but note that there might be the age limit in any particular institution taking admission through JEE-Main score, so you should keep this thing in mind.

2--- Qualifying Examination :- To be eligible for JEE-Main one should have passed 10+2 examination with Physics, Mathematics as mandatory subjects along with one of the Chemistry/Biotechnology/Biology/ Technical Vocational subject from any of the recognized central or state board.

3--- Year of qualification :- For JEE-Main 2022 only those candidates who have passed Class 12 / equivalent examination in 2020, 2021 or 2022; or those who will be appearing in Class 12th / equivalent examination in 2022, would be eligible to appear.

So if you follow all above criterion then you are definitely eligible for JEE-Main.

For more details kindly check out the link given below :-

https://engineering.careers360.com/articles/jee-main-eligibility-criteria

I hope this information helps you.

Good Luck!!

237 Views

what percentage of students every year from JMI in ba hons Turkish language and literature gets placement in MNCS every year??? and is it worth it pursuing Ba hons in Turkish language and literature from jamia??

Amita Kashyap 3rd Dec, 2021

JMI is a very good option for this course with high placement opportunities, good faculty and infrastructure.

The salary packages vary from 5.5 lpa to 7.5 lpa with a median package of 4.2 lakh. To be eligible for placements, student need to have 75% in academics. The top companies which provide recruitment are Amazon, Mahindra, Deloitte, TCS, Microsoft and more. The students got placements in Turkish embassy based on their communication skills and proficiency in language. Other than this you have scope in many fields like tourism, translator, interpreter, etc.

So yes it a good choice and worthy enough to pursue hons in Turkish Language and literature from JMI.

For more information, go through this link:

https://www.careers360.com/university/jamia-millia-islamia-new-delhi/ba-turkish-language-and-literature-hons-course

Hope this helps!

48 Views

What is self in Python programming language

Nitin Mereddy 24th Oct, 2021

Self is an object or an instance of a class. This is explicitly included as the first parameter in Python. On the other hand, in Java it is optional. It helps differentiate between the methods and attributes of a class with local variables.


The self variable in the init method refers to the newly created object, while in other methods, it refers to the object whose method was called

533 Views

What is scope resolution in python Language

Nitin Mereddy 24th Oct, 2021

A scope is a block of code where an object in Python remains relevant.Each and every object of python functions within its respective scope.As Namespaces uniquely identify all the objects inside a program but these namespaces also have a scope defined for them where you could use their objects without any prefix. It defines the accessibility and the lifetime of a variable.

Let’s have a look on scope created as the time of code execution:

  • A local scope refers to the local objects included in the current function.
  • A global scope refers to the objects that are available throughout execution of the code.
  • A module-level scope refers to the global objects that are associated with the current module in the program.
  • An outermost scope refers to all the available built-in names callable in the program.
82 Views

What are Python Modules in python language

Nitin Mereddy 24th Oct, 2021

Files containing Python codes are referred to as python modulesThis code can either be classes,functions or variables and saves the programmer time by providing the predefined functionalities when needed.It is a file with .py extension containing an executable code.

Commonly used built modules are listed below:

  • os
  • sys
  • data time
  • math
  • random
  • JSON
84 Views

what is pep8 in python language

Nitin Mereddy 24th Oct, 2021

PEP in Python stands for Python Enhancement Proposal.It is a set of rules that specify how to write and design Python code for maximum readability.

The question have been saved in answer later, you can access it from your profile anytime. Access now