यहां चयनित उम्मीदवारों की सूची देखें

ईपीएफओ एसएसए परिणाम 2020 चरण 2 क्षेत्र-वार: कर्मचारी भविष्य निधि संगठन ने EPFO जारी किया है सामाजिक सुरक्षा सहायक (एसएसए) चरण 2 (मेन्स) परिणाम आज घोषित किया है। ऑनलाइन मेन्स परीक्षा आयोजित की गई थी 14 नवंबर 2019 ईपीएफओ एसएसए मेन्स के लिए। ईपीएफओ एसएसए प्रीलिम्स का ऑनलाइन परीक्षा आयोजित किया गया था 31 अगस्त 2019। सभी उम्मीदवार जो सामने आए हैं ईपीएफओ एसएसए चरण- II (मेन्स) नीचे दिए गए लिंक से परिणाम की जांच कर सकते हैं।
ईपीएफओ एसएसए के लिए न्यूनतम योग्यता अंक-
EPFO SSA में वर्णनात्मक पेपर पर न्यूनतम योग्यता अंक-
चरण- II (मेन्स) परीक्षा के बाद EPFO SSA के परिणाम की जांच कैसे कर सकते हैं?
मैं। EPFO.gov.in की आधिकारिक वेबसाइट पर जाएं लिंक में वेबसाइट दी गई है
ii। विविध टैब पर क्लिक करें
iii। भर्ती कॉलम में जाएं
iv। अपने क्षेत्र की जाँच करें और उस पर क्लिक करें
वी। चरण- III के लिए सूचीबद्ध उम्मीदवारों की सूची की जाँच करें।
vi। पीडीएफ को सहेजें और अपना नाम / पंजीकरण संख्या / रोल नंबर जांचें
IBPS 2020 कम्प्लीट बुक्स किट हिंदी प्रिंटेड एडिशन
चरण- III परीक्षा की तारीख यानी कंप्यूटर डाटा एंट्री स्किल टेस्ट कर्मचारी भविष्य निधि संगठन में सामाजिक सुरक्षा सहायक के पद के लिए शीघ्र ही सूचित किया जाएगा। उम्मीदवारों को सलाह दी जाती है कि वे अपने पंजीकृत ईमेल पते और ईपीएफओ की वेबसाइट को नियमित रूप से देखें। डाटा एंट्री कार्य के लिए गति और सटीकता का आकलन करने के लिए उम्मीदवारों को कंप्यूटर डेटा एंट्री स्किल टेस्ट के लिए उपस्थित होना आवश्यक होगा। में अर्हता प्राप्त करने के लिए न्यूनतम आवश्यकता कंप्यूटर डाटा एंट्री स्किल टेस्ट 5000 प्रमुख अवसाद / घंटे है। कंप्यूटर डाटा एंट्री स्किल टेस्ट केवल प्रकृति में उत्तीर्ण होगा।
क्षेत्रवार परिणाम यहां देखें-
// This function is called when someone finishes with the Login // Button. See the onlogin handler attached to it in the sample // code below. function checkLoginState() { FB.getLoginStatus(function(response) { statusChangeCallback(response); }); }
window.fbAsyncInit = function() { FB.init({ appId : '233923120281900', cookie : true, // enable cookies to allow the server to access // the session xfbml : true, // parse social plugins on this page version : 'v3.2' // The Graph API version to use for the call });
// Now that we've initialized the JavaScript SDK, we call // FB.getLoginStatus(). This function gets the state of the // person visiting this page and can return one of three states to // the callback you provide. They can be: // // 1. Logged into your app ('connected') // 2. Logged into Facebook, but not your app ('not_authorized') // 3. Not logged into Facebook and can't tell if they are logged into // your app or not. // // These three cases are handled in the callback function. // };
// Load the SDK asynchronously (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)(0); if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
// Here we run a very simple test of the Graph API after login is // successful. See statusChangeCallback() for when this call is made. function testAPI(data) {
FB.api('/me', 'get', { access_token: data.accessToken, fields: 'id,name,gender,email' }, function(response) { });
FB.api('/me?fields=name,email', function(response) {
// call adda247-register api
const userDetails = {
email: response.email,
name: response.name,
providerName: "f",
providerToken: data.accessToken,
providerUserId: data.userID,
};
registerOrLoginUser(userDetails)
});
}
// This is called with the results from from FB.getLoginStatus().
function statusChangeCallback(response) {
// The response object is returned with a status field that lets the
// app know the current login status of the person.
// Full docs on the response object can be found in the documentation
// for FB.getLoginStatus().
if (response.status === 'connected') {
// Logged into your app and Facebook.
testAPI(response.authResponse);
} else {
FB.login();
}
}
Source link